/* ============================================================
   Anne Bro — Stylesheet
   Premium heritage experience brand, Lofoten
   ============================================================ */

/* ------------------------------------------------------------
   Design tokens
   ------------------------------------------------------------ */
:root {
  /* Brand colours — derived from the vessel itself */
  --burgundy:      #6d1409;   /* The wheelhouse. The soul of the brand. */
  --burgundy-dark: #4a0d06;
  --burgundy-light: #8a1a0b;

  /* Neutrals — warm, not sterile */
  --ink:           #1c1917;   /* Almost-black, warm undertone */
  --stone:         #44403c;   /* Body text */
  --ash:           #78716c;   /* Secondary text, captions */
  --linen:         #faf8f5;   /* Page background — warm white */
  --cream:         #f0ebe3;   /* Subtle section alternates */
  --chalk:         #e8e2d9;   /* Borders, dividers */

  /* Sea & sky accents — Lofoten palette */
  --sea:           #2c4a6e;   /* Deep Lofoten water */
  --sea-light:     #4a7fa5;   /* Lighter accent */
  --gold:          #c9a84c;   /* Warm highlight, used sparingly */

  /* Typography */
  --font-serif:    'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:     'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 10rem;

  /* Layout */
  --max-width:      1200px;
  --content-width:  720px;
  --radius-sm:      4px;
  --radius-md:      10px;
  --radius-lg:      20px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ------------------------------------------------------------
   Reset & base
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;       /* 17px */
  line-height: 1.75;
  color: var(--stone);
  background-color: var(--linen);
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

/* ------------------------------------------------------------
   Typography
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--ink);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; letter-spacing: 0; }
h5 { font-size: 0.875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

p { max-width: 68ch; }
p + p { margin-top: 1.25em; }

.lead {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--stone);
}

.caption {
  font-size: 0.8125rem;
  color: var(--ash);
  line-height: 1.5;
}

.label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
}

/* ------------------------------------------------------------
   Layout utilities
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.container--narrow {
  max-width: var(--content-width);
}

.section {
  padding-block: var(--space-xl);
}

.section--sm {
  padding-block: var(--space-lg);
}

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

.section--dark {
  background-color: var(--ink);
  color: var(--linen);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--linen);
}

.section--dark p,
.section--dark .lead {
  color: #c8c3bc;
}

.section--burgundy {
  background-color: var(--burgundy);
  color: var(--linen);
}

.section--burgundy h1,
.section--burgundy h2,
.section--burgundy h3,
.section--burgundy h4 {
  color: #fff;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* ------------------------------------------------------------
   Navigation
   ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.nav__logo-img {
  height: 40px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: #c8c3bc;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
  letter-spacing: 0.02em;
}

.nav__link:hover {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

.nav__link--active {
  color: #fff;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: var(--space-sm);
  padding-left: var(--space-sm);
  border-left: 1px solid rgba(255,255,255,0.15);
}

.nav__lang a {
  font-size: 0.75rem;
  font-weight: 600;
  color: #c8c3bc;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s var(--ease);
}

.nav__lang a:hover,
.nav__lang a.active {
  color: #fff;
}

.nav__cta {
  margin-left: var(--space-sm);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background-color: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
}

.btn--primary:hover {
  background-color: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(109,20,9,0.35);
}

.btn--outline {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.btn--outline:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn--outline-dark {
  background-color: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}

.btn--outline-dark:hover {
  background-color: var(--burgundy);
  color: #fff;
}

.btn--gold {
  background-color: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn--gold:hover {
  background-color: #b8962e;
  border-color: #b8962e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

.btn--sm {
  font-size: 0.75rem;
  padding: 10px 20px;
}

.btn--lg {
  font-size: 1rem;
  padding: 18px 42px;
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--ink);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s var(--ease);
}

.hero--loaded .hero__bg {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,25,23,0.92) 0%,
    rgba(28,25,23,0.5) 45%,
    rgba(28,25,23,0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--space-xl);
  padding-top: var(--space-xl);
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: #fff;
  max-width: 14ch;
  margin-bottom: var(--space-md);
}

.hero .lead {
  color: rgba(255,255,255,0.85);
  max-width: 52ch;
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ------------------------------------------------------------
   Experience cards
   ------------------------------------------------------------ */
.experience-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.experience-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: brightness(0.75);
}

.experience-card:hover .experience-card__img {
  transform: scale(1.04);
}

.experience-card__body {
  position: relative;
  z-index: 2;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(28,25,23,0.95) 0%, transparent 100%);
}

.experience-card__season {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.experience-card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
}

.experience-card__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
  max-width: 100%;
}

