/* ============================================================
   KUNSTGRÆSFABRIKKEN — Design System
   Augusta Noir × Nordic Heritage
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

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

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --void:       #080E0A;
  --forest:     #0F2419;
  --grove:      #1A3828;
  --moss:       #243D2F;
  --gold:       #C8A86B;
  --gold-light: #E2C993;
  --gold-dim:   rgba(200, 168, 107, 0.25);
  --cream:      #F0EAD6;
  --parchment:  #F7F3EC;
  --white:      #FEFCF8;
  --charcoal:   #1A1A1A;
  --stone:      #4A5A50;
  --mist:       #7A8C82;
  --border-dark: rgba(200, 168, 107, 0.18);
  --border-light: rgba(15, 36, 25, 0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);

  --radius-sm: 2px;
  --radius:    4px;
  --radius-lg: 8px;

  --max-w: 1320px;
  --section-pad: clamp(64px, 8vw, 120px);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

/* ── SKIP LINK (accessibility) ─────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--void);
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

/* ── TYPOGRAPHY SCALE ──────────────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(52px, 7vw, 108px);
  line-height: 1.0;
  letter-spacing: -0.01em;
}
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.3;
}
.body-lg { font-size: 18px; line-height: 1.75; font-weight: 300; }
.body    { font-size: 16px; line-height: 1.7; font-weight: 300; }
.body-sm { font-size: 14px; line-height: 1.65; font-weight: 300; }
.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.label-lg {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.section { padding: var(--section-pad) 0; }
.section-sm { padding: clamp(40px, 5vw, 72px) 0; }

/* ── COLORS ─────────────────────────────────────────────────── */
.bg-dark    { background: var(--void); }
.bg-forest  { background: var(--forest); }
.bg-grove   { background: var(--grove); }
.bg-light   { background: var(--parchment); }
.bg-white   { background: var(--white); }
.text-cream { color: var(--cream); }
.text-gold  { color: var(--gold); }
.text-mist  { color: var(--mist); }
.text-stone { color: var(--stone); }
.text-dark  { color: var(--charcoal); }

/* ── GRAIN TEXTURE (dark sections) ──────────────────────────── */
.grain {
  position: relative;
}
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}
.grain > * { position: relative; z-index: 2; }

/* ── GOLD DIVIDER ───────────────────────────────────────────── */
.gold-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  display: block;
  margin: 0 auto;
}
.gold-divider--left { margin: 0; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  min-width: 44px;
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.btn-gold {
  background: var(--gold);
  color: var(--void);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 168, 107, 0.25);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold-dim);
  transform: translateY(-1px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid rgba(26, 26, 26, 0.3);
}
.btn-outline-dark:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark {
  background: var(--forest);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--grove);
  transform: translateY(-1px);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 4vw, 60px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: background var(--transition), box-shadow var(--transition);
}
#nav.scrolled {
  background: var(--forest);
  box-shadow: 0 1px 0 var(--border-dark);
}
#nav.scrolled .nav-logo-text { color: var(--cream); }
#nav.nav-open { background: var(--forest); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  color: var(--cream);
  transition: color var(--transition);
}
.nav-logo-text .logo-top {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
}
.nav-logo-text .logo-bottom {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  height: 72px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 234, 214, 0.8);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link svg { width: 12px; height: 12px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--forest);
  border: 1px solid var(--border-dark);
  border-top: 1px solid var(--gold);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 234, 214, 0.75);
  transition: color var(--transition), padding-left var(--transition);
}
.nav-dropdown a:hover { color: var(--gold); padding-left: 32px; }

.nav-cta {
  margin-left: 16px;
  height: 40px;
  padding: 0 22px;
  font-size: 11px;
  letter-spacing: 0.18em;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: 20px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.lang-switcher .lang-active {
  color: var(--gold);
}
.lang-switcher .lang-inactive {
  color: rgba(200, 168, 107, 0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.lang-switcher .lang-inactive:hover {
  color: rgba(200, 168, 107, 0.75);
}
.lang-switcher .lang-div {
  color: rgba(200, 168, 107, 0.18);
  font-weight: 300;
  font-size: 12px;
}
.nav-mobile-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 500;
  text-transform: uppercase;
  border-top: 1px solid rgba(200, 168, 107, 0.12);
  margin-top: 12px;
}
.nav-mobile-lang .lang-active { color: var(--gold); }
.nav-mobile-lang .lang-inactive {
  color: rgba(200, 168, 107, 0.38);
  text-decoration: none;
}
.nav-mobile-lang .lang-inactive:hover { color: var(--gold); }
.nav-mobile-lang .lang-div { color: rgba(200, 168, 107, 0.18); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-hamburger:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: var(--radius-sm); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--void);
  z-index: 999;
  overflow-y: auto;
  padding: 32px clamp(20px, 4vw, 60px) 48px;
  flex-direction: column;
  gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  display: block;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--cream);
  border-bottom: 1px solid var(--border-dark);
  transition: color var(--transition);
}
.nav-mobile-link:hover { color: var(--gold); }
.nav-mobile-sub {
  padding: 8px 0 8px 24px;
}
.nav-mobile-sub a {
  display: block;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  transition: color var(--transition);
}
.nav-mobile-sub a:hover { color: var(--gold); }
.nav-mobile-cta {
  margin-top: 32px;
  align-self: flex-start;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: var(--void);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 14, 10, 0.95) 0%,
    rgba(8, 14, 10, 0.5) 40%,
    rgba(8, 14, 10, 0.2) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 72px clamp(20px, 4vw, 60px) clamp(64px, 8vw, 100px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: 1.0;
  color: var(--cream);
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: 32px;
}
.hero-title span {
  display: block;
}
.hero-title em {
  display: block;
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(240, 234, 214, 0.7);
  max-width: 52ch;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: clamp(20px, 4vw, 60px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(240, 234, 214, 0.4);
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── SECTION HEADERS ─────────────────────────────────────────── */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-header.centered {
  align-items: center;
  text-align: center;
}
.section-header .section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
}
.section-header.centered .section-label { justify-content: center; }
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-header h2 { max-width: 22ch; }
.section-header p { max-width: 56ch; opacity: 0.75; }

/* ── CATEGORY CARDS (homepage) ───────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.category-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.category-card:hover img { transform: scale(1.05); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,14,10,0.88) 0%, rgba(8,14,10,0.2) 55%, transparent 100%);
  transition: var(--transition);
}
.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(8,14,10,0.92) 0%, rgba(8,14,10,0.35) 60%, transparent 100%);
}
.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
}
.category-number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.category-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.category-card:hover h3 { color: var(--gold); }
.category-card p {
  font-size: 13px;
  color: rgba(240, 234, 214, 0.65);
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 28ch;
}
.category-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}
.category-arrow svg { width: 14px; height: 14px; }
.category-card:hover .category-arrow { opacity: 1; transform: translateY(0); }

/* ── FEATURE STRIP ───────────────────────────────────────────── */
.features-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.feature-item {
  padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 48px);
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
}
.feature-item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
}
.feature-item p { font-size: 15px; color: var(--stone); line-height: 1.65; }

