@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@500;700;800;900&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --cream: #f5f1e8;
  --cream-warm: #ebe4d4;
  --paper: #faf7f0;
  --copper: #b8541f;
  --copper-deep: #8e3d12;
  --line: #d8d1bf;
  --muted: #6b655a;
  --max: 1200px;
  --r-sm: 4px;
  --r: 8px;
  --r-lg: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 9vw, 6.5rem); }
h2 { font-size: clamp(2.25rem, 6vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p { max-width: 60ch; }

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; height: auto; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 999px;
  transition: all 0.18s ease;
  cursor: pointer;
}

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

.btn--outline {
  background: transparent;
  color: var(--ink);
}

.btn--outline:hover { background: var(--ink); color: var(--cream); }

.btn--copper {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--paper);
}

.btn--copper:hover { background: var(--copper-deep); border-color: var(--copper-deep); }

.phone-icon {
  width: 18px; height: 18px; flex-shrink: 0;
}

/* ============ NAV ============ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.brand {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.brand__mark {
  color: var(--copper);
}

.nav__links {
  display: none;
  gap: 32px;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav__links a:hover { color: var(--copper); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.nav__cta:hover { color: var(--copper); }

@media (min-width: 860px) {
  .nav__links { display: flex; }
}

/* ============ HERO ============ */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 80vh;
}

.hero__copy {
  padding: 60px 24px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero__location {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__location::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--copper);
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 24px;
}

.hero h1 .accent {
  color: var(--copper);
  font-style: italic;
}

.hero__lead {
  font-size: 1.2rem;
  line-height: 1.55;
  color: #d8d1bf;
  margin-bottom: 36px;
  max-width: 46ch;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero__ctas .btn--outline {
  color: var(--cream);
  border-color: var(--cream);
}

.hero__ctas .btn--outline:hover {
  background: var(--cream);
  color: var(--ink);
}

.hero__hours {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  padding-top: 28px;
  border-top: 1px solid #2a2620;
  font-size: 0.95rem;
}

.hero__hours dt {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--copper);
  margin-bottom: 4px;
}

.hero__hours dd {
  font-weight: 500;
  color: var(--cream);
}

.hero__media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.92);
}

.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.2) 35%, rgba(10,10,10,0.1) 100%);
}

@media (min-width: 920px) {
  .hero__grid {
    grid-template-columns: 1.05fr 1fr;
  }
  .hero__copy { padding: 80px 48px 80px 48px; }
  .hero__media { min-height: 100%; }
}

/* ============ MARQUEE ============ */

.marquee {
  background: var(--copper);
  color: var(--paper);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--copper-deep);
  border-bottom: 1px solid var(--copper-deep);
}

.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scroll 38s linear infinite;
}

.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
}

.marquee__track span::after {
  content: '\2022';
  color: var(--cream);
  font-size: 1rem;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */

.section {
  padding: 96px 0;
}

.section--cream {
  background: var(--cream);
}

.section--paper {
  background: var(--paper);
}

.section__head {
  max-width: 720px;
  margin-bottom: 64px;
}

.section__head h2 {
  margin-bottom: 18px;
}

.section__head h2 .accent {
  color: var(--copper);
  font-style: italic;
}

.section__head p {
  font-size: 1.15rem;
  color: var(--muted);
}

/* ============ OM-SEKTION ============ */

.om {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.om__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(10,10,10,0.4);
}

.om__media img {
  width: 100%; height: 100%; object-fit: cover;
}

.om__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--paper);
  padding: 14px 20px;
  border-radius: var(--r);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.om__badge strong {
  color: var(--copper);
  font-size: 1.3rem;
}

.om__copy h2 { margin-bottom: 24px; }
.om__copy p { font-size: 1.1rem; margin-bottom: 18px; color: var(--ink); }
.om__copy p:last-of-type { margin-bottom: 32px; }

.om__features {
  list-style: none;
  display: grid;
  gap: 14px;
}

.om__features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-weight: 500;
}

.om__features li::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--copper);
  flex-shrink: 0;
  margin-top: 14px;
}

@media (min-width: 880px) {
  .om {
    grid-template-columns: 0.85fr 1fr;
    gap: 80px;
  }
}

/* ============ PRISER ============ */

.priser {
  display: grid;
  gap: 40px;
}

