@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cinzel-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/cinzel-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant_garamond-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cormorant_garamond-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/cormorant_garamond-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/plus_jakarta_sans-300-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/plus_jakarta_sans-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/plus_jakarta_sans-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/plus_jakarta_sans-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/plus_jakarta_sans-700-normal.woff2') format('woff2');
}

:root {
  --veien-bg-main: #FAF7F2;
  --veien-bg-alt: #F3ECE1;
  --veien-bg-card: #FFFFFF;
  --veien-bg-dark: #191512;
  --veien-bg-dark-surface: #241E19;
  --veien-gold-primary: #C59B4E;
  --veien-gold-light: #F0D58C;
  --veien-gold-dark: #966E22;
  --veien-gold-gradient: linear-gradient(135deg, #C59B4E 0%, #F0D58C 50%, #A87D2C 100%);
  --veien-gold-gradient-hover: linear-gradient(135deg, #D4AF37 0%, #FFF0BA 50%, #B88628 100%);
  --veien-dark-gradient: linear-gradient(180deg, #1F1914 0%, #120F0D 100%);
  --veien-text-main: #2A241E;
  --veien-text-muted: #6B6258;
  --veien-text-light: #FBF8F4;
  --veien-text-gold: #C59B4E;
  --veien-border-light: rgba(197, 155, 78, 0.25);
  --veien-border-gold: rgba(197, 155, 78, 0.5);
  --veien-shadow-sm: 0 4px 12px rgba(42, 36, 30, 0.06);
  --veien-shadow-md: 0 10px 30px rgba(42, 36, 30, 0.09);
  --veien-shadow-lg: 0 20px 45px rgba(25, 21, 18, 0.14);
  --veien-shadow-gold: 0 8px 24px rgba(197, 155, 78, 0.3);
  --veien-radius-sm: 8px;
  --veien-radius-md: 14px;
  --veien-radius-lg: 22px;
  --veien-radius-pill: 999px;
  --veien-font-heading: 'Cormorant Garamond', Georgia, serif;
  --veien-font-brand: 'Cinzel', Georgia, serif;
  --veien-font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --veien-transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--veien-font-body);
  background-color: var(--veien-bg-main);
  color: var(--veien-text-main);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  width: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--veien-transition);
}

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

.veien-wrapper {
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.veien-container {
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.veien-container-narrow {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.veien-top-bar {
  background-color: #120F0D;
  color: var(--veien-text-light);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(197, 155, 78, 0.2);
  padding: 8px 0;
}

.veien-top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.veien-compliance-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.veien-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(197, 155, 78, 0.12);
  border: 1px solid rgba(197, 155, 78, 0.3);
  color: var(--veien-gold-light);
  padding: 3px 10px;
  border-radius: var(--veien-radius-pill);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.veien-top-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.veien-lang-selector {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 155, 78, 0.35);
  border-radius: var(--veien-radius-pill);
  padding: 2px;
  flex-shrink: 0;
}

.veien-lang-link {
  display: inline-block;
  color: #BDB4A8;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: var(--veien-radius-pill);
  text-decoration: none;
  transition: var(--veien-transition);
  white-space: nowrap;
}

.veien-lang-link.active, .veien-lang-link:hover {
  background: var(--veien-gold-gradient);
  color: #191512;
}

.veien-header {
  background: rgba(25, 21, 18, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(197, 155, 78, 0.25);
  width: 100%;
}

.veien-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  gap: 16px;
}

.veien-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.veien-brand-crest {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--veien-gold-primary);
  box-shadow: 0 2px 8px rgba(197, 155, 78, 0.3);
  aspect-ratio: 1/1;
  flex-shrink: 0;
}

.veien-brand-text {
  display: flex;
  flex-direction: column;
}

.veien-brand-title {
  font-family: var(--veien-font-brand);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #FFF;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.veien-brand-title span {
  color: var(--veien-gold-light);
}

.veien-brand-subtitle {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--veien-gold-primary);
  font-weight: 500;
  white-space: nowrap;
}

.veien-nav-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.veien-nav-item {
  position: relative;
  white-space: nowrap;
}

.veien-nav-link {
  color: #E6DFD5;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  letter-spacing: 0.3px;
  white-space: nowrap;
  display: inline-block;
}

.veien-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--veien-gold-gradient);
  transition: width 0.3s ease;
}

