:root {
  --bg: #f4f1ea;
  --bg-alt: #e8e3d8;
  --ink: #0f2430;
  --muted: #5a6b75;
  --line: #d2cbc0;
  --card: #fffcf7;
  --deep: #0c3b4a;
  --deep-2: #12352a;
  --accent: #c45c1a;
  --water: #3d8fad;
  --water-soft: #7ec8e3;
  --gold: #f0c14a;
  --font: "Outfit", system-ui, sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
  --max: 1120px;
  --radius: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
a { color: var(--water); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 241, 234, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 1rem;
}
.logo {
  display: inline-flex; align-items: center; gap: 0.65rem;
  color: inherit; text-decoration: none; font-weight: 700;
}
.logo:hover { text-decoration: none; }
.logo-svg { display: flex; line-height: 0; }
.logo-text em { font-style: normal; color: var(--accent); }
.nav { display: flex; align-items: center; gap: 1.15rem; }
.nav a { color: var(--muted); font-weight: 500; font-size: 0.95rem; text-decoration: none; }
.nav a:hover { color: var(--ink); }
.nav-cta {
  background: var(--deep); color: #f4f1ea !important;
  padding: 0.55rem 0.95rem; border-radius: 999px;
}
.nav-cta:hover { background: var(--accent); text-decoration: none; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  position: relative; cursor: pointer;
}
.nav-toggle span {
  position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink);
}
.nav-toggle span:first-child { top: 17px; }
.nav-toggle span:last-child { top: 25px; }

.hero {
  position: relative; padding: 5rem 0 5.5rem; overflow: hidden;
  min-height: min(78vh, 640px);
  display: flex; align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  display: block;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 28, 36, 0.88) 0%, rgba(7, 28, 36, 0.72) 42%, rgba(7, 28, 36, 0.35) 100%),
    linear-gradient(180deg, rgba(7, 28, 36, 0.25) 0%, rgba(7, 28, 36, 0.55) 100%);
}
.hero-content {
  position: relative; z-index: 1; max-width: 40rem; color: #f4f1ea;
  padding-bottom: 0.5rem;
}
.hero .eyebrow { color: var(--gold); }
.hero .lead { color: rgba(244, 241, 234, 0.82); }
.hero .lead strong { color: #fff; }
.hero .btn-ghost {
  border-color: rgba(255,255,255,0.35); color: #f4f1ea;
}
.hero .btn-ghost:hover { background: rgba(255,255,255,0.1); }
.eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.85rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600; line-height: 1.12; letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.lead { font-size: 1.12rem; color: var(--muted); margin-bottom: 1.5rem; }
.lead strong { color: var(--ink); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1.35rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 0.85rem 1.2rem; font: inherit; font-weight: 600;
  border: 0; cursor: pointer; text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { filter: brightness(1.06); }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.btn-block { width: 100%; }
.hero-tags {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0.45rem;
  font-size: 0.85rem; color: var(--muted);
}
.hero-tags li {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px; padding: 0.35rem 0.75rem;
  color: rgba(244, 241, 234, 0.92);
}

.strip {
  border-block: 1px solid var(--line); background: var(--card); padding: 0.95rem 0;
}
.strip-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.65rem 1.1rem;
  color: var(--muted); font-weight: 500; font-size: 0.92rem;
}
.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--line); align-self: center; }

