/* Component-specific styles — map, walkthrough, sections */

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  border-top: none;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, #1a1815 0%, #0a0a0a 70%);
}
.hero-bg .grid-bg { position: absolute; inset: 0; opacity: 0.6; }
.hero-bg::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,106,0.15) 0%, transparent 60%);
  filter: blur(40px);
}

/* Hero mark — oversized A7 logo bleeding off right edge */
.hero-mark {
  position: absolute;
  right: -18%;
  top: 50%;
  transform: translateY(-50%);
  width: 85vh;
  max-width: 1200px;
  aspect-ratio: 1 / 1;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: heroMarkFloat 14s ease-in-out infinite;
}
.hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.055;
  filter: drop-shadow(0 0 48px rgba(212,175,106,0.25));
  animation: heroMarkBreathe 6s ease-in-out infinite;
}
/* Warm gold halo behind the mark */
.hero-mark-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212,175,106,0.12) 0%, rgba(212,175,106,0.04) 30%, transparent 60%);
  filter: blur(30px);
  animation: heroMarkGlow 9s ease-in-out infinite;
}
/* Slow horizontal scan-line sweep */
.hero-mark-scan {
  position: absolute;
  inset: -5% -5%;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(212,175,106,0.08) 49%,
    rgba(244,241,236,0.14) 50%,
    rgba(212,175,106,0.08) 51%,
    transparent 55%
  );
  mask: radial-gradient(circle at 50% 50%, #000 0%, #000 40%, transparent 65%);
  -webkit-mask: radial-gradient(circle at 50% 50%, #000 0%, #000 40%, transparent 65%);
  animation: heroMarkScan 11s linear infinite;
  opacity: 0.5;
}
@keyframes heroMarkFloat {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50%      { transform: translateY(-50%) translateX(-14px); }
}
@keyframes heroMarkBreathe {
  0%, 100% { opacity: 0.055; }
  50%      { opacity: 0.085; }
}
@keyframes heroMarkGlow {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.08); }
}
@keyframes heroMarkScan {
  0%   { transform: translateY(-60%); }
  100% { transform: translateY(60%); }
}

/* Hide on narrow screens (too much visual weight on mobile) */
@media (max-width: 820px) {
  .hero-mark { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-mark,
  .hero-mark img,
  .hero-mark-glow,
  .hero-mark-scan { animation: none; }
}
.hero-inner {
  position: relative;
  padding-top: 140px;
  padding-bottom: 64px;
  width: 100%;
}
.hero-meta { margin-bottom: 60px; }
.hero-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin-bottom: 80px;
  max-width: 15ch;
}
.hero-title em { font-style: italic; color: var(--gold); font-weight: 300; }