.veien-nav-link:hover, .veien-nav-link.active {
  color: var(--veien-gold-light);
}

.veien-nav-link:hover::after, .veien-nav-link.active::after {
  width: 100%;
}

.veien-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.veien-burger-btn {
  display: none;
  background: rgba(197, 155, 78, 0.08);
  border: 1px solid var(--veien-gold-primary);
  border-radius: var(--veien-radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  color: var(--veien-gold-light);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.veien-burger-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.veien-burger-line {
  width: 100%;
  height: 2px;
  background-color: var(--veien-gold-light);
  border-radius: 2px;
  transition: var(--veien-transition);
}

.veien-mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 82%;
  height: 100vh;
  background: #191512;
  border-left: 1px solid var(--veien-gold-primary);
  z-index: 2000;
  padding: 24px 18px;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.veien-mobile-drawer.open {
  right: 0;
}

.veien-mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 1999;
}

.veien-mobile-backdrop.open {
  display: block;
}

.veien-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(197, 155, 78, 0.25);
}

.veien-drawer-close {
  background: transparent;
  border: 1px solid rgba(197, 155, 78, 0.3);
  color: var(--veien-gold-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
}

.veien-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.veien-drawer-link {
  color: #E6DFD5;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: block;
}

.veien-drawer-link:hover, .veien-drawer-link.active {
  color: var(--veien-gold-light);
  padding-left: 6px;
}

.veien-drawer-footer {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.veien-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  border-radius: var(--veien-radius-pill);
  cursor: pointer;
  transition: var(--veien-transition);
  text-align: center;
  border: none;
  white-space: nowrap;
}

.veien-btn-gold {
  background: var(--veien-gold-gradient);
  color: #191512;
  box-shadow: var(--veien-shadow-gold);
}

.veien-btn-gold:hover {
  background: var(--veien-gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(197, 155, 78, 0.45);
  color: #120F0D;
}

.veien-btn-outline {
  background: transparent;
  color: #E6DFD5;
  border: 1px solid var(--veien-gold-primary);
}

.veien-btn-outline:hover {
  background: rgba(197, 155, 78, 0.15);
  color: var(--veien-gold-light);
  border-color: var(--veien-gold-light);
}

.veien-btn-dark {
  background: var(--veien-bg-dark);
  color: var(--veien-gold-light);
  border: 1px solid rgba(197, 155, 78, 0.3);
}

.veien-btn-dark:hover {
  background: var(--veien-bg-dark-surface);
  border-color: var(--veien-gold-primary);
  color: #FFF;
}

.veien-btn-sm {
  padding: 7px 16px;
  font-size: 0.82rem;
}

.veien-hero-section {
  position: relative;
  background-color: var(--veien-bg-dark);
  color: #FFF;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.veien-hero-media-wrap {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.veien-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.88);
}

.veien-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 21, 18, 0.3) 0%, rgba(25, 21, 18, 0.45) 60%, rgba(25, 21, 18, 0.85) 100%);
}

.veien-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 70px 20px 90px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.veien-hero-crest-badge {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  border: 2px solid var(--veien-gold-primary);
  aspect-ratio: 1/1;
}

.veien-hero-title {
  font-family: var(--veien-font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 14px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.6);
}

.veien-hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: #E8DCCB;
  font-weight: 300;
  max-width: 720px;
  margin-bottom: 28px;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.veien-hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.veien-arch-divider {
  position: relative;
  width: 100%;
  height: 48px;
  background-color: var(--veien-bg-main);
  margin-top: -46px;
  z-index: 20;
  clip-path: ellipse(58% 100% at 50% 100%);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.veien-arch-ornament {
  position: absolute;
  top: -12px;
  width: 26px;
  height: 26px;
  background: var(--veien-bg-main);
  border: 2px solid var(--veien-gold-primary);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(197, 155, 78, 0.3);
}

.veien-arch-ornament::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--veien-gold-primary);
}

