@charset "UTF-8";
:root {
  --sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: Georgia, Times, "Times New Roman", serif;
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  /* Primary colors */
  --red: #e3120b;
  --white: #fafafa;
  --dark-gray: #4a4a4a;
  --custom-black: #222222;
  /* Secondary colors */
  --mid-green: #91b8bd;
  --light-grey: #d4dddd;
  --dark-green: #244747;
  --green: #336666;
  --mid-blue: #8abbd0;
  --beige: #efe8d1;
  /* Breakpoints */
  --bp-sm: 600px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;
}

@media (min-width: 400px) and (max-width: 800px) {
  :root {
    font-size: calc(12px + 12 * (100vw - 400px) / 400);
  }
}
@media (min-width: 800px) {
  :root {
    font-size: 24px;
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 100%;
}

body {
  font-family: var(--sans-serif);
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  background-color: var(--white);
  color: var(--dark-gray);
}

::selection {
  background-color: var(--red);
  color: var(--white);
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.c-messages {
  margin-bottom: 24px;
}

.c-message {
  padding: 14px 16px;
  border: 1px solid #dddddd;
  background: #f8f8f8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.c-message--success {
  border-color: #cfe3d1;
  background: #f4faf4;
  color: #1f4d27;
}

.c-message--error {
  border-color: #e7c9c9;
  background: #fcf5f5;
  color: #7a1f1f;
}

.process-flow {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.process-flow__step {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 180px;
  border: 1px solid #d8d8d8;
  background: #f3f3f3;
}

.process-flow__step--2 {
  background: #ebebeb;
}

.process-flow__step--3 {
  background: #e4e4e4;
}

.process-flow__num {
  position: absolute;
  top: 16px;
  left: 16px;
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #777;
  z-index: 2;
}

.process-flow__content {
  width: 100%;
  padding: 46px 32px 28px 32px;
}

.process-flow__title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
  color: #111;
}

.process-flow__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #444;
}

.process-flow__connector {
  position: relative;
  flex: 0 0 64px;
  min-width: 64px;
}

.process-flow__connector::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  right: 18px;
  height: 2px;
  background: #999;
  transform: translateY(-50%);
}

.process-flow__connector::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #999;
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .process-flow {
    flex-direction: column;
    align-items: stretch;
  }
  .process-flow__step {
    min-height: auto;
  }
  .process-flow__content {
    padding: 46px 20px 24px;
  }
  .process-flow__connector {
    flex: 0 0 56px;
    min-width: 0;
    width: 100%;
    height: 56px;
  }
  .process-flow__connector::before {
    top: 8px;
    bottom: 18px;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
  }
  .process-flow__connector::after {
    top: auto;
    bottom: 6px;
    left: 50%;
    right: auto;
    border-top: 12px solid #999;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-bottom: 0;
    transform: translateX(-50%);
  }
}
.c-price-examples {
  padding: 64px 20px;
  background: #ffffff;
}

.c-price-examples__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.c-price-examples__header {
  max-width: 720px;
  margin-bottom: 32px;
}

.c-price-examples__title {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.15;
  color: #111;
}

.c-price-examples__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

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

.c-price-card {
  border: 1px solid #dedede;
  background: #f8f8f8;
  padding: 24px;
}

.c-price-card__top {
  margin-bottom: 18px;
}

.c-price-card__route {
  margin: 0 0 6px;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #111;
}

.c-price-card__meta {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666;
}

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

.c-price-card__price {
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
}

.c-price-card__label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #777;
}

.c-price-card__value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
}

.c-price-note {
  padding: 20px 24px;
  border: 1px solid #d8d8d8;
  background: #f1f1f1;
}

.c-price-note__title {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #111;
}

.c-price-note__text {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: #444;
}

@media (max-width: 768px) {
  .c-price-examples {
    padding: 48px 20px;
  }
  .c-price-examples__title {
    font-size: 1.65rem;
  }
  .c-price-card {
    padding: 20px;
  }
  .c-price-card__prices {
    grid-template-columns: 1fr;
  }
}
.btn {
  padding: 0.75rem 1.5rem;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: var(--dark-gray);
}

.c-button {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid #000;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-column,
.form-details,
.form-message {
  flex: 1;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--beige);
  border-radius: 4px;
  font-family: var(--sans-serif);
}

.form-group textarea {
  min-height: auto;
  resize: none;
}

.form-actions {
  text-align: right;
}

.form-group.error input,
.form-group.error textarea {
  border-color: var(--red);
}