.hero-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: end;
  margin-bottom: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.hero-lede {
  max-width: 46ch;
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 12px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.hero-stats .stat { padding-right: 32px; border-right: 1px solid var(--line); }
.hero-stats .stat:last-child { border-right: none; }
.hero-stats .k {
  font-family: var(--f-display);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold);
}
.hero-stats .l {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 12px;
}
.hero-scroll {
  position: absolute;
  right: 48px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-3);
  writing-mode: vertical-rl;
}
.hero-scroll .scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.4s ease infinite;
}
@keyframes scrollPulse {
  0% { transform: translateY(-20px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

@media (max-width: 900px) {
  .hero-footer { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-scroll { display: none; }
}

/* ============ MAP ============ */
.map-section { padding: 0; }
.map-head {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  margin-bottom: 60px;
  padding: 0 48px;
  align-items: end;
}
.map-head .lede {
  margin-top: 24px;
  color: var(--ink-2);
  max-width: 48ch;
  font-size: 17px;
  line-height: 1.55;
}
.map-head h2 {
  font-size: clamp(48px, 6.5vw, 96px);
  margin-top: 20px;
  max-width: 18ch;
}
.map-legend {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(244,241,236,0.015);
}
.legend-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-2);
}
.dot-sample {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}
.dot-sample.tier-hq      { width: 14px; height: 14px; }
.dot-sample.tier-core    { background: var(--gold); }
.dot-sample.tier-grow    { background: var(--gold); opacity: 0.7; box-shadow: 0 0 4px var(--gold); }
.dot-sample.tier-sec     { background: var(--gold); opacity: 0.5; box-shadow: none; }
.dot-sample.tier-hytte   { background: var(--ink); box-shadow: none; border: 1px solid var(--gold); }

.map-stage {
  position: relative;
  margin: 0 48px;
  height: 820px;
  border-radius: 4px;
  background: radial-gradient(ellipse at 50% 50%, #0d0c0b 0%, #050505 100%);
  overflow: hidden;
  perspective: 1800px;
  perspective-origin: 50% 20%;
  cursor: crosshair;
}
.map-tilt {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
  transform-origin: var(--zoom-ox, 50%) var(--zoom-oy, 60%);
  will-change: transform;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 
    0 0 0 1px rgba(244,241,236,0.08),
    0 8px 32px rgba(0,0,0,0.4),
    0 0 80px rgba(212,175,106,0.08);
}
.map-stage.zooming .map-tilt {
  transform: scale(var(--zoom, 1.35)) rotateX(var(--tx,10deg)) rotateZ(var(--tz,-2deg));
}
.map-svg {
  width: 100%;
  height: 100%;
}
.scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  top: 0;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.25;
  pointer-events: none;
  transition: transform 0.3s var(--ease);
}

.cardinal {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
}
.cardinal.n { top: 16px; left: 50%; transform: translateX(-50%); }
.cardinal.s { bottom: 16px; left: 50%; transform: translateX(-50%); }
.cardinal.e { right: 16px; top: 50%; transform: translateY(-50%); writing-mode: vertical-rl; }
.cardinal.w { left: 16px; top: 50%; transform: translateY(-50%); writing-mode: vertical-rl; }

.map-hud {
  position: absolute;
  left: 40px;
  bottom: 40px;
  width: 320px;
  background: rgba(10,9,8,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  padding: 24px;
  color: var(--ink);
}
.map-scrub {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 20px;
  padding: 0 20px;
}
.scrub-bar {
  position: relative;
  height: 2px;
  background: rgba(244,241,236,0.15);
  margin-bottom: 10px;
}
.scrub-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  transition: width 0.1s linear;
}
.scrub-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--ink-3);
}
.scrub-labels span:nth-child(2) {
  color: var(--gold);
}
.hud-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 18px;
}
.hud-top .hud-tier { color: var(--ink-3); }
.hud-name {
  font-family: var(--f-display);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hud-note {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-2);
  margin-top: 10px;
  letter-spacing: 0.1em;
}
.hud-copy {
  margin-top: 16px;
  font-family: var(--f-serif, var(--f-display));
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  font-style: italic;
  letter-spacing: 0.01em;
  text-wrap: pretty;
}
.hud-figures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.hud-figures > div { display: flex; flex-direction: column; gap: 4px; }
.hud-figures .fig-v {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1;
}
.hud-figures .fig-k {
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--ink-3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hud-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.hud-stats .k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: block;
  margin-bottom: 8px;
}
.hud-stats .v {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--gold);
}

.map-readout {
  position: absolute;
  top: 24px; left: 40px; right: 40px;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--ink-3);
  pointer-events: none;
}

.map-stats-inline {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.map-stats-inline > div { display: flex; flex-direction: column; gap: 4px; }
.map-stats-inline .v {
  font-family: var(--f-display);
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}
.map-stats-inline .k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
}

.legend-head {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.hud-kontor {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 6px;
}
.kontor-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
}
.kontor-row .kontor-c { color: var(--gold); }

