/* ----- Norway Travel Deals — editorial travel publication design ----- */

.nwtd {
  --bg:        #0B1420;
  --bg-2:      #0F1E2E;
  --bg-soft:   #14283A;
  --snow:      #F5F1E8;
  --cream:     #EBE3D2;
  --cream-2:   #DCD2BD;
  --ink:       #0B1420;
  --ink-soft:  #2A3645;
  --aurora-1:  #5FE7B5;
  --aurora-2:  #A78BFA;
  --aurora-3:  #FF8AA8;
  --aurora-4:  #6BCBE7;
  --fjord:     #2C5B6B;
  --fjord-dk:  #1A3845;
  --ice:       #B8D4DC;
  --ochre:     #C8623E;
  --rust:      #8B3A1E;
  --gold:      #D4A24C;
  --sky-1: #060B16;
  --sky-2: #0B1420;
  --sky-3: #112233;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  font-family: var(--font-body);
  background: var(--bg);
  color: var(--snow);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.nwtd * { box-sizing: border-box; }
.nwtd a { color: inherit; text-decoration: none; }
.nwtd button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.nwtd img { display: block; max-width: 100%; }

.nwtd .eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aurora-1);
}

.nwtd .nwtd-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 720px) { .nwtd .nwtd-container { padding: 0 24px; } }

/* ----- Nav ----- */

.nwtd .nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 0;
  transition: background 0.3s ease, padding 0.3s ease;
}
.nwtd .nav.scrolled {
  background: rgba(11, 20, 32, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 14px 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.06);
}
.nwtd .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nwtd .brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 22px; letter-spacing: -0.01em; font-weight: 500; }
.nwtd .brand-mark { width: 32px; height: 32px; }
.nwtd .brand-mark svg { width: 100%; height: 100%; }
.nwtd .brand-name { line-height: 1; }
.nwtd .brand-name em { font-style: italic; color: var(--aurora-1); font-weight: 400; }
.nwtd .brand-name .tld { font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ice); opacity: 0.55; margin-left: 6px; }
.nwtd .nav-links { display: flex; gap: 32px; align-items: center; font-size: 14px; font-weight: 500; }
.nwtd .nav-links a { position: relative; padding: 6px 0; opacity: 0.85; transition: opacity 0.15s ease; }
.nwtd .nav-links a:hover { opacity: 1; }
.nwtd .nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--aurora-1); }
.nwtd .nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border: 1px solid rgba(245, 241, 232, 0.22); border-radius: 999px; font-size: 13px; font-weight: 600; transition: all 0.15s ease; }
.nwtd .nav-cta:hover { background: var(--snow); color: var(--ink); border-color: var(--snow); }
.nwtd .nav-burger { display: none; }

@media (max-width: 880px) {
  .nwtd .nav-links { display: none; }
  .nwtd .nav-cta { display: none; }

  .nwtd .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 11px;
    margin-left: auto;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: #f5f1e8;
    position: relative;
    z-index: 210;
  }
  .nwtd .nav-burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }
  .nwtd .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nwtd .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nwtd .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nwtd .nav-mobile { position: fixed; inset: 0; z-index: 200; }
  .nwtd .nav-mobile[hidden] { display: none; }
  .nwtd .nav-mobile-backdrop { position: absolute; inset: 0; background: rgba(4, 10, 18, 0.62); }
  .nwtd .nav-mobile-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    padding: 84px 22px 26px;
    background: #0b1520;
    color: #f5f1e8;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(245, 241, 232, 0.12);
  }
  .nwtd .nav-mobile-panel a {
    padding: 15px 6px;
    font-size: 17px;
    font-weight: 500;
    color: inherit;
    border-bottom: 1px solid rgba(245, 241, 232, 0.12);
  }
  .nwtd .nav-mobile-cta {
    margin-top: 18px;
    text-align: center;
    background: #5fe7b5;
    color: #0b1520;
    border-radius: 999px;
    border-bottom: 0;
    font-weight: 700;
  }
}

/* ----- Hero ----- */

