/* ═══════════════════════════════════════════════
   FONTS
═══════════════════════════════════════════════ */
@font-face {
  font-family: "PP Neue Machina";
  src: url("fonts/PPNeueMachina-PlainLight.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Neue Machina";
  src: url("fonts/PPNeueMachina-PlainLightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "PP Neue Machina";
  src: url("fonts/PPNeueMachina-PlainRegular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Neue Machina";
  src: url("fonts/PPNeueMachina-PlainRegularItalic.otf")
    format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "PP Neue Machina";
  src: url("fonts/PPNeueMachina-PlainUltrabold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Neue Machina";
  src: url("fonts/PPNeueMachina-PlainUltraboldItalic.otf")
    format("opentype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

/* ═══════════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bronze: #885834;
  --bronze-hover: #ceb187;
  --accent: #adc178;
  --dark: #080402;
  --dark-mid: #110906;
  --gap: 10px;
  --grid-bg: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "PP Neue Machina", system-ui, sans-serif;
  background: #ffffff;
  color: #fff;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 187px;
  height: 80px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background 0.35s,
    backdrop-filter 0.35s,
    -webkit-backdrop-filter 0.35s;
}

nav.scrolled {
  background: rgba(14, 8, 4, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-right .btn-call {
  margin-left: -28px;
}

.logo {
  text-decoration: none;
}

.logo img {
  width: 54px;
  height: 40px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--bronze);
}

.btn-call {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition:
    background 0.25s,
    border-color 0.25s;
  flex-shrink: 0;
}

.btn-call:hover {
  background: var(--bronze);
  border-color: var(--bronze);
}

.btn-contact {
  background: var(--bronze);
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.25s,
    transform 0.2s;
}

.btn-contact:hover {
  background: var(--bronze-hover);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  background: var(--dark);
  overflow: hidden;
}

/* Background glow */
.hero-glow {
  position: absolute;
  top: 50%;
  left: 27%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 140%;
  background: radial-gradient(
    ellipse at center,
    rgba(136, 88, 52, 0.2) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

/* Decorative rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}

.hero-ring--1 {
  width: 720px;
  height: 720px;
  top: 50%;
  left: 27%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(136, 88, 52, 0.18);
  animation: ring-spin 18s linear infinite;
}

.hero-ring--2 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 27%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(136, 88, 52, 0.09);
  animation: ring-pulse 6s ease-in-out infinite;
}

@keyframes ring-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes ring-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
}

/* Content */
.hero-content {
  position: relative;
  z-index: 4;
  width: 54%;
  padding: 0 0 0 187px;
}

/* Full-bleed image */
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: right center;
  opacity: 0.7;
}

/* Gradient overlay from Figma */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: conic-gradient(
    from 170.93deg at 45.28% 49.13%,
    rgba(8, 4, 2, 0) 0deg,
    #100703 86.54deg,
    rgba(13, 6, 3, 0.66) 179.87deg,
    rgba(11, 5, 2, 0.33) 269.83deg,
    rgba(8, 4, 2, 0) 360deg
  );
  pointer-events: none;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
}

.eyebrow-bar {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--bronze);
  flex-shrink: 0;
}

.hero-eyebrow span:last-child {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* Heading */
h1 {
  font-size: clamp(72px, 10vw, 134px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

/* Divider */
.hero-divider {
  display: flex;
  align-items: center;
  margin: 48px 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.09);
}

.divider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bronze);
  margin-left: 16px;
  flex-shrink: 0;
}

/* Bottom row */
.hero-bottom {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.hero-sub {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.42);
  max-width: 240px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.h-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.h-stat strong {
  font-size: 34px;
  font-weight: 800;
  color: var(--bronze);
  letter-spacing: -0.03em;
  line-height: 1;
}

.h-stat span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.32);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.h-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bronze);
  color: #fff;
  text-decoration: none;
  padding: 17px 38px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    background 0.25s,
    gap 0.3s;
}

.btn-hero-cta:hover {
  background: var(--bronze-hover);
  gap: 18px;
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
}

.wa-float svg {
  fill: #fff;
  flex-shrink: 0;
  display: block;
}

.scroll-cue {
  z-index: 4;
}

h1 {
  font-size: clamp(68px, 9.5vw, 114px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.bronze {
  color: var(--bronze);
}
.italic {
  font-style: italic;
}
h1 .bronze {
  font-style: normal;
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 1;
  animation: nudge 2.2s ease-in-out infinite;
}

.scroll-cue span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes nudge {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

/* ═══════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════ */
.services-section {
  background: #fff;
  padding: 120px 56px;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 64px;
}

.services-header h2 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 20px;
}

.services-intro {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(14, 8, 4, 0.45);
  max-width: 480px;
}

/* Service list rows */
.services-list {
  display: flex;
  flex-direction: column;
}

.svc-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 20px;
  margin-bottom: 48px;
  border-bottom: 2px solid var(--bronze);
}

.svc-icon-wrap {
  width: 69px;
  height: 69px;
  background: #ece5de;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(22.5px 0, 100% 0, 100% 100%, 0 100%, 0 22.5px);
}

.svc-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.svc-row-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  line-height: 1.2;
}

.svc-row-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(14, 8, 4, 0.45);
}

/* Scroll-in animation */
.svc-animate {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.services-list .svc-animate:nth-child(1) {
  transition-delay: 0.05s;
}
.services-list .svc-animate:nth-child(2) {
  transition-delay: 0.15s;
}
.services-list .svc-animate:nth-child(3) {
  transition-delay: 0.25s;
}
.services-list .svc-animate:nth-child(4) {
  transition-delay: 0.35s;
}

/* ═══════════════════════════════════════════════
   PHOTO GRIDS
═══════════════════════════════════════════════ */
.grids-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  background: var(--grid-bg);
}

.grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 340px 340px;
  gap: var(--gap);
  position: relative;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--gap);
}