.map-foot {
  margin: 40px 48px 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.foot-eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.top-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.top-chip {
  background: var(--bg);
  border: none;
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: baseline;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  color: var(--ink-2);
}
.top-chip:hover { background: var(--bg-2); color: var(--ink); }
.top-chip.on { background: #1a1510; color: var(--gold); }
.top-chip .n { font-family: var(--f-mono); font-size: 10px; color: var(--ink-3); letter-spacing: 0.15em; }
.top-chip.on .n { color: var(--gold); }
.top-chip .c { font-family: var(--f-display); font-size: 20px; line-height: 1; }
.top-chip .v {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
}
@media (max-width: 1024px) {
  .top-list { grid-template-columns: 1fr 1fr; }
  .map-foot { margin: 32px 24px 0; }
  .map-stats-inline { flex-wrap: wrap; gap: 24px; }
}
@media (max-width: 820px) {
  .top-list { grid-template-columns: 1fr !important; }
  .top-chip { padding: 14px 16px !important; }
  .top-chip .c { font-size: 17px !important; }
  .top-chip .v { font-size: 12px !important; }
}

@media (max-width: 900px) {
  .map-head { grid-template-columns: 1fr; padding: 0 24px; }
  .map-stage { 
    margin: 0 24px; 
    height: 500px;
    min-height: 500px;
  }
  .map-hud { 
    left: 16px; 
    right: auto;
    bottom: 80px; 
    width: calc(100% - 32px);
    max-width: 100%;
    padding: 16px;
  }
  .hud-copy {
    font-size: 13px;
  }
  .map-scrub {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 0 10px;
  }
  .scrub-labels {
    font-size: 9px;
  }
  .map-readout {
    left: 16px;
    right: 16px;
    top: 16px;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 9px;
  }
  .cardinal {
    font-size: 9px;
  }
}

/* ============ WALKTHROUGH ============ */
.wt { position: relative; }
.wt-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr 220px;
  gap: 32px;
  padding: 80px 48px 48px;
}
.wt-head {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wt-head .eyebrow { margin-bottom: 8px; }
.wt-title {
  font-family: var(--f-display);
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.wt-sub {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 28ch;
}

.wt-frame {
  position: relative;
  border: 1px solid var(--line-2);
  background: #050505;
  overflow: hidden;
  aspect-ratio: 16/9;
  align-self: center;
  width: 100%;
}
.wt-clip {
  position: absolute;
  inset: 0;
  transition: opacity 0.5s var(--ease);
  will-change: transform, opacity;
}
.wt-clip .art { position: absolute; inset: 0; }
.wt-clip .art .layer { position: absolute; inset: 0; width: 100%; height: 100%; }
.vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}

.wt-hud { position: absolute; inset: 0; pointer-events: none; }
.hud-tl {
  position: absolute; top: 20px; left: 20px;
  display: flex; gap: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink);
}
.hud-tl .rec { color: #ff5533; animation: pulse 1.2s ease infinite; }
@keyframes pulse { 50% { opacity: 0.3; } }
.hud-tr {
  position: absolute; top: 20px; right: 20px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.hud-tr .hud-shot { color: var(--ink-3); font-size: 10px; }
.hud-corners .c {
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--ink);
}
.hud-corners .tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.hud-corners .tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.hud-corners .bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.hud-corners .br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.hud-b {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}
.timeline {
  position: relative;
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  height: 2px;
}
.timeline .tick {
  flex: 1;
  background: rgba(244,241,236,0.15);
  transition: background 0.4s var(--ease);
}
.timeline .tick.done { background: var(--gold); }
.timeline .bar {
  position: absolute;
  left: 0; top: 0;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  transition: width 0.1s linear;
}
.hud-copy { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; align-items: start; }
.hud-copy .ttl {
  font-family: var(--f-display);
  font-size: 34px;
  line-height: 1;
}
.hud-copy .cpy {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 48ch;
}

.wt-side {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-self: center;
}
.wt-chip {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 14px 0;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  transition: color 0.3s var(--ease);
}
.wt-chip .n { color: var(--ink-3); }
.wt-chip.on { color: var(--ink); }
.wt-chip.on .n { color: var(--gold); }

@media (max-width: 1100px) {
  .wt-sticky { grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; padding: 24px; }
  .wt-title { font-size: 40px; }
  .wt-side { flex-direction: row; flex-wrap: wrap; }
  .wt-chip { border-top: none; padding: 8px 12px; background: rgba(244,241,236,0.03); }
}

/* ============ SERVICES ============ */
.services { background: var(--bg); }
.svc-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.svc-tab {
  background: transparent;
  border: none;
  padding: 18px 24px;
  color: var(--ink-3);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.svc-tab:hover { color: var(--ink); }
.svc-tab.on { color: var(--gold); border-bottom-color: var(--gold); }

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pkg {
  background: var(--bg);
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.4s var(--ease);
  min-height: 440px;
}
.pkg:hover { background: var(--bg-2); }
.pkg.hi { background: var(--bg-2); }
.pkg.gold {
  background: linear-gradient(180deg, #1e1a10 0%, #0a0a0a 100%);
  border-top: 1px solid var(--gold);
}
.pkg.gold .pkg-tag { color: var(--gold); }
.pkg.gold .pkg-price { color: var(--gold); }

.pkg-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.pkg.hi .pkg-tag { color: var(--gold); }
.pkg-name {
  font-family: var(--f-display);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.pkg-for {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.pkg-incl {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pkg-incl li {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pkg-incl li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.pkg-foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.pkg-price {
  font-family: var(--f-display);
  font-size: 42px;
  line-height: 1;
  color: var(--ink);
}
.pkg-price .from {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.pkg-price .kr {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-left: 4px;
}

.vid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vid-card { background: var(--bg-2); border: 1px solid var(--line); }
.vid-ph {
  aspect-ratio: 16/10;
  background:
    repeating-linear-gradient(45deg, #1a1815 0 12px, #141210 12px 24px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vid-ph.vid-real {
  background: #000;
}
.vid-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vid-ph .play {
  width: 56px; height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
  background: rgba(212,175,106,0.1);
}
.vid-ph .play::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-40%, -50%);
  border-left: 12px solid var(--gold);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.vid-ph .mono-label {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-2);
}
.vid-ph .tc {
  position: absolute;
  bottom: 16px; right: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.15em;
}
.vid-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.vid-name { font-family: var(--f-display); font-size: 22px; }
.vid-desc { font-size: 13px; color: var(--ink-2); line-height: 1.5; }
.vid-price { font-family: var(--f-display); font-size: 28px; color: var(--gold); margin-top: 12px; }
.vid-price .kr { font-family: var(--f-mono); font-size: 12px; color: var(--ink-3); }
.vid-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
  margin-top: 16px;
}
.vid-note p { color: var(--ink-2); line-height: 1.6; max-width: 60ch; }

.extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
}
.extra-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
}
.extra-row span:first-child { color: var(--ink); }
.extra-price { color: var(--gold); letter-spacing: 0.1em; }
.extra-foot {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  border-top: 1px solid var(--gold);
}

@media (max-width: 900px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .vid-grid { grid-template-columns: 1fr; }
  .extra-grid { grid-template-columns: 1fr; column-gap: 0; }
  .extra-foot { flex-direction: column; gap: 12px; }
}

/* ============ TEAM ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  position: relative;
}
.person {
  position: relative;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: transform .6s var(--ease), z-index 0s;
  cursor: default;
  outline: none;
}
.person::before {
  /* golden underglow that bleeds out on hover */
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(ellipse at 50% 35%, rgba(212,175,106,0.28), transparent 55%);
  opacity: 0;
  transition: opacity .6s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.person:hover,
.person:focus-visible {
  z-index: 2;
  transform: translateY(-6px) scale(1.015);
}
.person:hover::before,
.person:focus-visible::before {
  opacity: 1;
}

/* ---------- Portrait frame ---------- */
.portrait {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 30%, #1f1c18 0%, #0d0c0a 70%, #070706 100%);
  isolation: isolate;
}

/* Soft golden studio spotlight behind the subject.
   Dim by default, blooms on hover. */
.portrait-spot {
  position: absolute;
  top: -10%; left: 50%;
  width: 130%; height: 90%;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse 55% 60% at 50% 42%, rgba(232, 200, 137, 0.22), transparent 62%),
    radial-gradient(ellipse 85% 90% at 50% 42%, rgba(212, 175, 106, 0.10), transparent 75%);
  filter: blur(6px);
  opacity: 0.45;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.person:hover .portrait-spot,
.person:focus-visible .portrait-spot {
  opacity: 1;
  transform: translateX(-50%) scale(1.06);
}

/* subtle warm floor wash beneath the bust */
.portrait-floor {
  position: absolute;
  bottom: -5%; left: 50%;
  width: 120%; height: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 55% 45% at 50% 60%, rgba(139, 111, 61, 0.35), transparent 70%);
  filter: blur(10px);
  opacity: 0;
  transition: opacity .8s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.person:hover .portrait-floor,
.person:focus-visible .portrait-floor { opacity: 1; }

/* ---------- Portrait content (img or placeholder) ---------- */
.portrait-img,
.portrait-placeholder {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  /* default: desaturated, low-contrast — like a B&W press shot */
  filter: grayscale(1) contrast(0.92) brightness(0.9);
  transform: scale(1);
  transform-origin: 50% 45%;
  transition: filter .7s var(--ease), transform .8s var(--ease);
}
.portrait-img {
  object-fit: cover;
}
.person:hover .portrait-img,
.person:focus-visible .portrait-img,
.person:hover .portrait-placeholder,
.person:focus-visible .portrait-placeholder {
  filter: grayscale(0) contrast(1.02) brightness(1);
  transform: scale(1.05);
}

/* SVG bust placeholder — monochrome by default, warms up on hover */
.portrait-bust {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.bust-head,
.bust-body {
  fill: #403b35;
  transition: fill .7s var(--ease);
}
.person:hover .bust-head,
.person:focus-visible .bust-head { fill: #7a5f38; }
.person:hover .bust-body,
.person:focus-visible .bust-body { fill: #4a3620; }

.portrait-initials {
  position: relative;
  z-index: 2;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(72px, 10vw, 140px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(244, 241, 236, 0.85);
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  mix-blend-mode: screen;
  transition: color .7s var(--ease), text-shadow .7s var(--ease);
}
.person:hover .portrait-initials,
.person:focus-visible .portrait-initials {
  color: var(--gold-2);
  text-shadow: 0 2px 30px rgba(212, 175, 106, 0.5);
}

/* subtle film grain */
.portrait-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 3px 3px, 4px 4px;
  background-position: 0 0, 1px 1px;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

/* dark edge vignette — frames the subject */
.portrait-edge {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(ellipse 110% 90% at 50% 45%, transparent 55%, rgba(0,0,0,0.55) 100%);
  transition: background .6s var(--ease);
}
.person:hover .portrait-edge,
.person:focus-visible .portrait-edge {
  background:
    radial-gradient(ellipse 110% 90% at 50% 45%, transparent 62%, rgba(0,0,0,0.4) 100%);
}

.portrait-caption {
  position: absolute;
  bottom: 16px; left: 16px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: color .5s var(--ease);
}
.portrait-caption .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ink-3);
  box-shadow: none;
  transition: background .5s var(--ease), box-shadow .5s var(--ease);
}
.person:hover .portrait-caption,
.person:focus-visible .portrait-caption { color: var(--gold); }
.person:hover .portrait-caption .dot,
.person:focus-visible .portrait-caption .dot {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

/* ---------- Body ---------- */
.person-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.person-role {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.person-name {
  font-family: var(--f-display);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.person-stats {
  display: flex;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-2);
}
.person-stats .sep { color: var(--ink-3); }
.person-bio {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}

@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; } }

/* ============ PROCESS ============ */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--line);
}
.proc-step {
  background: var(--bg);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 240px;
}
.proc-n {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.proc-t {
  font-family: var(--f-display);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.proc-d {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  flex: 1;
}
.proc-arrow {
  position: absolute;
  right: -14px; top: 44px;
  color: var(--gold);
  font-size: 20px;
  background: var(--bg);
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.proc-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}
.proc-foot .eyebrow { display: block; margin-bottom: 20px; }
.proc-foot-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.proc-foot-row .mono {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
}

@media (max-width: 900px) {
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .proc-arrow { display: none; }
  .proc-foot { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ CLIENTS ============ */
.cli-primary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--gold);
  margin-bottom: 48px;
}
.cli-big {
  background: var(--bg);
  padding: 60px 40px;
}
.cli-big .cli-k {
  font-family: var(--f-display);
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.cli-big .cli-s {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--ink-2);
  margin-top: 12px;
}
.cli-big .cli-t {
  margin-top: 24px;
  font-size: 14px;
  color: var(--gold);
  font-style: italic;
}

.cli-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.cli-col .eyebrow { display: block; margin-bottom: 24px; }
.cli-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cli-col li {
  font-family: var(--f-display);
  font-size: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.cli-quote { position: relative; }
.cli-quote .quote-mark {
  font-family: var(--f-display);
  font-size: 120px;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.5;
}
.cli-quote p {
  font-family: var(--f-display);
  font-size: 28px;
  font-style: italic;
  line-height: 1.3;
  color: var(--ink);
  margin-top: -30px;
  max-width: 24ch;
}
.cli-quote .quote-attr {
  margin-top: 20px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ink-3);
}

@media (max-width: 900px) {
  .cli-primary { grid-template-columns: 1fr; }
  .cli-cols { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ LOGO WALL ============ */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 64px 0 80px;
  border-radius: 2px;
  overflow: hidden;
}
.logo-tile {
  position: relative;
  background: #0c0c0c;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  transition: background 0.5s ease;
  cursor: pointer;
  outline: none;
}
.logo-tile::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212,175,106,0.0) 0%, rgba(212,175,106,0) 70%);
  transition: background 0.6s ease;
  pointer-events: none;
}
.logo-tile:hover, .logo-tile:focus-visible {
  background: #151310;
}
.logo-tile:hover::before, .logo-tile:focus-visible::before {
  background: radial-gradient(circle at 50% 45%, rgba(212,175,106,0.12) 0%, rgba(212,175,106,0) 65%);
}
.logo-tile-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 32px;
  position: relative;
  min-height: 0;
}
.logo-mark {
  width: 62%;
  max-width: 220px;
  height: 48px;
  object-fit: contain;
  opacity: 0.78;
  filter: brightness(0) invert(1);
  transition: opacity 0.4s ease, filter 0.6s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.logo-tile:hover .logo-mark,
.logo-tile:focus-visible .logo-mark {
  opacity: 1;
  filter: none;
  transform: scale(1.05);
}
/* Nordvik — inverted: white normally, gold (natural color) on hover */
.logo-mark[alt="Nordvik"] {
  filter: brightness(0) invert(1);
  opacity: 0.78;
}
.logo-tile:hover .logo-mark[alt="Nordvik"],
.logo-tile:focus-visible .logo-mark[alt="Nordvik"] {
  filter: none;
  opacity: 1;
}
.logo-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px 16px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: color 0.4s ease;
}
.logo-tile:hover .logo-caption,
.logo-tile:focus-visible .logo-caption {
  color: var(--gold);
}
.logo-caption .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--ink-3);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.logo-tile:hover .logo-caption .dot,
.logo-tile:focus-visible .logo-caption .dot {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(212,175,106,0.5);
}

/* Filler tile — "Are you next?" */
.logo-tile.logo-filler {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(212,175,106,0.025) 0 2px,
      transparent 2px 14px
    ),
    #0c0c0c;
}
.logo-tile.logo-filler:hover,
.logo-tile.logo-filler:focus-visible {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(212,175,106,0.06) 0 2px,
      transparent 2px 14px
    ),
    #151310;
}
.filler-mark {
  font-family: var(--f-display, var(--f-serif));
  font-size: 88px;
  line-height: 1;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.55;
  letter-spacing: -0.02em;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), text-shadow 0.6s ease;
  will-change: transform;
  display: inline-block;
}
.logo-tile.logo-filler:hover .filler-mark,
.logo-tile.logo-filler:focus-visible .filler-mark {
  opacity: 1;
  transform: scale(1.08);
  text-shadow: 0 0 32px rgba(212,175,106,0.35);
}
.logo-tile.logo-filler .logo-caption {
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.14em;
  text-transform: none;
  font-size: 11px;
}
.logo-tile.logo-filler .logo-caption .dot {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(212,175,106,0.4);
}