/* ── PROJECTS GRID ───────────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.project-card {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.project-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  filter: brightness(0.9);
}
.project-card:hover .project-card-img img {
  transform: scale(1.05);
  filter: brightness(0.75);
}
.project-card-body {
  padding: 20px 24px 24px;
  background: var(--forest);
}
.project-card-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.project-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--cream);
}
.project-card-border {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
  pointer-events: none;
}
.project-card:hover .project-card-border { border-color: var(--gold); }

/* ── CTA BAND ────────────────────────────────────────────────── */
.cta-band {
  background: var(--forest);
  padding: clamp(56px, 7vw, 96px) clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band-text { display: flex; flex-direction: column; gap: 8px; }
.cta-band-text h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--cream);
}
.cta-band-text p { color: rgba(240, 234, 214, 0.6); font-size: 16px; max-width: 52ch; }

/* ── PRODUCT CARDS ───────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 16px 48px rgba(15, 36, 25, 0.12);
  transform: translateY(-3px);
}
.product-carousel {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--parchment);
}
.product-carousel-inner {
  display: flex;
  height: 100%;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.product-carousel img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(8, 14, 10, 0.55);
  color: var(--cream);
  border: 1px solid rgba(240, 234, 214, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition), background var(--transition);
  z-index: 2;
}
.carousel-btn svg { width: 14px; height: 14px; }
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }
.product-carousel:hover .carousel-btn { opacity: 1; }
.carousel-btn:hover { background: rgba(8, 14, 10, 0.85); }
.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
}
.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(240, 234, 214, 0.4);
  transition: background var(--transition);
}
.dot.active { background: var(--gold); }
.product-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.product-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.25;
}
.product-card p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
  flex: 1;
}
.product-price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal);
}
.product-price span { color: var(--mist); font-size: 13px; font-family: var(--font-body); }
.product-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.product-card-actions .btn {
  height: 42px;
  padding: 0 18px;
  font-size: 10px;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color var(--transition);
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.btn-download svg { width: 14px; height: 14px; }
.btn-download:hover { color: var(--forest); }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--forest);
  padding: clamp(100px, 12vw, 160px) clamp(20px, 4vw, 60px) clamp(56px, 7vw, 88px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; }
.page-hero h1 { color: var(--cream); }
.page-hero p {
  color: rgba(240, 234, 214, 0.65);
  font-size: clamp(15px, 1.5vw, 18px);
  max-width: 56ch;
  margin-top: 16px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.breadcrumb a, .breadcrumb span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 234, 214, 0.45);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep {
  width: 12px;
  height: 1px;
  background: rgba(240, 234, 214, 0.25);
}
.breadcrumb .current { color: var(--gold); }

/* ── SPLIT SECTION ───────────────────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-img {
  overflow: hidden;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.split-section:hover .split-img img { transform: scale(1.03); }
.split-content {
  padding: clamp(48px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.split-content.dark-bg {
  background: var(--forest);
  color: var(--cream);
}
.split-content.dark-bg h2 { color: var(--cream); }
.split-content.dark-bg p { color: rgba(240, 234, 214, 0.7); }

/* ── GUIDES ──────────────────────────────────────────────────── */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.guide-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.guide-card:hover {
  box-shadow: 0 16px 40px rgba(15, 36, 25, 0.1);
  transform: translateY(-2px);
}
.guide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.guide-card:hover::before { transform: scaleX(1); }
.guide-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.guide-card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.25;
}
.guide-card p { font-size: 15px; color: var(--stone); line-height: 1.65; }
.guide-actions { display: flex; align-items: center; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
.guide-steps {
  background: var(--parchment);
  border-left: 2px solid var(--gold);
  padding: 24px 28px;
  margin-top: 8px;
}
.guide-steps ol { padding-left: 20px; list-style: decimal; display: flex; flex-direction: column; gap: 8px; }
.guide-steps li { font-size: 14px; color: var(--stone); line-height: 1.6; }
.guide-steps li strong { color: var(--charcoal); font-weight: 500; }

/* ── ABOUT ───────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.about-img {
  position: relative;
}
.about-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-sm);
}
.about-img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  aspect-ratio: 1;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  z-index: -1;
  border-radius: var(--radius-sm);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: clamp(40px, 5vw, 64px);
}
.value-item {
  background: var(--forest);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.value-icon { width: 28px; height: 28px; color: var(--gold); }
.value-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
}
.value-item p { font-size: 14px; color: rgba(240, 234, 214, 0.65); line-height: 1.6; }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 5vw, 80px);
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
}
.contact-info p { font-size: 16px; color: var(--stone); max-width: 44ch; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail-icon { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-detail-text { display: flex; flex-direction: column; gap: 2px; }
.contact-detail-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
}
.contact-detail-value { font-size: 16px; color: var(--charcoal); font-weight: 300; }
.contact-detail-value a:hover { color: var(--forest); text-decoration: underline; }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}
.form-label .required { color: var(--gold); margin-left: 2px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 52px;
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 107, 0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--mist); }
.form-submit { margin-top: 8px; }
.form-note { font-size: 13px; color: var(--mist); margin-top: 4px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: var(--void);
  padding: clamp(56px, 7vw, 88px) clamp(20px, 4vw, 60px) 40px;
  color: var(--cream);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  margin-bottom: 56px;
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-brand p { font-size: 14px; color: rgba(240, 234, 214, 0.5); line-height: 1.7; max-width: 32ch; }
.footer-col h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13px;
  color: rgba(240, 234, 214, 0.5);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: rgba(240, 234, 214, 0.3); }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: rgba(200, 168, 107, 0.5);
}

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { transition: none; }
  .hero-scroll-line { animation: none; }
}

/* ── GOLF LANDING PAGE ───────────────────────────────────────── */
.golf-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.golf-stat {
  padding: 40px 36px;
  background: var(--grove);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.golf-stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.golf-stat-number span { color: var(--gold); }
.golf-stat-label { font-size: 12px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(240, 234, 214, 0.5); }

/* ── FULL WIDTH IMAGE ────────────────────────────────────────── */
.full-image {
  width: 100%;
  aspect-ratio: 21/8;
  overflow: hidden;
  position: relative;
}
.full-image img { width: 100%; height: 100%; object-fit: cover; }
.full-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,14,10,0.7) 0%, transparent 60%);
}
.full-image-caption {
  position: absolute;
  left: clamp(20px, 4vw, 60px);
  bottom: clamp(24px, 3vw, 48px);
  max-width: 480px;
}
.full-image-caption h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 12px;
}
.full-image-caption p { font-size: 15px; color: rgba(240, 234, 214, 0.7); }