.grid-3 .cell {
  height: 310px;
}

.cell {
  overflow: hidden;
  position: relative;
}

.cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.cell:hover img {
  transform: scale(1.06);
}

/* ─── "vi elesker detaljer." overlay ─── */
.details-overlay {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: rgba(10, 5, 2, 0.96);
  padding: 30px 44px;
  text-align: center;
  min-width: 440px;
  pointer-events: none;
}

.details-overlay p {
  font-size: 21px;
  font-weight: 900;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.005em;
}

/* ═══════════════════════════════════════════════
   DIRECTIONAL SLIDE ANIMATIONS
═══════════════════════════════════════════════ */
.cell.from-left {
  opacity: 0;
  transform: translateX(-70px);
}
.cell.from-right {
  opacity: 0;
  transform: translateX(70px);
}
.cell.from-bottom {
  opacity: 0;
  transform: translateY(50px);
}

.cell.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Shared transition for all animated cells */
.cell.from-left,
.cell.from-right,
.cell.from-bottom {
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stagger within each grid row */
.grid-2x2 .cell:nth-child(1) {
  transition-delay: 0.05s;
}
.grid-2x2 .cell:nth-child(2) {
  transition-delay: 0.18s;
}
.grid-2x2 .cell:nth-child(3) {
  transition-delay: 0.12s;
}
.grid-2x2 .cell:nth-child(4) {
  transition-delay: 0.25s;
}

.grid-3 .cell:nth-child(1) {
  transition-delay: 0.05s;
}
.grid-3 .cell:nth-child(2) {
  transition-delay: 0.18s;
}
.grid-3 .cell:nth-child(3) {
  transition-delay: 0.31s;
}

/* Fallback warm-wood backgrounds */
.w1 {
  background: linear-gradient(145deg, #2e180a, #4a2810);
}
.w2 {
  background: linear-gradient(145deg, #3c2010, #5c3418);
}
.w3 {
  background: linear-gradient(145deg, #1e1008, #382010);
}
.w4 {
  background: linear-gradient(145deg, #4a2810, #3a1c0a);
}

/* ═══════════════════════════════════════════════
   SHARED LABELS
═══════════════════════════════════════════════ */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════ */
.about-section {
  background: var(--dark);
  padding: 120px 56px;
  margin-top: 120px;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-left h2 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.about-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 56px;
  max-width: 400px;
}

.about-stats {
  display: flex;
  gap: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--bronze);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  justify-content: flex-end;
}

.about-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border: 8px solid #885834;
  box-sizing: border-box;
}

.about-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
}

.about-info-value {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bronze);
  text-decoration: underline;
  transition: color 0.25s;
}

.about-cta:hover {
  color: var(--bronze-hover);
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════════════ */
.testimonials-section {
  background: #fff;
  padding: 120px 56px;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  margin-bottom: 48px;
}

.testimonials-header .section-label {
  color: var(--bronze);
}

.testimonials-header h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 12px;
}

.testimonials-source {
  font-size: 13px;
  color: rgba(14, 8, 4, 0.4);
  letter-spacing: 0.02em;
}

.testimonials-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
}

.testimonials-scroll.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.testimonials-scroll::-webkit-scrollbar {
  height: 4px;
}

.testimonials-scroll::-webkit-scrollbar-track {
  background: #f0ebe6;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
  background: var(--bronze);
}