.section { padding: 4.25rem 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: linear-gradient(160deg, var(--deep) 0%, #071f28 100%);
  color: #eef6f9;
}
.section-head { max-width: 36rem; margin-bottom: 2rem; }
.section-head h2 {
  font-family: var(--serif); font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 600; margin-bottom: 0.5rem;
}
.section-head p { color: var(--muted); }
.section-head.light .eyebrow { color: var(--gold); }
.section-head.light p { color: rgba(238, 246, 249, 0.7); }

.trip-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem;
}
.trip {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 24px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.trip:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 36, 48, 0.1);
}
.trip-visual {
  position: relative; min-height: 220px; aspect-ratio: 16 / 10;
  color: #f4f1ea; overflow: hidden;
}
.trip-visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.45s ease;
}
.trip:hover .trip-visual img { transform: scale(1.04); }
.trip-overlay {
  position: absolute; inset: 0;
  padding: 1.15rem 1.25rem 1.1rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(180deg, rgba(7,28,36,0.05) 20%, rgba(7,28,36,0.78) 100%);
}
.trip-badge {
  align-self: flex-start; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(6px);
  padding: 0.28rem 0.55rem; border-radius: 999px;
  margin-bottom: auto;
}
.trip-overlay h3 {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
  margin: 0.5rem 0 0.1rem; text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.trip-where { opacity: 0.9; font-size: 0.9rem; }
.trip-body { padding: 1.2rem 1.35rem 1.4rem; }
.trip-body p { color: var(--muted); margin-bottom: 0.75rem; font-size: 0.96rem; }
.trip-body ul { margin-left: 1.1rem; font-size: 0.92rem; }
.trip-body li { margin-bottom: 0.25rem; }

.split {
  display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 2rem; align-items: start;
}
.split h2 {
  font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.3rem);
  font-weight: 600; margin-bottom: 0.85rem;
}
.split p { color: var(--muted); margin-bottom: 0.85rem; }
.check { list-style: none; margin: 1rem 0 1.25rem; }
.check li {
  padding: 0.35rem 0 0.35rem 1.3rem; position: relative; color: var(--ink);
}
.check li::before {
  content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}
.quote-card {
  position: relative;
  background: linear-gradient(155deg, #0c3b4a 0%, #071f28 100%);
  color: #f4f1ea;
  border-radius: 24px;
  padding: 2rem 1.85rem 1.75rem;
  box-shadow: 0 16px 40px rgba(7, 31, 40, 0.18);
  overflow: hidden;
}
.quote-card::before {
  content: "“";
  position: absolute;
  top: 0.35rem;
  left: 1rem;
  font-family: var(--serif);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
}
.quote-card .quote {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 600;
  line-height: 1.45;
  color: #f7f4ed !important;
  margin: 0 0 1.15rem !important;
  text-wrap: pretty;
}
.quote-card .quote-attr {
  position: relative;
  z-index: 1;
  margin: 0 !important;
  color: var(--gold) !important;
  opacity: 1;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.quote-card .quote-attr::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--gold);
  opacity: 0.55;
  margin-bottom: 0.65rem;
  border-radius: 2px;
}

.about-layout {
  display: grid; grid-template-columns: 0.95fr 1.15fr; gap: 2.25rem; align-items: start;
}
.about-photo {
  position: sticky; top: 96px;
  border-radius: 24px; overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
}
.about-photo img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 4 / 5; object-fit: cover;
}
.photo-caption {
  padding: 0.75rem 1rem 0.95rem;
  font-size: 0.85rem; color: var(--muted);
}
.about-copy h2 {
  font-family: var(--serif); font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 600; margin-bottom: 0.85rem;
}
.about-lead {
  font-size: 1.12rem; color: var(--ink) !important; margin-bottom: 1rem !important;
}
.about-copy p { color: var(--muted); margin-bottom: 0.9rem; }
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem;
  margin-top: 1.4rem;
}
.highlight {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 0.85rem 1rem;
  display: grid; gap: 0.2rem;
}
.highlight strong {
  font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent);
}
.highlight span { font-size: 0.95rem; font-weight: 600; color: var(--ink); }

.section-mood { padding: 0 0 1rem; }
.mood-strip {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.4rem;
  width: min(100%, calc(var(--max) + 2rem));
  margin: 0 auto; padding: 0 0.5rem;
}
.mood-strip figure {
  margin: 0; border-radius: 14px; overflow: hidden; position: relative;
  aspect-ratio: 3 / 4;
}
.mood-strip img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.mood-strip figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.5rem 0.55rem 0.55rem;
  font-size: 0.72rem; font-weight: 600; color: #fff;
  background: linear-gradient(transparent, rgba(7,28,36,0.75));
}