/* ── PROJECTS PAGE ───────────────────────────────────────────── */
.projects-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--border-light);
  border-radius: 100px;
  color: var(--stone);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
}
.filter-btn:hover { border-color: var(--forest); color: var(--forest); }
.filter-btn.active { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.projects-masonry {
  columns: 3;
  column-gap: 16px;
}
.projects-masonry .project-card {
  break-inside: avoid;
  margin-bottom: 16px;
}
.projects-masonry .project-card-img { aspect-ratio: auto; }
.projects-masonry .project-card-img img { height: auto; min-height: 200px; }

/* ── TESTIMONIAL BAND ────────────────────────────────────────── */
.testimonial-band {
  background: var(--forest);
  padding: clamp(56px, 7vw, 88px) clamp(20px, 4vw, 60px);
  text-align: center;
  position: relative;
}
.testimonial-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 38px);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  max-width: 22ch;
  margin: 0 auto 24px;
  line-height: 1.35;
}
.testimonial-band cite { font-size: 12px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-style: normal; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid .category-card:nth-child(3) { grid-column: 1 / -1; aspect-ratio: 16/7; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section { grid-template-columns: 1fr; min-height: auto; }
  .split-img { aspect-ratio: 16/7; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { max-width: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .categories-grid { grid-template-columns: 1fr; }
  .categories-grid .category-card { aspect-ratio: 4/3; }
  .categories-grid .category-card:nth-child(3) { grid-column: auto; aspect-ratio: 4/3; }
  .features-strip { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border-light); }
  .feature-item:last-child { border-bottom: none; }
  .projects-grid { grid-template-columns: 1fr; }
  .projects-masonry { columns: 1; }
  .products-grid { grid-template-columns: 1fr; }
  .golf-stat-grid { grid-template-columns: 1fr; }
  .golf-stat { gap: 4px; }
  .guides-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .full-image { aspect-ratio: 4/3; }
  .split-content.dark-bg { padding: clamp(32px, 5vw, 48px); }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(40px, 10vw, 60px); }
  .category-card-content { padding: 20px; }
  .product-card-actions { flex-direction: column; align-items: flex-start; gap: 8px; }
  .guide-actions { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   EXTENDED COMPONENTS — added for inner pages
   ============================================================ */

/* ── UTILITY ─────────────────────────────────────────────────── */
.dark-bg { background: var(--void); }
.section-header.text-center { text-align: center; align-items: center; }
.section-header.text-center .section-label { justify-content: center; }
.section-header.text-center h2 { max-width: none; }
.section-header.text-center p { margin: 0 auto; }
.text-center { text-align: center; }
.split-image { overflow: hidden; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── BUTTONS EXTENDED ─────────────────────────────────────────── */
.btn-outline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--stone);
}
.btn-outline:hover { border-color: var(--forest); color: var(--forest); }
.btn-outline svg { width: 15px; height: 15px; }
.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(200, 168, 107, 0.35);
  color: var(--cream);
}
.btn-outline-light:hover { border-color: var(--gold); background: rgba(200,168,107,0.08); }

/* ── SECTION HEADER standalone (outside .section-header wrapper) */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--stone);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── CATEGORY CARD EXTENDED (produkter overview) ─────────────── */
.category-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.category-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--grove);
}
.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.category-card-link:hover .category-card-img img { transform: scale(1.05); }
.category-card-img .category-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 10, 0);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
  transition: background var(--transition);
}
.category-card-link:hover .category-card-img .category-card-overlay {
  background: rgba(8, 14, 10, 0.45);
}
.category-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}
.category-card-cta svg { width: 14px; height: 14px; }
.category-card-link:hover .category-card-cta { opacity: 1; transform: translateY(0); }
.category-card-body {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.category-card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: var(--charcoal);
  transition: color var(--transition);
}
.category-card-link:hover .category-card-body h3 { color: var(--forest); }
.category-card-body p { font-size: 14px; color: var(--stone); line-height: 1.6; flex: 1; }
.category-card-price {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--charcoal);
  margin-top: 4px;
}
.categories-grid .category-card { aspect-ratio: auto; cursor: default; }