.testimonial-card {
  background: #f8f5f2;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 340px;
  max-width: 340px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.testimonial-stars {
  color: var(--bronze);
  font-size: 15px;
  letter-spacing: 2px;
}

.testimonial-project {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
  opacity: 0.7;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(14, 8, 4, 0.7);
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(14, 8, 4, 0.08);
}

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.author-role {
  font-size: 12px;
  color: rgba(14, 8, 4, 0.45);
  letter-spacing: 0.04em;
}

.testimonials-cta {
  margin-top: 48px;
  text-align: center;
}

.btn-review {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(14, 8, 4, 0.2);
  padding: 16px 36px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s,
    gap 0.3s;
}

.btn-review:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: #fff;
  gap: 18px;
}

.btn-review svg {
  display: block;
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

/* ═══════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════ */
.contact-section {
  background: var(--dark-mid);
  padding: 120px 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* Left column */
.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 20px;
}

.contact-inner h2 {
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.contact-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 48px;
}

.contact-details {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-details svg {
  color: var(--bronze);
  flex-shrink: 0;
}

/* Right column — form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.form-group {
  padding: 20px 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.25s;
}

.form-group:focus-within {
  border-bottom-color: var(--bronze);
}

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  resize: none;
  caret-color: var(--bronze);
}

.form-group--select {
  position: relative;
}

.custom-select {
  position: relative;
}

.custom-select__trigger {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  text-align: left;
}

.custom-select__trigger.has-value {
  color: #fff;
}

.custom-select__arrow {
  flex-shrink: 0;
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.custom-select.is-open .custom-select__arrow {
  transform: rotate(180deg);
}

.custom-select__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: -20px;
  right: -20px;
  background: #1e1a17;
  border: 1px solid rgba(136, 88, 52, 0.3);
  border-radius: 6px;
  list-style: none;
  overflow: hidden;
  z-index: 100;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.custom-select.is-open .custom-select__dropdown {
  display: block;
}

.custom-select__option {
  padding: 13px 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}

.custom-select__option:hover {
  background: rgba(136, 88, 52, 0.12);
  color: #fff;
}

.custom-select__option.is-selected {
  color: var(--bronze);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.btn-submit {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bronze);
  color: #fff;
  border: none;
  padding: 18px 40px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  align-self: flex-start;
  transition:
    background 0.25s,
    gap 0.3s,
    transform 0.2s;
}

.btn-submit:hover {
  background: var(--bronze-hover);
  gap: 20px;
  transform: translateY(-1px);
}

.btn-submit.sent {
  background: #2a5c2a;
  gap: 12px;
}

.btn-submit:disabled {
  cursor: default;
  transform: none;
}

/* Spam honeypot — visually removed, invisible to humans */
.form-extra {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #adc178;
}

.form-status.error {
  color: #e07a5f;
}

.form-status:empty {
  display: none;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: #080402;
  border-top: 1px solid rgba(155, 95, 44, 0.3);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 56px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo img {
  width: 250px;
  display: block;
  object-fit: contain;
  margin-bottom: 52px;
}

.footer-tagline {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.footer-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
}

.footer-nav-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  opacity: 0.65;
  transition: opacity 0.25s;
}

.footer-social a:hover {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-madeby {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.18) !important;
}

.footer-madeby a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-madeby a:hover {
  color: var(--bronze);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════════════════════
   HAMBURGER & MOBILE MENU
═══════════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 201;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(14, 8, 4, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateY(-110%);
  opacity: 0;
  transition:
    transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s;
  z-index: 199;
  pointer-events: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-links li a {
  display: block;
  padding: 16px 0;
  font-size: 22px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  letter-spacing: -0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s;
}

.mobile-links li a:hover {
  color: var(--bronze);
}

.mobile-contact {
  align-self: flex-start;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav {
    padding: 0 32px;
  }
  .hero-content {
    padding: 0 32px;
  }

  .services-list .svc-row {
    gap: 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-nav-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — HAMBURGER BREAKPOINT (≤ 900px)
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-right {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  nav {
    padding: 0 20px;
  }

  /* Hero */
  .hero {
    padding: 96px 20px 80px;
    align-items: center;
  }

  .hero-content {
    width: 100%;
    padding: 0;
  }

  .hero-image img {
    object-position: center;
    opacity: 0.35;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(14, 8, 4, 0.6) 0%,
      rgba(14, 8, 4, 0.92) 60%,
      #0e0804 100%
    );
  }

  .hero-ring--1,
  .hero-ring--2 {
    display: none;
  }

  .hero-eyebrow {
    margin-bottom: 24px;
  }

  .hero-bottom {
    gap: 28px;
  }

  .hero-stats-row {
    gap: 20px;
  }

  .btn-hero-cta {
    padding: 14px 28px;
    font-size: 12px;
  }

  /* Grids */
  .grid-2x2 {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 260px);
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-3 .cell {
    height: 260px;
  }

  /* Services */
  .services-section {
    padding: 80px 20px;
  }
  .services-list .svc-row {
    padding: 24px 0;
  }

  /* About */
  .about-section {
    padding: 80px 20px;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-right {
    align-items: center;
  }
  .about-stats {
    gap: 28px;
  }
  .stat-num {
    font-size: 32px;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 80px 20px;
  }
  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
  }

  /* Contact */
  .contact-section {
    padding: 80px 20px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    padding: 60px 20px 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }

  .footer-nav-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .om-eyebrow span:last-child {
    font-size: 13px;
  }

  .om-hero-desc {
    margin-top: 20px;
    font-size: 14px;
    max-width: 100%;
  }

}

/* ═══════════════════════════════════════════════
   OM OSS PAGE — HERO OVERRIDES
═══════════════════════════════════════════════ */
.hero--page .hero-image img {
  object-fit: cover;
  object-position: center center;
  opacity: 1;
}

.hero--page .hero-overlay {
  background: #100703;
  opacity: 0.5;
}

.om-hero-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.om-eyebrow {
  margin-bottom: 20px !important;
  gap: 20px !important;
}

.om-eyebrow .eyebrow-bar {
  width: 56px;
  height: 2px;
  background: var(--bronze);
}

.om-eyebrow span:last-child {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--bronze);
}

.om-hero-desc {
  margin-top: 28px;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

/* ═══════════════════════════════════════════════
   VÅRE VERDIER SECTION
═══════════════════════════════════════════════ */
.verdier-section {
  background: #ffffff;
  padding: 120px 56px;
}

.verdier-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.verdier-heading {
  font-size: 50px;
  font-weight: 800;
  color: var(--bronze);
  line-height: 99.06%;
  margin-bottom: 32px;
}

.verdier-text p {
  font-size: 14px;
  line-height: 153%;
  color: #000000;
  margin-bottom: 20px;
}

.verdier-text p:last-child {
  margin-bottom: 0;
}

.verdier-visual {
  position: relative;
  margin-left: 60px;
}

.verdier-center-img {
  width: 70%;
  display: block;
  margin: 0 auto;
}

.badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 0;
  border: 1px solid #d5d5d5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-size: 13px;
  font-weight: 400;
  color: var(--dark);
  white-space: nowrap;
}

.badge--oppussing {
  top: 12%;
  left: -12%;
  animation: float-1 4s ease-in-out infinite;
}

.badge--bad {
  top: 8%;
  right: -8%;
  animation: float-2 4.5s ease-in-out infinite;
}

.badge--kjokken {
  top: 42%;
  left: -16%;
  animation: float-3 5s ease-in-out infinite;
}

.badge--maling {
  top: 38%;
  right: -10%;
  animation: float-2 4s ease-in-out 0.5s infinite;
}

.badge--gulv {
  bottom: 12%;
  left: -10%;
  animation: float-3 4.5s ease-in-out 0.3s infinite;
}

.badge--snekker {
  bottom: 8%;
  right: -12%;
  animation: float-1 5s ease-in-out 0.8s infinite;
}

@keyframes float-1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float-2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-8px) translateX(4px); }
}

@keyframes float-3 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-6px) translateX(-4px); }
}