.error-message {
  color: var(--red);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

@media (min-width: 968px) {
  .form-container {
    flex-direction: row;
  }
  .form-details {
    padding-right: 1.5rem;
  }
  .form-message textarea {
    height: 100%;
    min-height: 700px;
  }
}
.arrow-steps .step {
  position: relative;
  float: left;
  min-width: 180px;
  margin: 0 3px;
  padding: 10px 10px 10px 30px;
  background-color: inherit;
  color: #666;
  cursor: default;
  font-size: 14px;
  text-align: center;
  transition: background-color 0.2s ease;
  user-select: none;
}
.arrow-steps .step::before,
.arrow-steps .step::after {
  content: " ";
  position: absolute;
  top: 0;
  right: -17px;
  width: 0;
  height: 0;
  border-top: 19px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 17px solid inherit;
  transition: border-color 0.2s ease;
  z-index: 2;
}
.arrow-steps .step::before {
  right: auto;
  left: 0;
  z-index: 0;
}
.arrow-steps .step:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.arrow-steps .step:first-child::before {
  border: none;
}
.arrow-steps .step span {
  position: relative;
}
.arrow-steps .step span::before {
  content: "✓";
  position: absolute;
  top: -2px;
  left: -20px;
  opacity: 0;
}
.arrow-steps .step.done span::before {
  opacity: 1;
  transition: opacity 0.3s ease 0.5s;
}

.splide__slide img {
  width: auto;
  height: 600px;
}

.c-faq {
  padding: 64px 20px;
  background: #ffffff;
}

.c-faq__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.c-faq__header {
  margin-bottom: 28px;
}

.c-faq__title {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1.15;
  color: #111;
}

.c-faq__lead {
  margin: 0;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.c-faq__list {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.c-faq__item {
  padding: 22px 24px;
  border: 1px solid #dddddd;
  background: #f8f8f8;
}

.c-faq__question {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.3;
  color: #111;
}

.c-faq__answer {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #444;
}

@media (max-width: 768px) {
  .c-faq {
    padding: 48px 20px;
  }
  .c-faq__title {
    font-size: 1.65rem;
  }
  .c-faq__item {
    padding: 18px 18px;
  }
  .c-faq__question {
    font-size: 1.05rem;
  }
}
.c-capacity {
  padding: 64px 20px;
  background: #ffffff;
}

.c-capacity__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.c-capacity__header {
  max-width: 760px;
  margin-bottom: 24px;
}

.c-capacity__eyebrow {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777;
}

.c-capacity__title {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.15;
  color: #111;
}

.c-capacity__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  max-width: 60ch;
}

.c-capacity__media {
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid #e1e1e1;
  background: #f6f6f6;
}

.c-capacity__image {
  display: block;
  width: 100%;
  height: auto;
}

.c-capacity__body {
  max-width: 760px;
}

.c-capacity__text {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.c-capacity__note {
  margin: 8px 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #111;
  font-weight: 500;
}

@media (max-width: 900px) {
  .c-capacity {
    padding: 48px 20px;
  }
  .c-capacity__title {
    font-size: 1.65rem;
  }
  .c-capacity__media {
    padding: 12px;
  }
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.wrapper,
.container,
main {
  overflow: visible !important;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__img {
  z-index: 0;
  object-fit: cover;
  will-change: transform, opacity;
}

.hero__img--airport {
  opacity: 1;
  transform: scale(1);
}

.hero__img--fjord {
  opacity: 0;
  transform: scale(1.12);
}

.hero__overlay {
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.c-hero__title {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(4rem, 5vw, 4.5rem);
  line-height: 1.05;
}

.c-hero__subtitle {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(2rem, 2vw, 1.25rem);
  line-height: 1.5;
  max-width: 32ch;
  text-align: left;
}

.hero .c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero__content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__cta {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.c-button--floating {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .c-button--floating {
    transform: translate(-50%, 12px);
  }
}
.c-intro {
  padding: 64px 20px 32px;
  background: #ffffff;
}

.c-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.c-intro__header {
  max-width: 820px; /* key for readability */
}

.c-intro__eyebrow {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777;
}

.c-intro__title {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.25;
  color: #111;
}

@media (max-width: 900px) {
  .c-intro {
    padding: 48px 20px 24px;
  }
  .c-intro__title {
    font-size: 1.6rem;
  }
}
.c-booking {
  padding: 72px 20px 80px;
  background: #ffffff;
}

.c-booking__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.c-booking__meta {
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: #666;
}

.c-booking__meta-label {
  font-weight: 600;
  margin-right: 8px;
  color: #111;
}

.c-booking__meta-text {
  color: #444;
}

.c-booking__title {
  margin: 0 0 16px;
  font-size: 2rem;
  line-height: 1.2;
  color: #111;
}

.c-booking__text {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.c-booking__link {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.c-booking__link:hover {
  text-decoration: underline;
}

.c-booking__action {
  margin-top: 28px;
}

.c-corner-links {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

.c-corner-link {
  position: absolute;
  top: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  line-height: 0;
  pointer-events: auto;
  text-decoration: none;
}

.c-corner-link--left {
  left: 1.2rem;
}

.c-corner-link--right {
  right: 1.2rem;
}

.c-corner-link__icon {
  display: block;
  width: 100%;
  height: auto;
}

.c-corner-link__image {
  display: block;
  width: 48px;
  height: 48px;
}

@media (hover: hover) {
  .c-corner-link:hover {
    opacity: 0.7;
  }
}
@media (min-width: 901px) {
  div.lang {
    position: fixed;
    top: 40px;
    right: 40px;
    border: 3px solid var(--custom-black);
  }
  .lang-link-img {
    width: 150px;
    height: auto;
  }
}
@media (min-width: 600px) and (max-width: 900px) {
  div.lang {
    position: fixed;
    top: 20px;
    right: 20px;
    border: 2px solid var(--custom-black);
  }
  .lang-link-img {
    width: 100px;
    height: auto;
  }
}
@media (max-width: 599px) {
  div.lang {
    position: fixed;
    top: 10px;
    right: 10px;
    border: 1px solid var(--custom-black);
  }
  .lang-link-img {
    width: 50px;
    height: auto;
  }
  .c-corner-link {
    top: 0.9rem;
  }
  .c-corner-link--left {
    left: 0.9rem;
  }
  .c-corner-link--right {
    right: 0.9rem;
  }
}
.c-interior-strip {
  padding: 56px 20px;
  background: #ffffff;
}

.c-interior-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.c-interior-strip__header {
  max-width: 760px;
  margin-bottom: 20px;
}

.c-interior-strip__eyebrow {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777;
}

.c-interior-strip__title {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.15;
  color: #111;
}

.c-interior-strip__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.c-interior-strip__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.c-interior-strip__item {
  flex: 0 0 clamp(260px, 32vw, 420px);
  margin: 0;
  border: 1px solid #dddddd;
  background: #f5f5f5;
  overflow: hidden;
  aspect-ratio: 16/10;
  scroll-snap-align: start;
}

.c-interior-strip__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-interior-strip__track::-webkit-scrollbar {
  height: 8px;
}

.c-interior-strip__track::-webkit-scrollbar-thumb {
  background: #cfcfcf;
}

.c-interior-strip__track::-webkit-scrollbar-track {
  background: transparent;
}

@media (max-width: 900px) {
  .c-interior-strip {
    padding: 48px 20px;
  }
  .c-interior-strip__title {
    font-size: 1.65rem;
  }
  .c-interior-strip__item {
    flex-basis: 78vw;
  }
}
.c-interior-strip__inner {
  position: relative;
}

.c-interior-strip__inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}

.c-form {
  padding: 72px 20px;
  background: #ffffff;
}

.c-form__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.c-form__content {
  max-width: 760px;
  margin: 0 auto;
}

.c-form__header {
  margin-bottom: 32px;
  text-align: left;
}

.c-form__eyebrow {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777;
}

.c-form__title {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.2;
  color: #111;
}

.c-form__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.c-form__form {
  width: 100%;
}

.c-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.c-form__field {
  display: flex;
  flex-direction: column;
}

.c-form__field--full {
  grid-column: 1/-1;
}

.c-form__field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: #666;
}

.c-form__field input,
.c-form__field textarea,
.c-form__field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #111;
  font-size: 0.95rem;
  line-height: 1.4;
  outline: none;
  box-sizing: border-box;
}

.c-form__field textarea {
  min-height: 140px;
  resize: vertical;
}

.c-form__field input:focus,
.c-form__field textarea:focus,
.c-form__field select:focus {
  border-color: #111;
}

.c-form__actions {
  margin-top: 24px;
}

.c-form__field ul.errorlist {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  color: #b00020;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .c-form {
    padding: 48px 20px;
  }
  .c-form__content {
    max-width: none;
  }
  .c-form__title {
    font-size: 1.6rem;
  }
  .c-form__grid {
    grid-template-columns: 1fr;
  }
  .c-form__field--full {
    grid-column: auto;
  }
}

/*# sourceMappingURL=main.css.map */