.nwtd .hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; isolation: isolate; padding-bottom: 80px; }
.nwtd .hero-sky {
  position: absolute; inset: 0; z-index: -3;
  background:
    radial-gradient(ellipse 90% 60% at 50% 100%, #173144 0%, transparent 65%),
    radial-gradient(ellipse 70% 50% at 80% 20%, #1d2a52 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 15% 10%, #2a1d4a 0%, transparent 55%),
    linear-gradient(180deg, var(--sky-1) 0%, var(--sky-2) 55%, var(--sky-3) 100%);
}
.nwtd .hero-stars {
  position: absolute; inset: 0; z-index: -2;
  background-image:
    radial-gradient(1px 1px at 14% 18%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 22% 8%, rgba(255,255,255,0.7) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 34% 22%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 48% 11%, rgba(255,255,255,0.6) 50%, transparent 100%),
    radial-gradient(1px 1px at 58% 25%, #fff 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 67% 6%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 76% 20%, rgba(255,255,255,0.5) 50%, transparent 100%),
    radial-gradient(1px 1px at 84% 14%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 92% 28%, rgba(255,255,255,0.7) 50%, transparent 100%),
    radial-gradient(1px 1px at 6% 32%, rgba(255,255,255,0.55) 50%, transparent 100%),
    radial-gradient(1px 1px at 41% 3%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 28% 40%, rgba(255,255,255,0.45) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 88% 38%, rgba(255,255,255,0.6) 50%, transparent 100%);
  animation: nwtd-starshimmer 8s ease-in-out infinite;
}
@keyframes nwtd-starshimmer { 0%, 100% { opacity: 0.85; } 50% { opacity: 1; } }
.nwtd .hero-aurora { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.nwtd .hero-fjord { position: absolute; left: 0; right: 0; bottom: 0; height: 56vh; z-index: 0; pointer-events: none; }
.nwtd .hero-fjord svg { width: 100%; height: 100%; display: block; }
.nwtd .hero-content { position: relative; z-index: 2; padding-top: 120px; }
.nwtd .hero-eyebrow-row { display: flex; align-items: center; gap: 18px; margin-bottom: 32px; }
.nwtd .hero-eyebrow-row::after { content: ""; flex: 1; max-width: 80px; height: 1px; background: linear-gradient(90deg, var(--aurora-1), transparent); }
.nwtd .hero-title { font-family: var(--font-display); font-weight: 300; font-size: clamp(48px, 8.5vw, 132px); line-height: 0.95; letter-spacing: -0.025em; margin: 0; max-width: 14ch; text-wrap: balance; }
.nwtd .hero-title em { font-style: italic; font-weight: 400; color: var(--aurora-1); }
.nwtd .hero-meta { margin-top: 40px; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end; max-width: 920px; }
.nwtd .hero-sub { font-size: 17px; line-height: 1.55; max-width: 46ch; color: rgba(245, 241, 232, 0.78); }
.nwtd .hero-coord { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--ice); opacity: 0.55; text-align: right; white-space: nowrap; }
.nwtd .hero-coord span { display: block; }
@media (max-width: 720px) { .nwtd .hero-meta { grid-template-columns: 1fr; } .nwtd .hero-coord { text-align: left; } }
.nwtd .hero-search { margin-top: 56px; background: rgba(245, 241, 232, 0.06); backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%); border: 1px solid rgba(245, 241, 232, 0.12); border-radius: 16px; padding: 8px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 0.9fr auto; gap: 0; max-width: 920px; align-items: stretch; }
.nwtd .hero-search-field { padding: 16px 22px; border-right: 1px solid rgba(245, 241, 232, 0.08); display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.nwtd .hero-search-field:last-of-type { border-right: 0; }
.nwtd .hero-search-field label { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ice); opacity: 0.7; }
.nwtd .hero-search-field input, .nwtd .hero-search-field select { background: none; border: 0; color: var(--snow); font: inherit; font-size: 15px; font-weight: 500; padding: 2px 0; width: 100%; outline: none; }
.nwtd .hero-search-field input::placeholder { color: rgba(245, 241, 232, 0.45); }
.nwtd .hero-search-field select option { background: var(--bg-2); color: var(--snow); }
.nwtd .hero-search-btn { margin: 4px; padding: 0 28px; background: var(--snow); color: var(--ink); font-weight: 600; font-size: 14px; letter-spacing: 0.02em; border-radius: 10px; display: inline-flex; align-items: center; gap: 8px; transition: all 0.15s ease; }
.nwtd .hero-search-btn:hover { background: var(--aurora-1); }
@media (max-width: 880px) { .nwtd .hero-search { grid-template-columns: 1fr 1fr; } .nwtd .hero-search-btn { grid-column: span 2; padding: 16px; } }

/* ----- Sections ----- */

.nwtd .section { padding: 120px 0; position: relative; }
.nwtd .section.cream { background: var(--cream); color: var(--ink); }
.nwtd .section.cream .eyebrow { color: var(--rust); }
.nwtd .section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 56px; }
.nwtd .section-head h2 { font-family: var(--font-display); font-weight: 300; font-size: clamp(36px, 5vw, 64px); line-height: 1; letter-spacing: -0.02em; margin: 16px 0 0; max-width: 14ch; }
.nwtd .section-head h2 em { font-style: italic; }
.nwtd .section-head .lede { font-size: 16px; line-height: 1.6; max-width: 44ch; opacity: 0.78; }
@media (max-width: 720px) { .nwtd .section-head { grid-template-columns: 1fr; gap: 24px; } }

/* ----- Image placeholder slots ----- */

.nwtd .img-slot {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-soft));
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.nwtd .img-slot::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, var(--aurora-2) 0%, transparent 50%), radial-gradient(circle at 70% 80%, var(--aurora-1) 0%, transparent 60%);
  opacity: 0.18;
}
.nwtd .img-slot.fjord { background: linear-gradient(160deg, #1a3845, #0e2030, #050a14); }
.nwtd .img-slot.fjord::before { background: radial-gradient(circle at 50% 30%, var(--ice) 0%, transparent 70%); opacity: 0.12; }
.nwtd .img-slot.cream { background: linear-gradient(135deg, var(--cream-2), var(--ochre)); }
.nwtd .img-slot.cream::before { background: radial-gradient(circle at 60% 30%, var(--snow) 0%, transparent 60%); opacity: 0.3; }
.nwtd .img-slot.arctic { background: linear-gradient(160deg, var(--aurora-2), var(--fjord-dk), #050a14); }
.nwtd .img-slot.arctic::before { background: radial-gradient(circle at 40% 20%, var(--aurora-1) 0%, transparent 65%); opacity: 0.25; }
.nwtd .img-slot.bryggen { background: linear-gradient(180deg, var(--rust) 0%, var(--ochre) 50%, var(--gold) 100%); }
.nwtd .img-slot .label {
  position: relative;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--snow);
  opacity: 0.5;
  padding: 6px 14px;
  background: rgba(0,0,0,0.3);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* ----- Destinations grid ----- */

.nwtd .dest-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-auto-rows: 280px; gap: 16px; }
.nwtd .dest-card { position: relative; border-radius: 14px; overflow: hidden; background: var(--bg-soft); cursor: pointer; isolation: isolate; }
.nwtd .dest-card.feature { grid-row: span 2; }
.nwtd .dest-card.wide { grid-column: span 2; }
.nwtd .dest-card .slot-wrap { position: absolute; inset: 0; }
.nwtd .dest-card .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,20,32,0) 30%, rgba(11,20,32,0.85) 100%); z-index: 1; pointer-events: none; transition: opacity 0.3s ease; }
.nwtd .dest-card:hover .scrim { opacity: 0.9; }
.nwtd .dest-card .meta { position: absolute; inset: auto 0 0 0; padding: 24px 26px; z-index: 2; color: var(--snow); display: flex; flex-direction: column; gap: 8px; }
.nwtd .dest-card .tag { align-self: flex-start; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 10px; background: rgba(11,20,32,0.6); backdrop-filter: blur(8px); border: 1px solid rgba(245,241,232,0.15); border-radius: 999px; color: var(--aurora-1); }
.nwtd .dest-card .tag.warm { color: var(--ochre); }
.nwtd .dest-card .tag.cold { color: var(--aurora-4); }
.nwtd .dest-card .tag .pip { width: 5px; height: 5px; border-radius: 50%; background: currentColor; display: inline-block; }
.nwtd .dest-card .name { font-family: var(--font-display); font-weight: 400; font-size: clamp(22px, 2.4vw, 36px); line-height: 1.05; letter-spacing: -0.01em; margin: 0; }
.nwtd .dest-card.feature .name { font-size: clamp(32px, 3.4vw, 52px); }
.nwtd .dest-card .name em { font-style: italic; color: var(--aurora-1); }
.nwtd .dest-card .sub { display: flex; gap: 14px; font-size: 12px; letter-spacing: 0.04em; opacity: 0.85; font-family: var(--font-mono); text-transform: uppercase; }
.nwtd .dest-card .arrow { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 50%; background: rgba(245,241,232,0.16); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; z-index: 2; transition: all 0.2s ease; color: var(--snow); }
.nwtd .dest-card:hover .arrow { background: var(--snow); color: var(--ink); transform: translate(2px, -2px); }
@media (max-width: 880px) { .nwtd .dest-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; } .nwtd .dest-card.feature { grid-row: span 1; } .nwtd .dest-card.wide { grid-column: span 2; } }
@media (max-width: 560px) { .nwtd .dest-grid { grid-template-columns: 1fr; } .nwtd .dest-card.wide { grid-column: span 1; } }