.veien-page-header {
  background: var(--veien-bg-dark);
  color: #FFF;
  padding: 50px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(197, 155, 78, 0.25);
  text-align: center;
}

.veien-page-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: blur(2px);
}

.veien-page-header-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.veien-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #BDB4A8;
  margin-bottom: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.veien-breadcrumbs a:hover {
  color: var(--veien-gold-light);
}

.veien-breadcrumb-sep {
  color: var(--veien-gold-primary);
}

.veien-page-title {
  font-family: var(--veien-font-heading);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.veien-page-desc {
  font-size: 1rem;
  color: #DDD4C7;
  max-width: 720px;
  line-height: 1.6;
}

.veien-features-bar {
  padding: 36px 0 20px;
  background: var(--veien-bg-main);
}

.veien-features-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 18px;
}

.veien-feature-card {
  flex: 1 1 240px;
  background: var(--veien-bg-card);
  border: 1px solid var(--veien-border-light);
  border-radius: var(--veien-radius-md);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--veien-shadow-sm);
  transition: var(--veien-transition);
}

.veien-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--veien-gold-primary);
  box-shadow: var(--veien-shadow-md);
}

.veien-feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(197, 155, 78, 0.12);
  border: 1px solid rgba(197, 155, 78, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--veien-gold-dark);
  margin-bottom: 12px;
}

.veien-feature-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--veien-gold-dark);
}

.veien-feature-title {
  font-family: var(--veien-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--veien-text-main);
  margin-bottom: 6px;
}

.veien-feature-desc {
  font-size: 0.84rem;
  color: var(--veien-text-muted);
  line-height: 1.5;
}

.veien-section {
  padding: 60px 0;
}

.veien-section-alt {
  background-color: var(--veien-bg-alt);
}

.veien-section-dark {
  background-color: var(--veien-bg-dark);
  color: var(--veien-text-light);
}

.veien-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.veien-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--veien-gold-dark);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 8px;
}

.veien-section-dark .veien-section-badge {
  color: var(--veien-gold-light);
}

.veien-section-title {
  font-family: var(--veien-font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--veien-text-main);
  margin-bottom: 12px;
}

.veien-section-dark .veien-section-title {
  color: #FFF;
}

.veien-section-desc {
  font-size: 0.96rem;
  color: var(--veien-text-muted);
  line-height: 1.6;
}

.veien-section-dark .veien-section-desc {
  color: #C8BFB3;
}

.veien-cards-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
}

.veien-hotel-card {
  flex: 1 1 340px;
  max-width: 410px;
  background: var(--veien-bg-card);
  border-radius: var(--veien-radius-lg);
  border: 1px solid var(--veien-border-light);
  overflow: hidden;
  box-shadow: var(--veien-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--veien-transition);
}

.veien-hotel-card:hover {
  transform: translateY(-6px);
  border-color: var(--veien-gold-primary);
  box-shadow: var(--veien-shadow-md);
}

.veien-card-media {
  position: relative;
  width: 100%;
  height: 230px;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #241E19;
}

.veien-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  transition: transform 0.5s ease;
}

.veien-hotel-card:hover .veien-card-img {
  transform: scale(1.05);
}

.veien-card-badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(25, 21, 18, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--veien-gold-primary);
  color: var(--veien-gold-light);
  padding: 3px 10px;
  border-radius: var(--veien-radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.veien-card-rating-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--veien-gold-gradient);
  color: #191512;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: var(--veien-radius-pill);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.veien-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.veien-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--veien-text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.veien-card-location svg {
  width: 14px;
  height: 14px;
  stroke: var(--veien-gold-dark);
}