.om-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 340px;
  gap: var(--gap);
  position: relative;
}

.om-grid-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  margin-left: 60px;
  background: rgba(10, 5, 2, 0.85);
  padding: 24px 32px;
  max-width: 500px;
  z-index: 10;
  pointer-events: none;
}

.om-grid-overlay p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════════════
   SLIK JOBBER VI SECTION
═══════════════════════════════════════════════ */
.slik-section {
  background: #ffffff;
  padding: 120px 56px;
  overflow: hidden;
}

.slik-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.slik-heading {
  font-size: 50px;
  font-weight: 800;
  color: var(--bronze);
  line-height: 99.06%;
  margin-bottom: 32px;
}

.slik-text p {
  font-size: 14px;
  line-height: 153%;
  color: #000000;
  margin-bottom: 20px;
}

.slik-text p:last-child {
  margin-bottom: 0;
}

.slik-image {
  position: relative;
  overflow: visible;
}

.slik-image img {
  width: 180%;
  max-width: none;
  display: block;
  margin-left: 60%;
}

/* ═══════════════════════════════════════════════
   OM OSS — RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .verdier-section {
    padding: 80px 20px;
  }

  .verdier-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .verdier-visual {
    order: -1;
    margin-left: 0;
    max-width: 280px;
    margin-inline: auto;
  }

  .slik-section {
    padding: 80px 20px;
  }

  .slik-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .slik-image {
    order: -1;
  }

  .slik-image img {
    width: 100%;
    margin-left: 0;
  }

  .om-grid {
    grid-template-rows: 220px;
  }
}