/* ----- Bryggen feature ----- */

.nwtd .bryggen { background: var(--rust); color: var(--snow); padding: 0; position: relative; overflow: hidden; }
.nwtd .bryggen-wrap { display: grid; grid-template-columns: 1.1fr 1fr; min-height: 620px; }
@media (max-width: 880px) { .nwtd .bryggen-wrap { grid-template-columns: 1fr; } }
.nwtd .bryggen-photo { background: var(--ink-soft); position: relative; overflow: hidden; }
.nwtd .bryggen-photo .stripes { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.nwtd .bryggen-photo .stripes svg { width: 100%; height: 100%; }
.nwtd .bryggen-body { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; position: relative; }
@media (max-width: 720px) { .nwtd .bryggen-body { padding: 56px 32px; } }
.nwtd .bryggen-body .eyebrow { color: var(--gold); }
.nwtd .bryggen-body h2 { font-family: var(--font-display); font-weight: 300; font-size: clamp(40px, 6vw, 84px); line-height: 0.95; letter-spacing: -0.025em; margin: 18px 0 24px; }
.nwtd .bryggen-body h2 em { font-style: italic; color: var(--gold); }
.nwtd .bryggen-body p { font-size: 16px; line-height: 1.65; max-width: 50ch; opacity: 0.92; margin: 0 0 16px; }
.nwtd .bryggen-quote { font-family: var(--font-display); font-style: italic; font-size: 22px; line-height: 1.4; border-left: 2px solid var(--gold); padding-left: 18px; margin: 32px 0; max-width: 38ch; opacity: 0.92; }
.nwtd .bryggen-cta { display: flex; gap: 12px; margin-top: 16px; }
.nwtd .bryggen .btn-primary { background: var(--snow); color: var(--rust); }
.nwtd .bryggen .btn-primary:hover { background: var(--gold); color: var(--ink); }
.nwtd .bryggen .btn-ghost { border-color: rgba(245,241,232,0.4); }
.nwtd .bryggen-stamp { position: absolute; top: 32px; right: 32px; width: 110px; height: 110px; }
.nwtd .bryggen-stamp svg { width: 100%; height: 100%; animation: nwtd-spin 32s linear infinite; }
@keyframes nwtd-spin { to { transform: rotate(360deg); } }

/* ----- Hotels ----- */

.nwtd .hotel-tabs { display: flex; gap: 4px; margin-bottom: 32px; border-bottom: 1px solid rgba(11,20,32,0.12); }
.nwtd .hotel-tab { padding: 12px 20px; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: rgba(11,20,32,0.55); position: relative; transition: color 0.15s ease; }
.nwtd .hotel-tab:hover { color: var(--ink); }
.nwtd .hotel-tab.active { color: var(--ink); }
.nwtd .hotel-tab.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--rust); }
.nwtd .hotel-tab .count { margin-left: 6px; font-size: 11px; opacity: 0.6; font-weight: 500; }
.nwtd .hotel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 1080px) { .nwtd .hotel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .nwtd .hotel-grid { grid-template-columns: 1fr; } }
.nwtd .hotel-card { display: flex; flex-direction: column; gap: 16px; cursor: pointer; }
.nwtd .hotel-card .photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 8px; background: var(--cream-2); }
.nwtd .hotel-card .badge { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 10px; background: var(--snow); border-radius: 999px; color: var(--rust); }
.nwtd .hotel-card .badge.gold { background: var(--ink); color: var(--gold); }
.nwtd .hotel-card .heart { position: absolute; top: 14px; right: 14px; z-index: 2; width: 32px; height: 32px; border-radius: 50%; background: rgba(245, 241, 232, 0.9); display: flex; align-items: center; justify-content: center; color: var(--ink); transition: all 0.15s ease; }
.nwtd .hotel-card .heart:hover { background: var(--rust); color: var(--snow); }
.nwtd .hotel-card .heart.on { background: var(--rust); color: var(--snow); }
.nwtd .hotel-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.nwtd .hotel-loc { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(11,20,32,0.55); display: flex; align-items: center; gap: 6px; }
.nwtd .hotel-rating { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; }
.nwtd .hotel-rating svg { width: 14px; height: 14px; color: var(--gold); }
.nwtd .hotel-name { font-family: var(--font-display); font-weight: 400; font-size: 24px; line-height: 1.15; letter-spacing: -0.01em; margin: 0; }
.nwtd .hotel-name em { font-style: italic; }
.nwtd .hotel-tags { display: flex; gap: 12px; font-size: 12px; color: rgba(11,20,32,0.7); }
.nwtd .hotel-tags span { display: inline-flex; align-items: center; gap: 5px; }
.nwtd .hotel-price { display: flex; justify-content: space-between; align-items: end; padding-top: 12px; border-top: 1px solid rgba(11,20,32,0.1); }
.nwtd .hotel-price .from { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(11,20,32,0.55); }
.nwtd .hotel-price .num { font-family: var(--font-display); font-size: 28px; font-weight: 500; letter-spacing: -0.01em; line-height: 1; }
.nwtd .hotel-price .strike { font-family: var(--font-body); font-size: 13px; text-decoration: line-through; color: rgba(11,20,32,0.4); margin-left: 8px; font-weight: 500; }
.nwtd .hotel-price .unit { font-size: 12px; opacity: 0.6; margin-left: 4px; }
.nwtd .hotel-book { font-size: 13px; font-weight: 600; color: var(--rust); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.15s ease; }
.nwtd .hotel-card:hover .hotel-book { gap: 10px; }

