:root {
  --forest: #174c35;
  --grass: #4c8c3f;
  --sun: #f6c85f;
  --sky: #dff2f0;
  --ink: #17211b;
  --muted: #59645e;
  --paper: #fffdf7;
  --line: #d8e0d6;
  --white: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 24px;
  flex-wrap: wrap;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand-group {
  min-width: 0;
  display: grid;
  gap: 6px;
  align-items: start;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: clamp(200px, 24vw, 275px);
  height: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex-shrink: 0;
}

.nav a,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.15;
}

.nav a {
  color: var(--forest);
}

.nav a:hover {
  background: var(--sky);
}

.button-primary {
  color: var(--white);
  background: var(--forest);
}

.button-secondary {
  color: var(--forest);
  background: var(--sun);
}

.hero {
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: end;
  padding: clamp(56px, 10vw, 96px) clamp(18px, 4vw, 56px) 44px;
  color: var(--white);
  background-image:
    linear-gradient(180deg, rgba(23, 76, 53, 0.38), rgba(23, 76, 53, 0.88)),
    var(--hero-image),
    linear-gradient(135deg, #6fa66d 0%, #2d6d4b 48%, #123c2a 100%);
  background-position: center;
  background-size: cover;
}

.hero-home {
  --hero-image: url("/assets/madpakketelt.jpg?v=1");
}

.hero-parkgolf {
  --hero-image: url("/assets/hero-parkgolf-optimized.jpg");
}

.hero-inner {
  width: min(980px, 100%);
}

.hero-content {
  max-width: 760px;
}

.hero-home .hero-inner {
  width: min(1180px, 100%);
  display: grid;
  gap: clamp(28px, 5vw, 56px);
}

.hero-people {
  width: min(360px, 100%);
  margin-left: auto;
}

.hero-top-photo {
  display: block;
  width: 100%;
  aspect-ratio: 362 / 139;
  object-fit: cover;
  border-radius: 18px;
  border: 4px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 34px rgba(6, 29, 20, 0.28);
  background: rgba(255, 255, 255, 0.18);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 920px;
  font-size: clamp(2.7rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  color: var(--forest);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  color: var(--forest);
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: clamp(1.1rem, 2.2vw, 1.42rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.section.alt {
  background: #eef7ed;
}

.section > .section-head,
.section > .grid,
.section > .split-layout,
.section > .detail-grid,
.section > .info-grid,
.section > .price-list,
.section > .contact-layout {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.activity-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.split-copy {
  display: grid;
  gap: 16px;
}

.split-copy p,
.detail-copy p,
.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.split-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(23, 76, 53, 0.08);
}

.detail-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-item,
.info-card {
  padding: 0;
  overflow: hidden;
}

.detail-copy,
.info-copy {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.detail-copy h3,
.info-copy h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.card {
  min-height: 100%;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(23, 76, 53, 0.08);
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.card-image {
  width: calc(100% + 48px);
  height: 190px;
  display: block;
  margin: -24px -24px 20px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px 8px 0 0;
}

.card-image-wide {
  object-position: center;
}

.visual {
  min-height: 170px;
  margin: -24px -24px 20px;
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(135deg, rgba(246, 200, 95, 0.82), rgba(76, 140, 63, 0.64)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0 10px, transparent 10px 28px);
}

.price-list {
  display: grid;
  gap: 12px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-row strong {
  color: var(--forest);
}

.price-row span {
  font-size: 1.25rem;
  font-weight: 900;
  white-space: nowrap;
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 56px);
  background: var(--forest);
  color: var(--white);
}

.band h2 {
  color: var(--white);
}

.band p {
  margin: 16px 0 0;
  color: #e7f2e8;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: #d9eadc;
  background: #10291f;
}

.site-footer a {
  color: var(--white);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-weight: 800;
}

.footer-contact a {
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--sun);
}

@media (max-width: 900px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-group {
    width: 100%;
  }

  .brand-logo {
    width: min(62vw, 250px);
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
  }

  .nav a,
  .nav .button {
    width: 100%;
    padding-inline: 8px;
  }

  .grid,
  .activity-grid,
  .split-layout,
  .detail-grid,
  .info-grid,
  .band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-people {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .nav a,
  .button {
    width: 100%;
  }

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

  .price-row span {
    white-space: normal;
  }

  .hero-top-photo {
    border-radius: 14px;
  }
}