.veien-card-title {
  font-family: var(--veien-font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--veien-text-main);
  margin-bottom: 8px;
}

.veien-card-desc {
  font-size: 0.86rem;
  color: var(--veien-text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
  flex-grow: 1;
}

.veien-card-specs {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 12px 0;
  border-top: 1px solid rgba(197, 155, 78, 0.18);
  border-bottom: 1px solid rgba(197, 155, 78, 0.18);
  margin-bottom: 16px;
  font-size: 0.8rem;
}

.veien-spec-row {
  display: flex;
  justify-content: space-between;
  color: var(--veien-text-muted);
}

.veien-spec-label {
  font-weight: 500;
}

.veien-spec-value {
  font-weight: 600;
  color: var(--veien-text-main);
}

.veien-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.veien-card-btn-review {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--veien-gold-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.veien-card-btn-review:hover {
  color: var(--veien-text-main);
}

.veien-filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.veien-filter-btn {
  background: var(--veien-bg-card);
  border: 1px solid var(--veien-border-light);
  color: var(--veien-text-main);
  padding: 7px 18px;
  border-radius: var(--veien-radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--veien-transition);
}

.veien-filter-btn:hover, .veien-filter-btn.active {
  background: var(--veien-gold-gradient);
  border-color: var(--veien-gold-primary);
  color: #191512;
  box-shadow: var(--veien-shadow-sm);
}

.veien-table-responsive {
  width: 100%;
  overflow-x: auto;
  background: var(--veien-bg-card);
  border-radius: var(--veien-radius-md);
  border: 1px solid var(--veien-border-light);
  box-shadow: var(--veien-shadow-sm);
}

.veien-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.veien-table th {
  background: var(--veien-bg-dark);
  color: var(--veien-gold-light);
  font-family: var(--veien-font-brand);
  font-size: 0.82rem;
  letter-spacing: 1px;
  padding: 14px 18px;
  font-weight: 600;
}

.veien-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(197, 155, 78, 0.15);
  color: var(--veien-text-main);
}

.veien-table tr:last-child td {
  border-bottom: none;
}

.veien-table tr:nth-child(even) td {
  background: rgba(243, 236, 225, 0.4);
}

.veien-table-rating {
  font-weight: 700;
  color: var(--veien-gold-dark);
}

.veien-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.veien-faq-item {
  background: var(--veien-bg-card);
  border: 1px solid var(--veien-border-light);
  border-radius: var(--veien-radius-md);
  overflow: hidden;
  transition: var(--veien-transition);
}

.veien-faq-item:hover {
  border-color: var(--veien-gold-primary);
}

.veien-faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-family: var(--veien-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--veien-text-main);
  cursor: pointer;
}

.veien-faq-icon {
  width: 22px;
  height: 22px;
  stroke: var(--veien-gold-dark);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.veien-faq-item.active .veien-faq-icon {
  transform: rotate(180deg);
}

.veien-faq-answer {
  display: none;
  padding: 0 22px 20px;
  font-size: 0.9rem;
  color: var(--veien-text-muted);
  line-height: 1.65;
}

.veien-faq-item.active .veien-faq-answer {
  display: block;
}

.veien-article-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.veien-article-main {
  flex: 1 1 600px;
}

.veien-article-sidebar {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.veien-sidebar-widget {
  background: var(--veien-bg-card);
  border: 1px solid var(--veien-border-light);
  border-radius: var(--veien-radius-md);
  padding: 24px;
  box-shadow: var(--veien-shadow-sm);
}

.veien-widget-title {
  font-family: var(--veien-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--veien-text-main);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(197, 155, 78, 0.2);
}

.veien-sidebar-specs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.86rem;
}

.veien-legal-content {
  background: var(--veien-bg-card);
  border: 1px solid var(--veien-border-light);
  border-radius: var(--veien-radius-lg);
  padding: 36px 40px;
  box-shadow: var(--veien-shadow-sm);
}

.veien-legal-section {
  margin-bottom: 28px;
}

.veien-legal-section:last-child {
  margin-bottom: 0;
}

.veien-legal-heading {
  font-family: var(--veien-font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--veien-text-main);
  margin-bottom: 10px;
}

.veien-legal-text {
  font-size: 0.92rem;
  color: var(--veien-text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.veien-legal-list {
  margin: 10px 0 14px 18px;
  list-style: disc;
}

.veien-legal-list li {
  font-size: 0.92rem;
  color: var(--veien-text-muted);
  margin-bottom: 6px;
  line-height: 1.6;
}

.veien-contact-card {
  background: var(--veien-bg-card);
  border: 1px solid var(--veien-border-light);
  border-radius: var(--veien-radius-lg);
  padding: 36px;
  box-shadow: var(--veien-shadow-sm);
}

.veien-form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.veien-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--veien-text-main);
}

.veien-input, .veien-textarea, .veien-select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(197, 155, 78, 0.35);
  border-radius: var(--veien-radius-sm);
  background: #FFF;
  color: var(--veien-text-main);
  outline: none;
  transition: var(--veien-transition);
}