/* ----- Hikes ----- */

.nwtd .hikes-wrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 960px) { .nwtd .hikes-wrap { grid-template-columns: 1fr; } }
.nwtd .hikes-list { display: flex; flex-direction: column; }
.nwtd .hike-row { display: grid; grid-template-columns: 60px 1fr auto; gap: 24px; padding: 24px 0; border-top: 1px solid rgba(245,241,232,0.08); cursor: pointer; position: relative; transition: all 0.2s ease; align-items: center; text-align: left; }
.nwtd .hike-row:last-child { border-bottom: 1px solid rgba(245,241,232,0.08); }
.nwtd .hike-row:hover, .nwtd .hike-row.active { padding-left: 12px; }
.nwtd .hike-row.active::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--aurora-1); }
.nwtd .hike-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ice); opacity: 0.55; }
.nwtd .hike-info h3 { font-family: var(--font-display); font-weight: 400; font-size: 28px; letter-spacing: -0.01em; margin: 0 0 6px; }
.nwtd .hike-info h3 em { font-style: italic; }
.nwtd .hike-info .sub { display: flex; gap: 16px; font-size: 12px; font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; color: var(--ice); opacity: 0.7; }
.nwtd .hike-info .sub .dot { display: inline-flex; align-items: center; gap: 6px; }
.nwtd .hike-info .sub .pip { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.4; }
.nwtd .hike-difficulty { display: flex; gap: 3px; align-items: center; }
.nwtd .hike-difficulty span { width: 6px; height: 18px; background: rgba(245,241,232,0.15); border-radius: 1px; }
.nwtd .hike-difficulty span.on { background: var(--aurora-1); }
.nwtd .hike-difficulty span.on.hard { background: var(--aurora-3); }
.nwtd .hike-difficulty span.on.medium { background: var(--gold); }
.nwtd .hike-detail { position: sticky; top: 100px; background: var(--bg-2); border: 1px solid rgba(245,241,232,0.08); border-radius: 14px; overflow: hidden; }
.nwtd .hike-detail .photo { aspect-ratio: 4 / 5; position: relative; background: var(--bg-soft); }
.nwtd .hike-detail .photo .label { position: absolute; bottom: 16px; left: 16px; z-index: 2; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--snow); background: rgba(11,20,32,0.6); backdrop-filter: blur(8px); padding: 6px 10px; border-radius: 999px; }
.nwtd .hike-detail .body { padding: 28px; }
.nwtd .hike-detail h4 { font-family: var(--font-display); font-weight: 400; font-size: 32px; letter-spacing: -0.01em; margin: 0 0 4px; }
.nwtd .hike-detail h4 em { font-style: italic; }
.nwtd .hike-detail .where { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ice); opacity: 0.7; margin-bottom: 18px; }
.nwtd .hike-detail p { font-size: 14px; line-height: 1.6; opacity: 0.82; margin: 0 0 24px; }
.nwtd .hike-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: rgba(245,241,232,0.08); border-radius: 8px; overflow: hidden; margin-bottom: 24px; }
.nwtd .hike-stat { background: var(--bg-2); padding: 14px 16px; }
.nwtd .hike-stat .v { font-family: var(--font-display); font-size: 22px; font-weight: 500; line-height: 1; }
.nwtd .hike-stat .l { margin-top: 4px; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ice); opacity: 0.7; }
.nwtd .hike-cta { display: flex; gap: 8px; }