.pris-gruppe h3 {
  border-bottom: 2px solid var(--ink);
  padding-bottom: 14px;
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.pris-gruppe h3 .pris-gruppe__count {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.pris-liste {
  list-style: none;
  display: grid;
  gap: 4px;
}

.pris-liste li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
}

.pris-liste li:last-child { border-bottom: none; }

.pris-navn {
  font-weight: 500;
  font-size: 1.05rem;
}

.pris-navn small {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 400;
}

.pris-dots {
  flex: 1;
  height: 1px;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-6px);
}

.pris-pris {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  white-space: nowrap;
}

.pris-pris small {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
}

.pris-footnote {
  margin-top: 40px;
  padding: 24px;
  background: var(--paper);
  border-left: 3px solid var(--copper);
  font-size: 0.95rem;
  color: var(--muted);
  border-radius: 0 var(--r) var(--r) 0;
}

.pris-footnote strong { color: var(--ink); }

@media (min-width: 880px) {
  .priser {
    grid-template-columns: 1fr 1fr;
    gap: 56px 80px;
  }
}

/* ============ GALLERI ============ */

.galleri {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.galleri__card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--r-lg);
}

.galleri__card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}

.galleri__card:hover img { transform: scale(1.04); }

.galleri__card--tall { aspect-ratio: 4/5; }

@media (min-width: 760px) {
  .galleri {
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
  }
}

/* ============ FIND OS ============ */

.find {
  display: grid;
  gap: 48px;
  align-items: start;
}

.find__info h3 {
  margin-bottom: 24px;
}

.find__row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.find__row:last-of-type { border-bottom: none; }

.find__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.find__icon svg { width: 18px; height: 18px; stroke: var(--ink); }

.find__label {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--copper);
  margin-bottom: 4px;
}

.find__value {
  font-size: 1.1rem;
  font-weight: 500;
}

.find__value a:hover { color: var(--copper); }

.find__hours-list {
  list-style: none;
  display: grid;
  gap: 6px;
  margin-top: 6px;
  font-size: 1rem;
}

.find__hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 280px;
}

.find__hours-list span:first-child { color: var(--muted); }

.find__map {
  background: var(--ink);
  color: var(--cream);
  padding: 40px;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}

.find__map h4 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.find__map p {
  color: #c5beac;
  margin-bottom: 24px;
}

.find__map .btn--outline {
  color: var(--cream);
  border-color: var(--cream);
}

.find__map .btn--outline:hover {
  background: var(--cream);
  color: var(--ink);
}

.find__map-visual {
  margin-top: 32px;
  padding: 32px 24px;
  background: #161410;
  border: 1px solid #2a2620;
  border-radius: var(--r);
  text-align: center;
}

.find__map-visual .pin {
  display: inline-block;
  background: var(--copper);
  color: var(--paper);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.find__map-visual .center-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a847a;
}

@media (min-width: 880px) {
  .find {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

/* ============ CTA-BÅND ============ */

.cta-band {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0;
  text-align: center;
}

.cta-band h2 { color: var(--cream); margin-bottom: 20px; }
.cta-band h2 .accent { color: var(--copper); font-style: italic; }
.cta-band p { color: #c5beac; max-width: 50ch; margin: 0 auto 36px; font-size: 1.15rem; }

.cta-band .btn {
  background: var(--copper);
  border-color: var(--copper);
  font-size: 1.3rem;
  padding: 22px 36px;
}

.cta-band .btn:hover { background: var(--copper-deep); border-color: var(--copper-deep); }

.cta-band__sub {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #8a847a;
  letter-spacing: 0.05em;
}

/* ============ FOOTER ============ */

.footer {
  background: #050505;
  color: #8a847a;
  padding: 56px 0 32px;
  font-size: 0.92rem;
}

.footer__top {
  display: grid;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #1a1a1a;
}

.footer__brand .brand {
  color: var(--cream);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.footer__brand p {
  color: #8a847a;
  max-width: 36ch;
}

.footer__col h5 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--copper);
  margin-bottom: 14px;
}

.footer__col ul { list-style: none; display: grid; gap: 8px; }
.footer__col a:hover { color: var(--cream); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.85rem;
}

@media (min-width: 760px) {
  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

/* ============ STICKY MOBILE TLF ============ */

.sticky-call {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 60;
  background: var(--copper);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  border-radius: 999px;
  box-shadow: 0 10px 30px -10px rgba(184,84,31,0.6);
}

@media (min-width: 860px) {
  .sticky-call { display: none; }
}