/* ── PRODUCT SPECS + FOOTER ───────────────────────────────────── */
.product-specs {
  list-style: none;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 4px;
}
.product-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
}
.product-specs li span:first-child { color: var(--mist); }
.product-specs li span:last-child { color: var(--charcoal); font-weight: 400; }
.product-card-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.product-actions .btn { height: 40px; padding: 0 16px; font-size: 10px; }
.product-actions .btn svg { width: 13px; height: 13px; }

/* ── PROJECT CARD OVERLAY ─────────────────────────────────────── */
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,14,10,0.88) 0%, rgba(8,14,10,0.1) 55%, transparent 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  opacity: 0;
  transition: opacity var(--transition);
}
.project-card:hover .project-card-overlay { opacity: 1; }
.project-card-overlay h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.25;
}
.project-card-overlay p {
  font-size: 12px;
  color: rgba(240, 234, 214, 0.65);
  letter-spacing: 0.04em;
}

/* ── FILTER BAR ───────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 8px;
}

/* ── GUIDE CARD EXTENDED ──────────────────────────────────────── */
.guide-card { padding: 0; overflow: hidden; }
.guide-card-img {
  position: relative;
  aspect-ratio: 16/7;
  overflow: hidden;
}
.guide-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guide-card-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--void);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 10px;
}
.guide-card-body {
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guide-card-body h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
}
.guide-intro {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.7;
  max-width: 66ch;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin: 4px 0 8px;
}
.guide-steps { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.guide-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}
.guide-step:last-child { border-bottom: none; }
.guide-step-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  padding-top: 2px;
}
.guide-step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.guide-step p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.65;
}
.guide-step p + p { margin-top: 8px; }
.guide-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  background: var(--parchment);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-top: 16px;
  flex-wrap: wrap;
}
.guide-download-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 2px;
}

/* ── VALUE CARD (om-os) ───────────────────────────────────────── */
.value-card {
  background: var(--grove);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
}
.value-card p { font-size: 14px; color: rgba(240,234,214,0.65); line-height: 1.65; }

/* ── TEAM ─────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.team-card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-slow);
}
.team-card:hover .team-card-img img { transform: scale(1.03); }
.team-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.team-card-body h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--charcoal);
}
.team-card-body p { font-size: 14px; color: var(--stone); line-height: 1.65; }

/* ── CONTACT LAYOUT ───────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.contact-form h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.contact-form label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 6px;
}
.contact-form label span { color: var(--gold); }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 52px;
  appearance: none;
  -webkit-appearance: none;
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,168,107,0.12);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--mist); }
.contact-form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%237A8C82' stroke-width='1.5'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 12px; padding-right: 44px; }
.contact-form .form-group { display: flex; flex-direction: column; gap: 6px; }
.contact-info-block {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}
.contact-info-block:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-block h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.contact-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  transition: color var(--transition);
}
.contact-phone:hover { color: var(--forest); }
.contact-phone svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.contact-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--stone);
  line-height: 1.55;
}
.contact-step-num {
  min-width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--void);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  flex-shrink: 0;
  font-family: var(--font-body);
}

/* ── FEATURE ITEM on dark sections ───────────────────────────── */
.dark-section .feature-item h3 { color: var(--cream); }
.dark-section .feature-item p { color: rgba(240,234,214,0.65); }
.dark-section .features-strip { border-color: var(--border-dark); }
.dark-section .feature-item { border-color: var(--border-dark); }
section[style*="--forest"] .feature-item h3,
section[style*="var(--forest)"] .feature-item h3 { color: var(--cream); }
section[style*="background: var(--forest)"] .feature-item h3 { color: var(--cream); }
section[style*="background: var(--forest)"] .feature-item p { color: rgba(240,234,214,0.65); }
section[style*="background: var(--forest)"] .features-strip { border-color: var(--border-dark); }
section[style*="background: var(--forest)"] .feature-item { border-color: var(--border-dark); }
section[style*="background: var(--void)"] .feature-item h3 { color: var(--cream); }
section[style*="background: var(--void)"] .feature-item p { color: rgba(240,234,214,0.65); }
section[style*="background: var(--void)"] .features-strip { border-color: var(--border-dark); }
section[style*="background: var(--void)"] .feature-item { border-color: var(--border-dark); }