/* ----- Buttons ----- */

.nwtd .btn { padding: 12px 22px; border-radius: 999px; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: 8px; transition: all 0.15s ease; }
.nwtd .btn-primary { background: var(--snow); color: var(--ink); }
.nwtd .btn-primary:hover { background: var(--aurora-1); }
.nwtd .btn-ghost { border: 1px solid rgba(245,241,232,0.2); }
.nwtd .btn-ghost:hover { border-color: var(--snow); }
.nwtd .btn-dark { background: var(--ink); color: var(--snow); }
.nwtd .btn-dark:hover { background: var(--rust); }

/* ----- Aurora forecast ----- */

.nwtd .forecast { background: linear-gradient(180deg, var(--bg) 0%, #06101F 100%); position: relative; overflow: hidden; }
.nwtd .forecast::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 30% at 30% 40%, rgba(95,231,181,0.18) 0%, transparent 60%), radial-gradient(ellipse 50% 30% at 75% 60%, rgba(167,139,250,0.16) 0%, transparent 60%); filter: blur(40px); pointer-events: none; }
.nwtd .forecast-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; position: relative; }
@media (max-width: 880px) { .nwtd .forecast-wrap { grid-template-columns: 1fr; } }
.nwtd .forecast-meta h2 { font-family: var(--font-display); font-weight: 300; font-size: clamp(36px, 5vw, 64px); line-height: 1; letter-spacing: -0.02em; margin: 16px 0; }
.nwtd .forecast-meta h2 em { font-style: italic; color: var(--aurora-1); }
.nwtd .forecast-meta p { font-size: 15px; line-height: 1.6; opacity: 0.78; max-width: 42ch; }
.nwtd .kp-meter { margin-top: 32px; display: flex; align-items: center; gap: 24px; }
.nwtd .kp-dial { position: relative; width: 130px; height: 130px; }
.nwtd .kp-dial svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.nwtd .kp-dial-num { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.nwtd .kp-dial-num .v { font-family: var(--font-display); font-size: 48px; font-weight: 500; line-height: 1; letter-spacing: -0.02em; }
.nwtd .kp-dial-num .l { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--aurora-1); margin-top: 2px; }
.nwtd .kp-info .label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--aurora-1); margin-bottom: 6px; }
.nwtd .kp-info .state { font-family: var(--font-display); font-size: 32px; font-weight: 400; letter-spacing: -0.01em; line-height: 1; }
.nwtd .kp-info .when { margin-top: 8px; font-size: 13px; opacity: 0.7; }
.nwtd .forecast-cities { background: rgba(245,241,232,0.04); border: 1px solid rgba(245,241,232,0.08); border-radius: 16px; padding: 8px; backdrop-filter: blur(20px); }
.nwtd .fc-head { display: grid; grid-template-columns: 1.4fr repeat(5, 1fr); padding: 16px 20px; border-bottom: 1px solid rgba(245,241,232,0.08); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ice); opacity: 0.6; text-align: center; }
.nwtd .fc-head > div:first-child { text-align: left; }
.nwtd .fc-row { display: grid; grid-template-columns: 1.4fr repeat(5, 1fr); padding: 14px 20px; align-items: center; border-bottom: 1px solid rgba(245,241,232,0.05); }
.nwtd .fc-row:last-child { border-bottom: 0; }
.nwtd .fc-city { display: flex; align-items: center; gap: 10px; }
.nwtd .fc-city .lat { font-family: var(--font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.01em; min-width: 100px; }
.nwtd .fc-city .lat em { font-style: italic; }
.nwtd .fc-cell { display: flex; justify-content: center; align-items: center; }
.nwtd .fc-bar { width: 22px; height: 38px; border-radius: 4px; background: rgba(245,241,232,0.06); position: relative; overflow: hidden; }
.nwtd .fc-bar::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: var(--fill, 0%); background: linear-gradient(180deg, var(--aurora-1), var(--aurora-2)); }
.nwtd .fc-bar[data-level="3"]::after, .nwtd .fc-bar[data-level="4"]::after, .nwtd .fc-bar[data-level="5"]::after { background: linear-gradient(180deg, var(--aurora-3), var(--aurora-2), var(--aurora-1)); }