.cli-quote-row {
  position: relative;
  padding: 56px 64px 48px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: linear-gradient(180deg, #0a0a0a 0%, #070707 100%);
  text-align: center;
}
.cli-quote-row .quote-mark {
  font-family: var(--f-serif);
  font-size: 96px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: -24px;
}
.cli-quote-row p {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.4;
  color: var(--bone);
  max-width: 34ch;
  margin: 0 auto 24px;
  font-style: italic;
}
.cli-quote-row .quote-attr {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

@media (max-width: 1100px) {
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
  .cli-quote-row { padding: 40px 28px 32px; }
  .logo-mark { height: 38px; }
}

/* ============ PARTNER MINI ============ */
.partner-mini {
  padding: 60px 0 40px;
  position: relative;
}
.partner-mini::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold-deep), transparent);
  opacity: .4;
}
.partner-mini-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 36px 48px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(212, 175, 106, 0.04), rgba(0,0,0,0.2));
  position: relative;
  overflow: hidden;
}
.partner-mini-inner::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 240px; height: 100%;
  background: radial-gradient(circle at top right, rgba(212, 175, 106, 0.08), transparent 70%);
  pointer-events: none;
}
.partner-mini-text { position: relative; z-index: 1; }
.partner-mini-h {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 300;
  margin: 12px 0 8px;
}
.partner-mini-h em {
  font-style: italic;
  color: var(--gold);
}
.partner-mini-lede {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  max-width: 560px;
}
.partner-mini-btn {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .partner-mini { padding: 40px 0 20px; }
  .partner-mini-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 24px;
    align-items: flex-start;
  }
  .partner-mini-btn { width: 100%; justify-content: center; }
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-h {
  margin: 24px 0 20px;
}
.contact-lede {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 44ch;
  margin-bottom: 48px;
}
.contact-lines {
  display: grid;
  gap: 14px;
  padding-top: 32px;
  border-top: 1px solid var(--gold);
}
.contact-lines > div {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.contact-lines .k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.contact-lines .v {
  font-size: 14px;
  color: var(--ink);
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 48px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  align-content: start;
}
.field { display: flex; flex-direction: column; gap: 10px; }
.field span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 16px;
  padding: 12px 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field select { color: var(--ink); }
.field option { background: var(--bg); color: var(--ink); }
.field textarea { resize: vertical; font-family: var(--f-sans); }
.col-span { grid-column: 1 / -1; }

.form .btn { grid-column: 1 / -1; justify-self: start; }

.sent {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 0;
  text-align: center;
  align-items: center;
}
.sent-mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.sent-h { font-family: var(--f-display); font-size: 32px; }
.sent-p { color: var(--ink-2); max-width: 36ch; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form { grid-template-columns: 1fr; padding: 24px; }
}

/* ============ FOOTER ============ */
.foot {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.foot-brand { display: flex; align-items: flex-start; gap: 16px; }
.foot-brand img { width: 48px; height: 48px; }
.fb-k {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.25em;
}
.fb-s {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  margin-top: 6px;
}
.foot-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.foot-h {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.foot-nav a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-2);
  transition: color 0.2s var(--ease);
}
.foot-nav a:hover { color: var(--gold); }

.foot-bot {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ink-3);
}
.foot-bot .mono { color: var(--gold); }