/* ── RESPONSIVE ADDITIONS ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .values-grid { gap: 2px; }
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card-img { aspect-ratio: 3/2; }
  .guide-step { grid-template-columns: 40px 1fr; gap: 14px; }
  .guide-download { flex-direction: column; align-items: flex-start; }
  .product-actions { flex-direction: column; align-items: flex-start; }
  .filter-bar { justify-content: flex-start; }
  .categories-grid.four-col { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .value-card { padding: 24px; }
}
@media (max-width: 480px) {
  .guide-card-body { padding: 24px; }
  .guide-step-num { font-size: 22px; }
  .team-card-body { padding: 24px; }
}

/* ── PRODUCT DETAIL PAGE ────────────────────────────────────── */

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: var(--section-pad) 0;
}

/* Gallery */
.detail-gallery {
  position: sticky;
  top: 100px;
}

.detail-main-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--parchment);
  aspect-ratio: 3/2;
  cursor: zoom-in;
}

.detail-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.detail-main-img-wrap:hover img {
  transform: scale(1.08);
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.detail-thumb {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.detail-thumb.active {
  border-color: var(--gold);
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.detail-thumb:hover img {
  transform: scale(1.05);
}

/* Product Info Column */
.detail-info {
  padding-top: 8px;
}

.detail-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
  margin: 8px 0 20px;
}

.detail-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--stone);
  margin-bottom: 32px;
}

/* Color Swatches */
.detail-colors-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.detail-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.detail-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition);
  position: relative;
  outline: none;
}

.detail-swatch:hover {
  transform: scale(1.15);
}

.detail-swatch.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 107, 0.25);
}

.detail-swatch[title]:hover::after {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  color: var(--cream);
  font-size: 11px;
  font-family: var(--font-body);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
}

.detail-color-name {
  font-size: 13px;
  color: var(--stone);
  margin-bottom: 24px;
  font-style: italic;
}

/* Specs table */
.detail-specs {
  border-top: 1px solid var(--border-light);
  margin-bottom: 32px;
}

.detail-specs li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}

.detail-specs li span:first-child {
  color: var(--stone);
  font-weight: 400;
}

.detail-specs li span:last-child {
  color: var(--charcoal);
  font-weight: 500;
  text-align: right;
}

/* Actions */
.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Responsive detail page */
@media (max-width: 900px) {
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .detail-gallery {
    position: static;
  }
}

@media (max-width: 600px) {
  .detail-thumbs {
    gap: 4px;
  }
  .detail-actions {
    flex-direction: column;
  }
  .detail-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* product-card-link wrapper */
.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card-link:hover .product-carousel img {
  transform: scale(1.04);
}

/* ============================================================
   DESIGN REFINEMENTS v2 — Frontend-Design Audit Pass
   ============================================================ */

/* ── 1. HERO ENTRANCE ANIMATIONS ─────────────────────────────── */
/* Cinematic staggered fade-up on page load */
.hero-label   { animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both; }
.hero-title   { animation: heroFadeUp 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both; }
.hero-subtitle{ animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.65s both; }
.hero-actions { animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.82s both; }
.hero-scroll  { animation: heroFadeIn 1.2s ease 1.2s both; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-label, .hero-title, .hero-subtitle,
  .hero-actions, .hero-scroll { animation: none; }
}

/* ── 2. NAV: SOLID ON NON-HERO PAGES ────────────────────────── */
/* Set via JS when no .hero element is present */
body.no-hero-page #nav {
  background: var(--forest);
  box-shadow: 0 1px 0 var(--border-dark);
}
body.no-hero-page #nav .nav-logo-text { color: var(--cream); }

/* ── 3. BREADCRUMB LIGHT VARIANT (parchment pages) ───────────── */
/* JS adds body.no-hero-page to detail/product pages */
body.no-hero-page .breadcrumb a,
body.no-hero-page .breadcrumb span {
  color: var(--stone);
}
body.no-hero-page .breadcrumb a:hover { color: var(--forest); }
body.no-hero-page .breadcrumb .current { color: var(--forest); }
body.no-hero-page .breadcrumb-sep { background: rgba(26, 26, 26, 0.18); }

/* ── 4. SECTION LABEL: CONSISTENT GOLD COLOUR ───────────────── */
/* Standalone .section-label (outside .section-header) */
.section-label { color: var(--gold); }
.section-label::before { background: var(--gold); }

/* ── 5. PRODUCT CARD: GOLD BOTTOM ACCENT ────────────────────── */
/* A gold line sweeps from left on hover — brand signature detail */
.product-card {
  position: relative;
  overflow: hidden; /* already set, ensure it */
}
.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover::after { transform: scaleX(1); }

/* ── 6. COLOR SWATCH: APPLE-STYLE RING WITH GAP ─────────────── */
/* Outer gold ring with 3px gap visible around the swatch colour */
.detail-swatch {
  border: 2px solid transparent;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: border-color var(--transition), outline-color var(--transition), transform var(--transition);
  box-shadow: none !important; /* remove old shadow approach */
}
.detail-swatch.active {
  border-color: transparent;
  outline-color: var(--gold);
}
.detail-swatch:hover { transform: scale(1.18); }