/* ----- Cities ----- */

.nwtd .cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 960px) { .nwtd .cities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .nwtd .cities-grid { grid-template-columns: 1fr; } }
.nwtd .city-card { border: 1px solid rgba(11,20,32,0.1); border-radius: 12px; padding: 0; overflow: hidden; background: var(--snow); display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; cursor: pointer; }
.nwtd .city-card:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -20px rgba(11,20,32,0.25); }
.nwtd .city-card .photo { aspect-ratio: 16 / 11; background: var(--cream-2); position: relative; overflow: hidden; }
.nwtd .city-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.nwtd .city-card .region { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rust); }
.nwtd .city-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 28px; letter-spacing: -0.01em; margin: 0; line-height: 1; }
.nwtd .city-card h3 em { font-style: italic; }
.nwtd .city-card .blurb { font-size: 14px; line-height: 1.55; opacity: 0.78; flex: 1; }
.nwtd .city-card .footer-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; padding-top: 14px; border-top: 1px solid rgba(11,20,32,0.08); font-size: 12px; }
.nwtd .city-card .footer-meta .note { opacity: 0.6; font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; font-size: 10px; }
.nwtd .city-card .footer-meta .deals { color: var(--rust); font-weight: 600; }

/* ----- Deals strip ----- */

.nwtd .deals { background: var(--ochre); color: var(--snow); padding: 72px 0; position: relative; overflow: hidden; }
.nwtd .deals::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0 60px, rgba(255,255,255,0.03) 60px 61px); pointer-events: none; }
.nwtd .deals-wrap { display: grid; grid-template-columns: auto 1fr auto; gap: 56px; align-items: center; position: relative; }
@media (max-width: 880px) { .nwtd .deals-wrap { grid-template-columns: 1fr; gap: 24px; } }
.nwtd .deals h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(32px, 4vw, 52px); line-height: 1; letter-spacing: -0.02em; margin: 8px 0; max-width: 12ch; }
.nwtd .deals h2 em { font-style: italic; }
.nwtd .deals-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.85; }
.nwtd .deals-marquee { display: flex; gap: 32px; align-items: center; overflow: hidden; mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.nwtd .deals-track { display: flex; gap: 48px; animation: nwtd-marquee 38s linear infinite; flex-shrink: 0; }
@keyframes nwtd-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.nwtd .deal-pill { display: inline-flex; align-items: center; gap: 12px; white-space: nowrap; font-size: 14px; font-weight: 500; }
.nwtd .deal-pill .pct { font-family: var(--font-display); font-weight: 500; font-size: 26px; letter-spacing: -0.01em; }
.nwtd .deal-pill .star { width: 6px; height: 6px; background: var(--snow); border-radius: 50%; opacity: 0.5; }

/* ----- Footer ----- */

.nwtd .nwtd-footer { background: var(--bg); padding: 100px 0 40px; position: relative; }
.nwtd .footer-top { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; padding-bottom: 60px; border-bottom: 1px solid rgba(245,241,232,0.08); }
@media (max-width: 720px) { .nwtd .footer-top { grid-template-columns: 1fr; gap: 40px; } }
.nwtd .footer-news h3 { font-family: var(--font-display); font-weight: 300; font-size: clamp(32px, 4vw, 52px); line-height: 1.0; letter-spacing: -0.02em; margin: 12px 0 16px; max-width: 18ch; }
.nwtd .footer-news h3 em { font-style: italic; color: var(--aurora-1); }
.nwtd .footer-news p { opacity: 0.75; max-width: 40ch; }
.nwtd .footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; font-size: 14px; }
@media (max-width: 540px) { .nwtd .footer-cols { grid-template-columns: repeat(2, 1fr); } }
.nwtd .footer-cols h2 { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ice); opacity: 0.55; margin: 0 0 16px; font-weight: 600; }
.nwtd .footer-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.nwtd .footer-cols a { opacity: 0.82; }
.nwtd .footer-cols a:hover { opacity: 1; color: var(--aurora-1); }
.nwtd .footer-bot { padding-top: 40px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; font-family: var(--font-mono); letter-spacing: 0.06em; color: var(--ice); opacity: 0.5; flex-wrap: wrap; gap: 16px; }
.nwtd .footer-bot .links { display: flex; gap: 24px; }