.experience-card__meta {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.experience-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 10px;
  border-radius: 20px;
}

.experience-card__price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.experience-card__price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-sans);
}

/* ------------------------------------------------------------
   Seasonal calendar strip
   ------------------------------------------------------------ */
.season-strip {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border: 1px solid var(--chalk);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.season-strip__month {
  padding: var(--space-sm) 6px;
  text-align: center;
  border-right: 1px solid var(--chalk);
  transition: background 0.2s var(--ease);
}

.season-strip__month:last-child { border-right: none; }

.season-strip__name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 8px;
}

.season-strip__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-inline: auto;
  background: var(--chalk);
}

.season-strip__dot--northern-lights { background: #5e4fa2; }
.season-strip__dot--midnight-sun     { background: var(--gold); }
.season-strip__dot--both             { background: linear-gradient(135deg, #5e4fa2 50%, var(--gold) 50%); }

/* ------------------------------------------------------------
   Quote / testimonial
   ------------------------------------------------------------ */
.blockquote {
  border-left: 3px solid var(--burgundy);
  padding-left: var(--space-md);
  margin-block: var(--space-lg);
}

.blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  max-width: 56ch;
}

.blockquote cite {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  color: var(--ash);
  letter-spacing: 0.04em;
}

/* ------------------------------------------------------------
   Image + text split
   ------------------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.split__img:hover img { transform: scale(1.03); }

.split__body {
  padding-inline: var(--space-md);
}

.split__body .label {
  margin-bottom: var(--space-sm);
  display: block;
}

.split__body h2 {
  margin-bottom: var(--space-md);
}

.split__body .lead {
  margin-bottom: var(--space-md);
}

/* ------------------------------------------------------------
   Stats / figures
   ------------------------------------------------------------ */
.stats {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.stat__number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat__label {
  font-size: 0.875rem;
  color: var(--ash);
  font-weight: 500;
}

/* ------------------------------------------------------------
   Booking inquiry form
   ------------------------------------------------------------ */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.03em;
}

.form__input,
.form__select,
.form__textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--chalk);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  outline: none;
  width: 100%;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(109,20,9,0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2378716c' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.site-footer {
  background-color: var(--ink);
  color: #c8c3bc;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-lg);
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: var(--space-sm);
  max-width: 30ch;
  color: #a09a93;
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.875rem;
  color: #a09a93;
  transition: color 0.2s var(--ease);
}

.footer__link:hover { color: #fff; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #6b6560;
}

.footer__vipps {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: #c8c3bc;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.footer__vipps:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}

.footer__vipps-number {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

/* ------------------------------------------------------------
   Floating book button
   ------------------------------------------------------------ */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
}

/* ------------------------------------------------------------
   Page hero (interior pages)
   ------------------------------------------------------------ */
.page-hero {
  background-color: var(--ink);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero .label { color: var(--gold); margin-bottom: var(--space-sm); display: block; }
.page-hero h1 { color: #fff; margin-bottom: var(--space-md); }
.page-hero .lead { color: rgba(255,255,255,0.8); }

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .split { gap: var(--space-md); }
}

@media (max-width: 768px) {
  :root {
    --space-xl:  4rem;
    --space-2xl: 6rem;
  }

  .nav__links,
  .nav__lang,
  .nav__cta { display: none; }

  .nav__toggle { display: flex; }

  .grid-2,
  .grid-3 { grid-template-columns: 1fr; }

  .split,
  .split--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .split__body { padding-inline: 0; }

  .footer__grid { grid-template-columns: 1fr; }

  .form__row { grid-template-columns: 1fr; }

  .season-strip { grid-template-columns: repeat(6, 1fr); }
  .season-strip__month:nth-child(n+7) { display: none; }

  .stats { gap: var(--space-md); }

  .floating-cta {
    bottom: 16px;
    right: 16px;
  }

  .hero { min-height: 80vh; }

  .hero h1 { max-width: 100%; }
}

@media (max-width: 480px) {
  .btn--lg { padding: 16px 28px; font-size: 0.875rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}

/* ------------------------------------------------------------
   Mobile nav drawer
   ------------------------------------------------------------ */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  flex-direction: column;
  padding: var(--space-lg) var(--space-md);
  gap: var(--space-sm);
}

.nav-drawer.is-open { display: flex; }

.nav-drawer__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}

.nav-drawer__link {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  padding-block: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s var(--ease);
}

.nav-drawer__link:hover { color: #fff; }

.nav-drawer__cta {
  margin-top: auto;
}

/* ------------------------------------------------------------
   Utilities
   ------------------------------------------------------------ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