/* ── 7. TESTIMONIAL: DECORATIVE LARGE QUOTE MARK ────────────── */
.testimonial-band {
  overflow: hidden; /* already set */
  isolation: isolate;
}
.testimonial-band::before {
  content: '\201C';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -56%);
  font-family: var(--font-display);
  font-size: clamp(200px, 28vw, 380px);
  font-weight: 300;
  color: rgba(200, 168, 107, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.testimonial-band > * { position: relative; z-index: 1; }

/* ── 8. FEATURE ICONS: SUBTLE GOLD CIRCLE ────────────────────── */
.feature-icon {
  width: 52px;
  height: 52px;
  padding: 12px;
  background: rgba(200, 168, 107, 0.09);
  border-radius: 50%;
  border: 1px solid rgba(200, 168, 107, 0.2);
  transition: background var(--transition), border-color var(--transition);
  box-sizing: border-box;
}
.feature-item:hover .feature-icon {
  background: rgba(200, 168, 107, 0.15);
  border-color: rgba(200, 168, 107, 0.4);
}

/* ── 9. FOOTER LINK UNDERLINE SLIDE ─────────────────────────── */
.footer-col ul a {
  position: relative;
  display: inline-block;
  padding-bottom: 1px;
}
.footer-col ul a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(240, 234, 214, 0.5);
  transition: width var(--transition);
}
.footer-col ul a:hover::after { width: 100%; }

/* ── 10. CTA BAND: GOLD PULSE ────────────────────────────────── */
/* Subtle attention-pulse on primary CTA — stops on hover */
.cta-band .btn-gold {
  animation: goldPulse 3.5s ease-in-out infinite;
}
.cta-band .btn-gold:hover { animation: none; }
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 168, 107, 0); }
  60%       { box-shadow: 0 0 0 8px rgba(200, 168, 107, 0.13); }
}
@media (prefers-reduced-motion: reduce) {
  .cta-band .btn-gold { animation: none; }
}

/* ── 11. NAV-CTA MINIMUM TOUCH SIZE ─────────────────────────── */
/* Raise btn-sm to exactly 44px for WCAG touch target */
.btn-sm {
  height: 44px !important;
  padding: 0 20px;
}

/* ── 12. NAV LINK: MICRO-ANIMATION ON HOVER ─────────────────── */
/* Gold dot appears under active/hovered nav link */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 1px;
  background: var(--gold);
  transition: transform var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }

/* ── 13. SECTION DIVIDER: GOLD RULE ─────────────────────────── */
/* Use before CTA band for visual pause */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  border: none;
  margin: 0;
}

/* ── 14. PROJECT CARD: IMPROVED OVERLAY REVEAL ──────────────── */
/* Ensure text is always readable even without hover */
.project-card-body {
  background: linear-gradient(to bottom, var(--forest), rgba(15, 36, 25, 0.95));
}

/* ── 15. GUIDE STEP NUMBER: ITALIC ELEGANCE ─────────────────── */
.guide-step-num { font-style: italic; }

/* ── 16. SPLIT SECTION HOVER: SUBTLE SHIFT ──────────────────── */
/* The image column gets a tiny parallax feel on section hover */
.split-section .split-img {
  overflow: hidden;
  will-change: transform;
}

/* ── 17. DETAIL SPEC ROWS: HOVER HIGHLIGHT ──────────────────── */
.detail-specs li {
  transition: background var(--transition), padding-inline var(--transition);
  border-radius: 0;
  padding-inline: 0;
}
.detail-specs li:hover {
  background: rgba(200, 168, 107, 0.06);
  padding-inline: 10px;
  margin-inline: -10px;
  border-color: transparent;
  border-radius: var(--radius-sm);
}

/* ── 18. PAGE-HERO LABEL: GOLD LINE SEPARATOR ───────────────── */
/* Subtle decorative gold line after the h1 on dark page heroes */
.page-hero h1::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-top: 20px;
  opacity: 0.6;
}

/* ── 19. PRODUCT CARD BODY: SLIGHTLY WARMER BG ──────────────── */
.product-card-body { background: var(--white); }
.product-card { background: var(--white); }

/* ── 20. CATEGORY CARD NUMBER: MORE EDITORIAL ────────────────── */
.category-number {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.3em;
  font-weight: 300;
  font-style: italic;
}

/* ── 21. GOLD DIVIDER CENTERED ───────────────────────────────── */
.section-header .gold-divider { display: block; margin: 4px 0; }
.section-header.centered .gold-divider { margin: 4px auto; }

/* ── 22. COUNTER: TARGET CLASS ───────────────────────────────── */
/* Golf stat numbers get count-up via JS */
.stat-counter { display: inline; }

/* ── 23. MOBILE: PARCHMENT SECTION TOP STRIP ────────────────── */
/* Detail pages – thin forest-green top bar for visual anchor */
body.no-hero-page main > section:first-child {
  border-top: 3px solid var(--forest);
}

/* ── 24. DROPDOWN: SUBTLE ENTER ANIMATION ────────────────────── */
.nav-dropdown a {
  opacity: 0;
  transform: translateX(-6px);
  transition: color var(--transition), padding-left var(--transition),
              opacity 200ms ease, transform 200ms ease;
}
.nav-item:hover .nav-dropdown a,
.nav-item:focus-within .nav-dropdown a {
  opacity: 1;
  transform: translateX(0);
}
/* Stagger each dropdown item */
.nav-dropdown a:nth-child(1) { transition-delay: 40ms; }
.nav-dropdown a:nth-child(2) { transition-delay: 70ms; }
.nav-dropdown a:nth-child(3) { transition-delay: 100ms; }
.nav-dropdown a:nth-child(4) { transition-delay: 130ms; }
.nav-dropdown a:nth-child(5) { transition-delay: 160ms; }
.nav-dropdown a:nth-child(6) { transition-delay: 190ms; }