/* ----- Innholds-typografi for undersider (.container) -----
   SiteShell-wrappede sider arver mørk natt-bg + Cormorant fra .nwtd. */

.nwtd .container {
  font-family: var(--font-body);
  color: var(--snow);
}
.nwtd .container h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--snow);
}
.nwtd .container h1 em { font-style: italic; color: var(--aurora-1); font-weight: 300; }
.nwtd .container h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 36px 0 14px;
  color: var(--snow);
}
.nwtd .container h2 em { font-style: italic; color: var(--aurora-1); font-weight: 300; }
.nwtd .container h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  margin: 24px 0 10px;
  color: var(--snow);
}
.nwtd .container p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 16px;
  color: var(--cream);
  opacity: 0.92;
}
.nwtd .container a {
  color: var(--aurora-1);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.nwtd .container a:hover { color: var(--aurora-2); }
.nwtd .container ul,
.nwtd .container ol {
  list-style: revert;
  padding-left: 24px;
  margin: 0 0 18px;
  color: var(--cream);
}
.nwtd .container li { margin-bottom: 6px; line-height: 1.6; }
.nwtd .container details {
  background: var(--bg-soft);
  border: 1px solid rgba(245, 241, 232, 0.12);
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 10px;
  color: var(--snow);
}
.nwtd .container summary {
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  color: var(--snow);
}
.nwtd .container blockquote {
  border-left: 3px solid var(--gold);
  margin: 24px 0;
  padding: 4px 0 4px 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--snow);
}
.nwtd .container table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
  color: var(--cream);
}
.nwtd .container th,
.nwtd .container td {
  border-bottom: 1px solid rgba(245, 241, 232, 0.12);
  padding: 12px 14px;
  text-align: left;
}
.nwtd .container th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ice);
  opacity: 0.7;
}
.nwtd .container hr {
  border: 0;
  border-top: 1px solid rgba(245, 241, 232, 0.12);
  margin: 32px 0;
}
.nwtd .container code {
  font-family: var(--font-mono);
  font-size: 14px;
  background: var(--bg-2);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--aurora-1);
}