.veien-input:focus, .veien-textarea:focus, .veien-select:focus {
  border-color: var(--veien-gold-primary);
  box-shadow: 0 0 0 3px rgba(197, 155, 78, 0.15);
}

.veien-textarea {
  min-height: 120px;
  resize: vertical;
}

.veien-error-msg {
  font-size: 0.76rem;
  color: #C0392B;
  display: none;
}

.veien-success-alert {
  display: none;
  background: #EAF7EE;
  border: 1px solid #73C991;
  color: #195E2B;
  padding: 14px 18px;
  border-radius: var(--veien-radius-md);
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.veien-rg-banner {
  background: #241E19;
  border-top: 2px solid var(--veien-gold-primary);
  border-bottom: 1px solid rgba(197, 155, 78, 0.2);
  padding: 26px 0;
  color: #DDD4C7;
}

.veien-rg-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.veien-rg-info {
  flex: 1 1 450px;
}

.veien-rg-title {
  font-family: var(--veien-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--veien-gold-light);
  margin-bottom: 6px;
}

.veien-rg-text {
  font-size: 0.84rem;
  color: #BDB4A8;
  line-height: 1.55;
}

.veien-rg-helplines {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.veien-rg-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--veien-gold-primary);
  color: #FFF;
  padding: 5px 12px;
  border-radius: var(--veien-radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
}

.veien-footer {
  background: #15120F;
  color: #DDD4C7;
  padding: 60px 0 26px;
  border-top: 1px solid rgba(197, 155, 78, 0.3);
}

.veien-footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  margin-bottom: 44px;
}

.veien-footer-col {
  flex: 1 1 220px;
}

.veien-footer-brand-col {
  flex: 2 1 300px;
}

.veien-footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.veien-footer-about {
  font-size: 0.86rem;
  color: #A9A094;
  line-height: 1.6;
  margin-bottom: 18px;
}

.veien-footer-company-info {
  font-size: 0.8rem;
  color: #8E8579;
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 14px;
  border-radius: var(--veien-radius-sm);
  border-left: 2px solid var(--veien-gold-primary);
}

.veien-footer-heading {
  font-family: var(--veien-font-brand);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--veien-gold-light);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.veien-footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.veien-footer-link {
  color: #BDB4A8;
  font-size: 0.86rem;
}

.veien-footer-link:hover {
  color: var(--veien-gold-light);
  padding-left: 4px;
}

.veien-footer-disclaimer-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(197, 155, 78, 0.2);
  border-radius: var(--veien-radius-md);
  padding: 18px;
  margin-bottom: 26px;
  font-size: 0.78rem;
  color: #9C9387;
  line-height: 1.6;
}

.veien-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: #7E766C;
}

.veien-footer-legal-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.veien-footer-legal-links a:hover {
  color: var(--veien-gold-light);
}