.cta { padding-bottom: 5rem; }
.cta-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 2rem;
  background: var(--deep); color: #eef6f9; border-radius: 28px;
  padding: clamp(1.4rem, 4vw, 2.4rem);
}
.cta-grid h2 {
  font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600; margin-bottom: 0.65rem;
}
.cta-grid > div > p { color: rgba(238,246,249,0.75); margin-bottom: 1rem; }
.cta-points {
  list-style: none; margin: 1.25rem 0 0; display: grid; gap: 0.45rem;
}
.cta-points li {
  padding-left: 1.25rem; position: relative;
  color: rgba(238,246,249,0.85); font-size: 0.95rem;
}
.cta-points li::before {
  content: "→"; position: absolute; left: 0; color: var(--gold); font-weight: 700;
}
.muted { color: rgba(238,246,249,0.55); }
.small { font-size: 0.88rem; }
.contact-form {
  display: grid; gap: 0.7rem; background: rgba(0,0,0,0.18);
  border-radius: 18px; padding: 1.15rem;
}
.contact-form label {
  display: grid; gap: 0.3rem; font-size: 0.85rem; color: rgba(238,246,249,0.7);
}
.opt { opacity: 0.65; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; border: 1px solid rgba(255,255,255,0.12); background: rgba(0,0,0,0.22);
  color: #eef6f9; border-radius: 10px; padding: 0.7rem 0.8rem; font: inherit;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-note { font-size: 0.78rem; color: rgba(238,246,249,0.45); }

.site-footer {
  border-top: 1px solid var(--line); padding: 1.75rem 0 2.25rem;
}
.footer-inner {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.site-footer p { color: var(--muted); font-size: 0.9rem; margin-top: 0.3rem; }
.footer-meta { text-align: right; }
.footer-meta .muted { font-size: 0.82rem; }

@media (max-width: 900px) {
  .trip-grid, .split, .cta-grid, .about-layout { grid-template-columns: 1fr; }
  .about-photo { position: static; }
  .about-photo img { aspect-ratio: 16 / 10; max-height: 280px; }
  .mood-strip { grid-template-columns: repeat(3, 1fr); gap: 0.35rem; }
  .nav-toggle { display: block; touch-action: manipulation; }
  .nav {
    position: fixed; inset: 72px 0 auto 0; max-height: calc(100dvh - 72px);
    overflow-y: auto; background: rgba(244,241,234,0.98);
    border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch;
    padding: 0.6rem 1rem 1rem; gap: 0;
    transform: translateY(-120%); opacity: 0; pointer-events: none; transition: 0.25s;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a {
    padding: 0.95rem 0.4rem; border-bottom: 1px solid var(--line);
    min-height: 44px; display: flex; align-items: center;
  }
  .nav-cta {
    text-align: center; margin-top: 0.45rem; border: 0 !important;
    justify-content: center;
  }
  .footer-meta { text-align: left; }
  .section { padding: 3.2rem 0; }
  .hero {
    min-height: min(72dvh, 560px); padding: 5.5rem 0 3rem;
    align-items: flex-end;
  }
  .hero h1 { font-size: clamp(1.85rem, 8vw, 2.6rem); }
  .trip-visual { min-height: 200px; aspect-ratio: 16 / 11; }
  .trip-overlay h3 { font-size: 1.25rem; }
  .cta-grid { border-radius: 20px; padding: 1.25rem; }
  .contact-form { padding: 1rem; }
  /* iOS: undvik auto-zoom i formulär */
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .btn { font-size: 16px; }
  .site-header { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
  body { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
}
@media (max-width: 480px) {
  .container { width: min(var(--max), calc(100% - 1.25rem)); }
  .hero { min-height: min(68dvh, 480px); padding: 5rem 0 2.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; min-height: 48px; }
  .hero-tags { gap: 0.35rem; }
  .hero-tags li { font-size: 0.8rem; padding: 0.3rem 0.65rem; }
  .about-highlights { grid-template-columns: 1fr; }
  .mood-strip { grid-template-columns: repeat(2, 1fr); }
  .mood-strip figure { aspect-ratio: 4 / 5; border-radius: 10px; }
  .trip { border-radius: 18px; }
  .cta { padding-bottom: 3.5rem; }
  .section { padding: 2.75rem 0; }
  .strip-row { font-size: 0.85rem; gap: 0.45rem 0.75rem; }
}