@media (max-width: 900px) {
  .foot-top { grid-template-columns: 1fr; gap: 40px; }
  .foot-nav { grid-template-columns: 1fr 1fr; gap: 24px; }
  .foot-bot { flex-direction: column; gap: 10px; }
}

/* ============ TWEAKS PANEL ============ */
.tweaks {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 300px;
  background: rgba(10,9,8,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-2);
  padding: 20px;
  z-index: 200;
  transform: translateY(calc(100% + 40px));
  transition: transform 0.4s var(--ease);
}
.tweaks.on { transform: none; }
.tweaks-h {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.tweak-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.tweak-row label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.tweak-row .swatches { display: flex; gap: 6px; }
.tweak-row .sw {
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid var(--line-2);
  transition: transform 0.2s var(--ease);
}
.tweak-row .sw:hover { transform: scale(1.1); }
.tweak-row .sw.on { box-shadow: 0 0 0 2px var(--ink); }
.tweak-row input[type="range"] { accent-color: var(--gold); }
.tweak-row select {
  background: var(--bg-2);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* ==================================================================
   MOBILE RESPONSIVENESS
   Breakpoints: 900px (tablet) · 600px (phone)
   ================================================================== */
@media (max-width: 900px) {
  /* HERO */
  .hero-inner { padding-top: 120px; padding-bottom: 48px; }
  .hero-meta { margin-bottom: 40px; }
  .hero-title {
    font-size: clamp(52px, 13vw, 88px);
    line-height: 0.96;
    margin-bottom: 48px;
    max-width: 100%;
  }
  .hero-footer {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
    padding-bottom: 32px;
  }
  .hero-lede { font-size: 16px; max-width: 100%; }
  .hero-actions { flex-wrap: wrap; gap: 12px; display: flex; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; padding: 16px 20px; font-size: 10px; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px 16px !important;
  }
  .hero-stats .k { font-size: 36px !important; }
  .hero-stats .l { font-size: 11px !important; }
  .hero-scroll { display: none; }

  /* SERVICES · tabs + package grid */
  .svc-tabs {
    flex-wrap: wrap;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .svc-tab { flex: 1 1 auto; white-space: nowrap; font-size: 11px; padding: 12px 14px; }
  .pkg-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .pkg { padding: 28px 24px !important; }
  .pkg-name { font-size: 28px !important; }
  .pkg-price { font-size: 32px !important; }
  .pkg-foot { flex-direction: column; align-items: flex-start; gap: 16px; }
  .pkg-foot .btn { width: 100%; justify-content: space-between; }
  .vid-grid { grid-template-columns: 1fr !important; }
  .extra-grid { grid-template-columns: 1fr !important; }

  /* TEAM */
  .team-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .person-photo { aspect-ratio: 4/5 !important; }

  /* PROCESS */
  .proc-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 24px !important; }
  .proc-step { padding: 24px 20px !important; }

  /* CLIENTS */
  .cli-primary { grid-template-columns: 1fr !important; }
  .cli-grid, .c-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }

  /* CONTACT */
  .contact-grid, .c-form, .form-grid { grid-template-columns: 1fr !important; }
  .contact-inner { grid-template-columns: 1fr !important; gap: 48px !important; }
  input, textarea, select { font-size: 16px !important; } /* avoid iOS zoom */

  /* MAP */
  .map-stage { height: 480px !important; min-height: 480px !important; }
  .map-legend, .map-side, .map-aside { font-size: 12px; }
  /* WALKTHROUGH / SCROLL HOUSE */
  .walk, .scroll-house { min-height: auto !important; }
  .walk-stage, .walk-sticky { position: relative !important; height: auto !important; }

  /* FOOTER */
  .footer-grid, .foot-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .footer, footer { padding: 60px 0 40px !important; }

  /* Section heads use smaller numbers */
  .section-head h2 { max-width: 100%; }
}

@media (max-width: 600px) {
  .hero-inner { padding-top: 100px; }
  .hero-title { font-size: clamp(44px, 12vw, 68px); }
  .hero-stats { gap: 24px 12px !important; }
  .hero-stats .k { font-size: 28px !important; }

  .proc-grid { grid-template-columns: 1fr !important; }
  .cli-grid, .c-grid { grid-template-columns: 1fr !important; }

  .pkg { padding: 24px 20px !important; }
  .pkg-name { font-size: 24px !important; }

  /* Buttons full-width stack */
  .hero-actions .btn { flex: 1 1 100%; }

  /* Footer: single column nav on narrow phones */
  .foot-nav { grid-template-columns: 1fr !important; gap: 28px !important; }

  /* Form padding tighter */
  .form { padding: 20px !important; gap: 18px !important; }
}

/* ================================================================
   MOBILE: Skjul map-legend, tighten grid-galleri
   ================================================================ */
@media (max-width: 720px) {
  /* Map-legend tar masse plass og er kun nyttig p\u00e5 stor skjerm */
  .map-legend,
  .map-side,
  .map-aside,
  .legend-list,
  .legend-head,
  .map-stats-inline {
    display: none !important;
  }

  /* La kartet ta full bredde n\u00e5r legenden er borte */
  .map-grid,
  .map-wrap,
  .map-shell {
    grid-template-columns: 1fr !important;
  }

  /* Map-readout (under kartet) f\u00e5r litt mer pust */
  .map-readout { padding: 14px 16px !important; font-size: 12px !important; }

  /* GRID-GALLERI: 2 kolonner p\u00e5 mobil, mindre gap */
  .g-grid,
  .gallery-grid,
  .gal-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  /* Card-bilder kompakt */
  .g-card,
  .gallery-card,
  .gal-card {
    border-radius: 10px !important;
  }
  .g-card-cap,
  .gallery-card .cap {
    padding: 12px 12px 14px !important;
    gap: 6px !important;
  }
  .g-card-title { font-size: 15px !important; line-height: 1.3 !important; }
  .g-card-row, .g-card-sub { font-size: 11px !important; }

  /* Reel/kategori-strimmel \u00f8verst i galleriet: scrollbar og sn\u00e6vrere */
  .g-cats,
  .g-modes,
  .gallery-tabs {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .g-cats::-webkit-scrollbar,
  .g-modes::-webkit-scrollbar,
  .gallery-tabs::-webkit-scrollbar { display: none; }
  .g-chip { white-space: nowrap; flex-shrink: 0; }

  /* Lightbox info-rad p\u00e5 mobil: stack vertikalt */
  .g-lb-info {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 16px !important;
  }
}

/* P\u00e5 veldig sm\u00e5 phones: 1 kolonne i galleriet */
@media (max-width: 420px) {
  .g-grid,
  .gallery-grid,
  .gal-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}

/* ================================================================
   MOBILE: BLOGG  \u2014 jevnere kort, tighter padding, full-width hero
   ================================================================ */
@media (max-width: 720px) {
  /* Bloggliste: 1 kolonne, bilder full-width */
  .blog-grid,
  .blog-list,
  .blog-cards {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .blog-card {
    padding: 0 !important;
  }
  .blog-card .blog-card-img,
  .blog-card figure {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
  }
  .blog-card h2,
  .blog-card h3 {
    font-size: 22px !important;
    line-height: 1.2 !important;
    margin: 8px 0 10px !important;
  }
  .blog-card p,
  .blog-card .lede,
  .blog-card .excerpt {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }
  .blog-card .meta { margin-top: 12px !important; }

  /* Feature card (hovedartikkel) tar full bredde */
  .blog-card.feature {
    grid-column: 1 / -1 !important;
  }

  /* Article-side: tighter padding, mindre hero */
  .article-hero {
    border-radius: 10px !important;
    margin-bottom: 24px !important;
  }
  .article-head h1 {
    font-size: clamp(32px, 8vw, 48px) !important;
    line-height: 1.05 !important;
  }
  .article-head .dek {
    font-size: 17px !important;
  }
  .article-byline {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 16px !important;
  }
  .article-body {
    font-size: 17px !important;
    line-height: 1.65 !important;
  }
  .article-body h2 { font-size: 26px !important; margin-top: 36px !important; }
  .article-body h3 { font-size: 20px !important; margin-top: 24px !important; }
  .article-body figure { margin: 24px -20px !important; border-radius: 0 !important; }
  .article-body blockquote {
    font-size: 20px !important;
    padding: 20px 16px !important;
    margin: 24px 0 !important;
  }

  /* Related-list under artikkel */
  .related-list,
  .article-related .list {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}

/* ============ FAQ ============ */
.faq {
  padding: 140px 0 160px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.faq .wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}
.faq-list {
  margin-top: 64px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}
.faq-item.open {
  background: rgba(212, 175, 106, 0.025);
}
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 60px 1fr 32px;
  align-items: center;
  gap: 32px;
  padding: 32px 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--gold); }
.faq-q-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}
.faq-q-text {
  font-family: var(--f-display);
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-weight: 400;
  text-wrap: pretty;
}
.faq-q-icon {
  font-family: var(--f-mono);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  text-align: right;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-q-icon { transform: rotate(180deg); }
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a-wrap > .faq-a {
  overflow: hidden;
  min-height: 0;
}
.faq-a {
  padding: 0 32px 0 100px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 800px;
  text-wrap: pretty;
}
.faq-item.open .faq-a {
  padding-bottom: 36px;
}

@media (max-width: 760px) {
  .faq { padding: 80px 0 100px; }
  .faq .wrap { padding: 0 24px; }
  .faq-list { margin-top: 40px; }
  .faq-q {
    grid-template-columns: 44px 1fr 24px;
    gap: 16px;
    padding: 24px 4px;
  }
  .faq-q-text { font-size: 19px; }
  .faq-a { padding: 0 4px 0 64px; font-size: 15px; }
  .faq-item.open .faq-a { padding-bottom: 24px; }
}