@media (max-width: 1200px) {
  .veien-nav-menu {
    display: none;
  }
  .veien-burger-btn {
    display: flex;
  }
  .veien-mobile-drawer {
    display: flex;
  }
}

@media (max-width: 768px) {
  .veien-container, .veien-container-narrow {
    padding-left: 12px;
    padding-right: 12px;
  }
  .veien-top-bar {
    padding: 5px 0;
  }
  .veien-top-bar-inner {
    justify-content: space-between;
    gap: 6px;
  }
  .veien-compliance-badges {
    gap: 4px;
  }
  .veien-badge-pill {
    padding: 2px 6px;
    font-size: 0.65rem;
  }
  .veien-badge-pill:nth-child(3) {
    display: none;
  }
  .veien-lang-link {
    padding: 2px 7px;
    font-size: 0.68rem;
  }
  .veien-navbar {
    padding: 8px 0;
    gap: 8px;
  }
  .veien-brand-crest {
    width: 32px;
    height: 32px;
  }
  .veien-brand-title {
    font-size: 0.98rem;
    letter-spacing: 0.6px;
  }
  .veien-brand-subtitle {
    font-size: 0.5rem;
    letter-spacing: 0.8px;
  }
  .veien-header-actions .veien-btn {
    display: none;
  }
  .veien-burger-btn {
    padding: 6px 8px;
  }
  .veien-hero-media-wrap {
    min-height: 380px;
  }
  .veien-hero-content {
    padding: 30px 10px 50px;
  }
  .veien-hero-crest-badge {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }
  .veien-hero-title {
    font-size: 1.75rem;
    line-height: 1.18;
    margin-bottom: 10px;
  }
  .veien-hero-subtitle {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 18px;
    max-width: 95%;
  }
  .veien-hero-cta-group {
    gap: 8px;
  }
  .veien-btn {
    padding: 9px 18px;
    font-size: 0.84rem;
  }
  .veien-section {
    padding: 36px 0;
  }
  .veien-section-header {
    margin-bottom: 24px;
  }
  .veien-section-badge {
    font-size: 0.68rem;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
  }
  .veien-section-title {
    font-size: 1.45rem;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .veien-section-desc {
    font-size: 0.84rem;
    line-height: 1.5;
  }
  .veien-features-bar {
    padding: 24px 0 10px;
  }
  .veien-features-list {
    gap: 12px;
    flex-direction: column;
  }
  .veien-feature-card {
    padding: 14px 12px;
    border-radius: var(--veien-radius-sm);
  }
  .veien-feature-icon-wrap {
    width: 38px;
    height: 38px;
    margin-bottom: 6px;
  }
  .veien-feature-icon-wrap svg {
    width: 18px;
    height: 18px;
  }
  .veien-feature-title {
    font-size: 1.05rem;
    margin-bottom: 3px;
  }
  .veien-feature-desc {
    font-size: 0.78rem;
    line-height: 1.4;
  }
  .veien-cards-flex {
    gap: 16px;
  }
  .veien-hotel-card {
    max-width: 100%;
    border-radius: var(--veien-radius-md);
  }
  .veien-card-media {
    height: 180px;
  }
  .veien-card-badge-top {
    top: 10px;
    left: 10px;
    padding: 2px 8px;
    font-size: 0.66rem;
  }
  .veien-card-rating-badge {
    top: 10px;
    right: 10px;
    padding: 2px 8px;
    font-size: 0.72rem;
  }
  .veien-card-body {
    padding: 14px 12px;
  }
  .veien-card-location {
    font-size: 0.74rem;
    margin-bottom: 4px;
  }
  .veien-card-title {
    font-size: 1.2rem;
    line-height: 1.25;
    margin-bottom: 6px;
  }
  .veien-card-desc {
    font-size: 0.8rem;
    line-height: 1.45;
    margin-bottom: 10px;
  }
  .veien-card-specs {
    padding: 8px 0;
    gap: 5px;
    font-size: 0.75rem;
    margin-bottom: 12px;
  }
  .veien-card-btn-review {
    font-size: 0.78rem;
  }
  .veien-filter-bar {
    gap: 6px;
    margin-bottom: 22px;
  }
  .veien-filter-btn {
    padding: 5px 12px;
    font-size: 0.76rem;
  }
  .veien-page-header {
    padding: 32px 0 38px;
  }
  .veien-breadcrumbs {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }
  .veien-page-title {
    font-size: 1.55rem;
    line-height: 1.2;
    margin-bottom: 6px;
  }
  .veien-page-desc {
    font-size: 0.84rem;
    line-height: 1.5;
  }
  .veien-legal-content {
    padding: 16px 14px;
    border-radius: var(--veien-radius-md);
  }
  .veien-legal-section {
    margin-bottom: 20px;
  }
  .veien-legal-heading {
    font-size: 1.15rem;
    margin-bottom: 6px;
  }
  .veien-legal-text {
    font-size: 0.82rem;
    line-height: 1.55;
    margin-bottom: 8px;
  }
  .veien-legal-list {
    margin: 8px 0 10px 14px;
  }
  .veien-legal-list li {
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 4px;
  }
  .veien-contact-card {
    padding: 16px 14px;
    border-radius: var(--veien-radius-md);
  }
  .veien-form-group {
    margin-bottom: 12px;
    gap: 4px;
  }
  .veien-label {
    font-size: 0.8rem;
  }
  .veien-input, .veien-textarea, .veien-select {
    padding: 9px 12px;
    font-size: 0.85rem;
  }
  .veien-textarea {
    min-height: 90px;
  }
  .veien-faq-list {
    gap: 10px;
  }
  .veien-faq-question {
    padding: 12px 14px;
    font-size: 1rem;
    gap: 8px;
  }
  .veien-faq-icon {
    width: 18px;
    height: 18px;
  }
  .veien-faq-answer {
    padding: 0 14px 12px;
    font-size: 0.82rem;
    line-height: 1.5;
  }
  .veien-sidebar-widget {
    padding: 16px 14px;
  }
  .veien-widget-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    padding-bottom: 6px;
  }
  .veien-sidebar-specs-list {
    gap: 6px;
    font-size: 0.78rem;
  }
  .veien-rg-banner {
    padding: 18px 0;
  }
  .veien-rg-title {
    font-size: 1.05rem;
    margin-bottom: 4px;
  }
  .veien-rg-text {
    font-size: 0.76rem;
    line-height: 1.45;
  }
  .veien-rg-badge {
    padding: 3px 8px;
    font-size: 0.7rem;
  }
  .veien-footer {
    padding: 36px 0 18px;
  }
  .veien-footer-grid {
    gap: 22px;
    margin-bottom: 26px;
  }
  .veien-footer-logo-wrap {
    margin-bottom: 10px;
  }
  .veien-footer-about {
    font-size: 0.78rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .veien-footer-company-info {
    font-size: 0.74rem;
    line-height: 1.5;
    padding: 8px 10px;
  }
  .veien-footer-heading {
    font-size: 0.84rem;
    margin-bottom: 10px;
  }
  .veien-footer-links {
    gap: 6px;
  }
  .veien-footer-link {
    font-size: 0.78rem;
  }
  .veien-footer-disclaimer-box {
    padding: 12px;
    font-size: 0.72rem;
    line-height: 1.5;
    margin-bottom: 18px;
  }
  .veien-footer-bottom {
    padding-top: 14px;
    font-size: 0.74rem;
    gap: 8px;
  }
  .veien-footer-legal-links {
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .veien-badge-pill:nth-child(2) {
    display: none;
  }
  .veien-brand-title {
    font-size: 0.92rem;
  }
  .veien-brand-subtitle {
    font-size: 0.48rem;
  }
  .veien-hero-title {
    font-size: 1.55rem;
  }
  .veien-card-title {
    font-size: 1.1rem;
  }
  .veien-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}