/* ── 25. PRODUCTS GRID: HOVER NEIGHBOUR DIM ─────────────────── */
/* When any card is hovered, its siblings dim slightly */
.products-grid:has(.product-card:hover) .product-card:not(:hover) {
  opacity: 0.88;
  transition: opacity var(--transition), box-shadow var(--transition), transform var(--transition);
}

/* ── 26. BTN-GOLD: SHIMMER SWEEP ON HOVER ────────────────────── */
.btn-gold {
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 500ms ease;
  pointer-events: none;
}
.btn-gold:hover::before { left: 160%; }

/* ── 27. SCROLL REVEAL: SPRING EASING ───────────────────────── */
/* Upgrade the reveal animation easing to feel more natural */
.reveal {
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── 28. CATEGORY CARDS: GOLD BORDER ON HOVER ───────────────── */
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 168, 107, 0);
  z-index: 3;
  transition: border-color var(--transition);
  pointer-events: none;
}
.category-card:hover::before { border-color: rgba(200, 168, 107, 0.45); }

/* ── 29. PROJECTS SECTION: CARD COUNT BADGE ─────────────────── */
/* The gold tag on project cards should look more polished */
.project-card-tag {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid rgba(200, 168, 107, 0.3);
  border-radius: var(--radius-sm);
  letter-spacing: 0.2em;
}

/* ── 30. MOBILE IMPROVEMENT: DETAIL PAGE ACTIONS ────────────── */
@media (max-width: 480px) {
  .detail-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .nav-cta { display: none !important; }
}

/* ── 31. PROJEKT CARDS — 2-kolonne med thumbnail-strip ──────── */
.projects-grid--2col {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.project-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 4px;
}
.project-thumbs img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: opacity var(--transition);
}
.project-thumbs img:hover { opacity: 0.85; }
.project-card-desc {
  color: var(--stone);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 6px;
}
.project-card-img-link { display: block; text-decoration: none; }
.project-card-link-btn {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
.project-card-link-btn:hover { color: var(--gold-light); }
@media (max-width: 768px) {
  .projects-grid--2col { grid-template-columns: 1fr; }
}


/* ── GUIDE OVERVIEW PAGE ─────────────────────────────────────── */
.guides-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.guide-ov-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.guide-ov-card:hover {
  box-shadow: 0 12px 36px rgba(15, 36, 25, 0.13);
  transform: translateY(-3px);
}
.guide-ov-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.guide-ov-card:hover::after { transform: scaleX(1); }
.guide-ov-ill {
  aspect-ratio: 16/8;
  overflow: hidden;
  background: var(--void);
  position: relative;
}
.guide-ov-ill svg {
  width: 100%;
  height: 100%;
  display: block;
}
.guide-ov-ill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.guide-ov-card:hover .guide-ov-ill img {
  transform: scale(1.06);
}
.guide-ov-ill--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,14,10,0.28) 0%, rgba(8,14,10,0.05) 55%, rgba(8,14,10,0.18) 100%);
  pointer-events: none;
  z-index: 1;
}
.guide-ov-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(200, 168, 107, 0.12);
  border: 1px solid rgba(200, 168, 107, 0.35);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}
.guide-ov-readtime {
  position: absolute;
  bottom: 14px;
  right: 14px;
  color: rgba(200, 168, 107, 0.5);
  font-size: 10px;
  z-index: 2;
  letter-spacing: 0.08em;
}
.guide-ov-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.guide-ov-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 21px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin: 0;
  transition: color var(--transition);
}
.guide-ov-card:hover .guide-ov-title { color: var(--forest); }
.guide-ov-desc {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.6;
  flex: 1;
  margin-top: 2px;
}
.guide-ov-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
}
.guide-ov-cta svg {
  width: 13px;
  height: 13px;
  transition: transform 0.2s;
}
.guide-ov-card:hover .guide-ov-cta svg { transform: translateX(4px); }

/* ── GUIDE DETAIL PAGE ───────────────────────────────────────── */
.guide-detail-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.guide-detail-img {
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 32px 0;
}
.guide-detail-img img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  display: block;
}
.guide-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.guide-related-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}
.guide-related-link:hover {
  border-color: var(--gold);
  background: rgba(200, 168, 107, 0.04);
}
.guide-related-link span {
  font-size: 13px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.3;
  flex: 1;
}
.guide-related-link svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

@media (max-width: 1024px) {
  .guides-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-related { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .guides-overview-grid { grid-template-columns: 1fr; }
  .guide-related { grid-template-columns: 1fr; }
}

/* ── GUIDE DETAIL — PREMIUM EDITORIAL LAYOUT ──────────────────── */
.gd-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.gd-intro {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.9;
  color: var(--charcoal);
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin-bottom: 64px;
  font-style: italic;
}
.gd-steps { display: flex; flex-direction: column; }
.gd-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 24px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(200, 168, 107, 0.1);
  align-items: start;
}
.gd-step:first-child { padding-top: 0; }
.gd-steps + .gd-steps .gd-step:first-child { padding-top: 48px; }
.gd-step-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 68px);
  font-weight: 300;
  font-style: italic;
  color: rgba(200, 168, 107, 0.17);
  line-height: 0.85;
  letter-spacing: -0.03em;
  text-align: right;
  margin-top: 6px;
  user-select: none;
}
.gd-step-body h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 14px;
  line-height: 1.25;
}
.gd-step-body p {
  color: var(--stone);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 12px;
}
.gd-step-body p:last-child { margin-bottom: 0; }
.gd-step-body strong { color: var(--charcoal); font-weight: 500; }
.gd-image {
  margin: 64px -60px;
}
.gd-image img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-sm);
}
.gd-download {
  margin-top: 72px;
  background: var(--forest);
  border-radius: var(--radius-sm);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.gd-download-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 300;
  color: var(--cream);
  margin: 0 0 8px;
}
.gd-download > div p {
  color: rgba(200, 168, 107, 0.5);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}
.gd-related {
  max-width: 760px;
  margin: 72px auto 0;
  padding-top: 40px;
  border-top: 1px solid rgba(200, 168, 107, 0.12);
}
.gd-related-label {
  display: block;
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.gd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gd-related-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(200, 168, 107, 0.12);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.gd-related-link:hover {
  border-color: var(--gold);
  background: rgba(200, 168, 107, 0.04);
  transform: translateY(-2px);
}
.gd-related-link span {
  color: var(--charcoal);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
  flex: 1;
}
.gd-related-link:hover span { color: var(--forest); }
.gd-related-link > svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; width: 14px; height: 14px; }

@media (max-width: 980px) {
  .gd-image { margin: 48px 0; }
}
@media (max-width: 900px) {
  .gd-download { flex-direction: column; align-items: flex-start; padding: 32px; }
  .gd-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .gd-step { grid-template-columns: 52px 1fr; gap: 0 16px; padding: 36px 0; }
  .gd-step-num { font-size: 38px; }
  .gd-related-grid { grid-template-columns: 1fr; }
  .gd-download { padding: 24px; }
}

/* ============================================================
   MOBILE v2 — Touch targets, viewport & layout improvements
   ============================================================ */

/* 1. Dynamic viewport height — correct mobile hero sizing
      (dvh excludes browser chrome; vh fallback for old browsers) */
.hero { min-height: 92dvh; }

/* 2. Scroll-padding so anchor links clear the fixed nav */
html { scroll-padding-top: 88px; }

/* 3. Touch-action: remove 300ms tap delay on all interactive elements */
a, button, [role="button"], label[for] { touch-action: manipulation; }

/* 4. Product action buttons: meet 44 × 44 px touch target */
.product-actions .btn { height: 44px; }

/* 5. Lang-switcher: push right on mobile to sit beside the hamburger */
@media (max-width: 768px) {
  .lang-switcher { margin-left: auto; }
}

/* 6. Hero CTA: full-width buttons on small phones for easy tapping */
@media (max-width: 480px) {
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* 7. Simulator section — CSS-managed layout (replaces inline styles) */
.sim-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.sim-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 168, 107, 0.18);
  border-radius: 4px;
  padding: 36px 32px;
}
@media (max-width: 540px) {
  .sim-card { padding: 28px 24px; }
  .sim-grid { gap: 20px; }
}

/* 8. Chipping section: reduce the 72 px gap when stacked vertically */
@media (max-width: 1024px) {
  .split-section.split-gap-lg { gap: 40px; }
}
@media (max-width: 540px) {
  .split-section.split-gap-lg { gap: 28px; }
}

/* 9. Safe-area insets for notched / Dynamic Island devices */
@supports (padding-top: env(safe-area-inset-top)) {
  #nav {
    padding-top: env(safe-area-inset-top);
    height: calc(72px + env(safe-area-inset-top));
  }
  .nav-mobile {
    top: calc(72px + env(safe-area-inset-top));
  }
}

/* 10. Mobile nav sub-links: full 44 px tap height */
@media (max-width: 768px) {
  .nav-mobile-sub a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

/* ════════════════════════════════════════════════════════════
   POLISH PACK 2026 — finpudsning, samme designsprog
   ════════════════════════════════════════════════════════════ */

/* ── P1. TEKSTMARKERING I GULD ───────────────────────────────── */
::selection {
  background: rgba(200, 168, 107, 0.35);
  color: var(--void);
}

/* ── P2. ANKER-SCROLL UNDER FIXED NAV ────────────────────────── */
section[id], h2[id], h3[id], [id].section {
  scroll-margin-top: 88px;
}

/* ── P3. GLOBAL FOKUS-RING (tastatur-navigation) ─────────────── */
a:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── P4. NAV: GLAS-EFFEKT NÅR DER SCROLLES ───────────────────── */
#nav.scrolled {
  background: rgba(15, 36, 25, 0.9);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
}

/* ── P5. BALANCEREDE OVERSKRIFTER ────────────────────────────── */
h1, h2, h3, .hero-title {
  text-wrap: balance;
}

/* ── P6. FORMULARER: GULD ACCENT PÅ NATIVE KONTROLLER ────────── */
:root { accent-color: var(--gold); }

/* Selects: eget guld-chevron i stedet for browserens grå pil */
.contact-form select,
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23C8A86B' stroke-width='1.5'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 44px;
}

/* ── P7. BILLEDER: BLØD INDTONING VED LAZY LOAD ──────────────── */
img[loading="lazy"] {
  animation: imgFadeIn 500ms ease both;
}
@keyframes imgFadeIn {
  from { opacity: 0.4; }
  to   { opacity: 1; }
}

/* ── P8. FOOTER: GULD HÅRLINJE ØVERST ────────────────────────── */
footer {
  border-top: 1px solid rgba(200, 168, 107, 0.22);
}

/* ── P9. KONTAKTFORMULARENS INPUTS (kontakt.html bruger utagged inputs) */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 107, 0.12);
}

/* ── P10. SPINNER TIL "SENDER…" KNAPPEN ──────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }

/* ── P11. REDUCERET BEVÆGELSE: RESPEKTER BRUGERENS VALG ──────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
