/* ═══════════════════════════════════════════════════
   UNIKA UPPLEVELSER — Båtcharter Blekinge
   ═══════════════════════════════════════════════════ */

:root {
  /* Brand */
  --red:         #c01861;
  --red-dark:    #9e1350;
  --red-light:   #e02878;
  --red-pale:    rgba(192, 24, 97, 0.12);

  /* Dark */
  --bg:          #0e0e10;
  --bg-2:        #141416;
  --bg-card:     #191920;

  /* Light */
  --white:       #ffffff;
  --off-white:   #f7f4f0;
  --fg-dark:     #1a1a1e;

  /* Text on dark */
  --fg:          #f5f2ee;
  --fg-dim:      rgba(245, 242, 238, 0.88);
  --fg-faint:    rgba(245, 242, 238, 0.25);

  --border-dark: rgba(255,255,255,0.08);
  --border-red:  rgba(192, 24, 97, 0.3);

  --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --sans:    -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;

  /* Type scale */
  --text-xs:   0.8125rem;
  --text-sm:   0.9375rem;
  --text-base: 1.0625rem;
  --text-lg:   1.25rem;

  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1200px;
  --nav-h:     72px;
  --section-v: clamp(5rem, 10vw, 9rem);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--fg);
  text-wrap: balance;
  font-style: normal;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--fg-dim);
  margin-bottom: 1rem;
}
p:last-child { margin-bottom: 0; }
address { font-style: normal; }
ul[role="list"] { list-style: none; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); }
::selection { background: var(--red); color: #fff; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.section-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 1rem;
}

[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; }

/* Mjuk inladdning av bilder och puffar — fadar in när bilden avkodats */
.img-fade {
  opacity: 0;
  transition: opacity 0.7s var(--ease);
  will-change: opacity;
}
.img-fade.img-in { opacity: 1; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  border: none;
  border-radius: 2px;
}
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,24,97,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  border-color: var(--red-light);
  color: var(--red-light);
  transform: translateY(-2px);
}
/* Boknings-knapp – samma brand-röd som loggan/KONTAKT för konsekvens */
.btn-book {
  background: var(--red);
  color: #fff;
}
.btn-book:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(215,25,98,0.4);
}

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s;
}
.site-header.scrolled {
  background: rgba(14, 14, 16, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand { z-index: 10; flex-shrink: 0; }

.nav-logo {
  height: 42px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 8px rgba(0,0,0,0.3));
  transition: opacity 0.25s;
}
.nav-brand:hover .nav-logo { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-link {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.65);
  transition: color 0.2s;
  position: relative;
  padding: 0.25rem 0;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  border-radius: 1px;
  transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--fg); }
.nav-link:hover::after { width: 100%; }

.nav-link.nav-cta {
  color: #fff;
  background: var(--red);
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  letter-spacing: 0.1em;
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover {
  background: var(--red-light);
  color: #fff;
  box-shadow: 0 4px 16px rgba(192,24,97,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fg);
  transition: transform 0.3s var(--ease), opacity 0.3s;
  transform-origin: center;
  border-radius: 1px;
}
.hamburger[aria-expanded="true"] span:first-child { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger[aria-expanded="true"] span:last-child  { transform: rotate(-45deg) translate(4.5px, -4.5px); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    background: var(--bg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
    z-index: 5;
  }
  .nav-links.is-open { opacity: 1; pointer-events: all; transform: none; }
  .nav-link { font-size: 1rem; }
  .nav-link.nav-cta { padding: 0.75rem 2rem; }
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}
.hero-video.is-ready { opacity: 1; }

/* Fallback: djup bläck med rödskimmer */
.hero-fallback {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 40% 55%, rgba(192,24,97,0.18) 0%, transparent 60%),
    linear-gradient(170deg, #0e0e10 0%, #14080e 60%, #0a0a0c 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(14,14,16,0.12) 0%,
    rgba(14,14,16,0.32) 50%,
    rgba(14,14,16,0.72) 100%
  );
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 clamp(2rem, 6vw, 7rem);
  text-align: left;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}
.hero-title-1 {
  display: block;
  font-size: clamp(3.25rem, 9vw, 8.5rem);
  color: var(--fg);
  font-style: normal;
}
.hero-title-2 {
  display: block;
  font-size: clamp(3.25rem, 9vw, 8.5rem);
  color: var(--red);
  font-style: italic;
  text-shadow: 0 0 60px rgba(192,24,97,0.35);
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(var(--text-sm), 1.4vw, var(--text-lg));
  font-weight: 400;
  color: var(--fg-dim);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-track {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.9); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ══════════════════════════════════
   OM OSS
══════════════════════════════════ */
.om {
  padding: var(--section-v) 0;
  border-top: 1px solid var(--border-dark);
}

.om-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.om-img-wrap { position: relative; }

.om-img-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1e0a12 0%, #0f0508 100%);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.om-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--bg) 100%);
}

.om-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--red);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.65rem 1.1rem;
  border-radius: 2px;
  z-index: 2;
}

.om-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.om-title em {
  font-style: normal;
  color: var(--red);
}

.om-quote {
  font-family: var(--sans);
  font-size: var(--text-lg);
  font-style: italic;
  font-weight: 400;
  color: var(--red-light);
  border-left: 3px solid var(--red);
  padding-left: 1.25rem;
  margin-top: 1.75rem;
  line-height: 1.65;
}

@media (max-width: 820px) {
  .om-grid { grid-template-columns: 1fr; }
  .om-img-wrap { order: 2; }
  .om-img-placeholder { aspect-ratio: 16/9; }
  .om-badge { right: 0; }
}

/* ══════════════════════════════════
   UPPLEV
══════════════════════════════════ */
.upplev {
  padding: var(--section-v) 0 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border-dark);
}

.section-head {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: normal;
  color: var(--red);
}
.section-desc {
  font-size: var(--text-base);
  color: var(--fg-dim);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

.upplev-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-dark);
}

.uplev-card {
  background: var(--bg-card);
  border-right: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background 0.3s;
}
.uplev-card:last-child { border-right: none; }
.uplev-card:hover { background: #1e1e28; }

.uplev-img {
  aspect-ratio: 4/5;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.uplev-img--rib      { background: linear-gradient(175deg, #1a0a10 0%, #0e0508 100%); }
.uplev-img--lyx      { background: linear-gradient(175deg, #0f0a1a 0%, #08060f 100%); }
.uplev-img--vatten   { background: linear-gradient(175deg, #081520 0%, #040c14 100%); }
.uplev-img--mat      { background: linear-gradient(175deg, #1a1208 0%, #0e0a04 100%); }

.uplev-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--bg-card) 100%);
}

.uplev-body {
  padding: 1.5rem 1.5rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-num {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--red-light);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.uplev-body h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.65rem;
}

.uplev-body p {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--fg-dim);
  flex: 1;
  margin: 0;
}

@media (max-width: 1024px) {
  .upplev-grid { grid-template-columns: repeat(2, 1fr); }
  .uplev-card:nth-child(2) { border-right: none; }
  .uplev-card { border-bottom: 1px solid var(--border-dark); }
}
@media (max-width: 560px) {
  .upplev-grid { grid-template-columns: 1fr; }
  .uplev-card { border-right: none; }
}

/* ══════════════════════════════════
   SPECIALUPPDRAG
══════════════════════════════════ */
.special {
  padding: var(--section-v) 0;
  border-top: 1px solid var(--border-dark);
}

.special-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.special-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.special-title em { font-style: normal; color: var(--red); }
.special-content p { margin-bottom: 1rem; }
.special-content .btn { margin-top: 1.5rem; }

.special-list {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.special-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-dark);
  align-items: flex-start;
}
.special-item:first-child { border-top: 1px solid var(--border-dark); }

.special-icon {
  color: var(--red);
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.special-item h4 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.special-item p {
  font-size: var(--text-sm);
  color: var(--fg-dim);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 820px) {
  .special-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   SKÄRGÅRD
══════════════════════════════════ */
.skargard {
  padding: var(--section-v) 0 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border-dark);
}

.skargard-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--border-dark);
}

.skar-place {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border-dark);
  cursor: default;
  group: true;
}
.skar-place:last-child { border-right: none; }

.skar-img {
  aspect-ratio: 2/3;
  transition: transform 0.6s var(--ease);
  position: relative;
}
.skar-place:hover .skar-img { transform: scale(1.05); }

.skar-img--karlshamn  { background: linear-gradient(175deg, #0f1820 0%, #070e14 100%); }
.skar-img--tjaro      { background: linear-gradient(175deg, #0a1a0a 0%, #050e05 100%); }
.skar-img--karlskrona { background: linear-gradient(175deg, #0e1a24 0%, #070f18 100%); }
.skar-img--ronneby    { background: linear-gradient(175deg, #18120a 0%, #0e0a05 100%); }
.skar-img--solvesborg { background: linear-gradient(175deg, #180a14 0%, #0e0509 100%); }

.skar-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,16,0.9) 0%, transparent 45%);
}

.skar-name {
  position: absolute;
  bottom: 1.1rem;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--fg);
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 900px) {
  .skargard-strip { grid-template-columns: repeat(3, 1fr); }
  .skar-place:nth-child(3) { border-right: none; }
  .skar-place:nth-child(4),
  .skar-place:nth-child(5) { border-top: 1px solid var(--border-dark); }
}
@media (max-width: 560px) {
  .skargard-strip { grid-template-columns: repeat(2, 1fr); }
  .skar-place:nth-child(even) { border-right: none; }
  .skar-place:nth-child(3),
  .skar-place:nth-child(4) { border-top: 1px solid var(--border-dark); border-right: 1px solid var(--border-dark); }
  .skar-place:nth-child(4) { border-right: none; }
  .skar-place:nth-child(5) { border-top: 1px solid var(--border-dark); border-right: none; }
  .skar-img { aspect-ratio: 1/1; }
}

/* ══════════════════════════════════
   KONTAKT
══════════════════════════════════ */
.kontakt {
  padding: var(--section-v) 0;
  border-top: 1px solid var(--border-dark);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.kontakt-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 1rem;
}
.kontakt-title em { font-style: normal; color: var(--red); }

.kontakt-desc {
  font-size: 0.88rem;
  color: var(--fg-dim);
  margin-bottom: 2rem;
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-dark);
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-dark);
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a.info-row:hover .info-val { color: var(--red-light); }

.info-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
  flex-shrink: 0;
}
.info-val {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--fg-dim);
  text-align: right;
  transition: color 0.2s;
}

/* ─── FORM ─── */
.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

input, textarea, select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  color: var(--fg);
  font-family: var(--sans);
  font-size: var(--text-base);
  font-weight: 400;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 2px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--red);
  background: rgba(192,24,97,0.05);
}
input::placeholder, textarea::placeholder { color: var(--fg-faint); }
select { cursor: pointer; }
select option { background: var(--bg-2); color: var(--fg); }
textarea { resize: vertical; min-height: 130px; }

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--red);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  align-self: flex-start;
  border-radius: 2px;
}
.form-submit:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,24,97,0.35);
}
.form-submit:disabled { opacity: 0.5; cursor: default; transform: none; box-shadow: none; }

@media (max-width: 900px) {
  .kontakt-grid   { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .form-submit    { width: 100%; }
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border-dark);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.footer-name {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.footer-sub {
  font-family: var(--sans);
  font-size: 0.62rem;
  color: var(--fg-faint);
  letter-spacing: 0.06em;
}

.footer-copy {
  font-family: var(--sans);
  font-size: 0.68rem;
  color: var(--fg-faint);
}

.footer-credit {
  font-family: var(--sans);
  font-size: 0.68rem;
  color: var(--fg-faint);
}
.footer-credit a { color: var(--red-light); transition: opacity 0.2s; }
.footer-credit a:hover { opacity: 0.75; }

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; text-align: center; gap: 0.5rem; }
}

/* ══════════════════════════════════
   CHARTERTURER — INLINE (index)
══════════════════════════════════ */
.tjanster-section {
  padding: var(--section-v) 0 0;
  border-top: 1px solid var(--border-dark);
}
.tjanster-section .section-head { margin-bottom: 3rem; }

.tur-list-inline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-dark);
  margin-top: 0;
}

.tur-inline {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border-dark);
  background: var(--bg-card);
  transition: background 0.3s;
}
.tur-inline:last-child { border-right: none; }
.tur-inline:hover { background: #1c1c24; }

.tur-inline-img {
  aspect-ratio: 3/4;
  flex-shrink: 0;
  position: relative;
}
.tur-inline-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, var(--bg-card) 100%);
}

.tur-inline-body {
  padding: 1.5rem 1.5rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tur-inline-title {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 0.6rem;
  line-height: 1.15;
}

.tur-inline-body p {
  font-size: var(--text-sm);
  color: var(--fg-dim);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}

@media (max-width: 1024px) {
  .tur-list-inline { grid-template-columns: repeat(2, 1fr); }
  .tur-inline:nth-child(2) { border-right: none; }
  .tur-inline { border-bottom: 1px solid var(--border-dark); }
}
@media (max-width: 560px) {
  .tur-list-inline { grid-template-columns: 1fr; }
  .tur-inline { border-right: none; }
}

/* ══════════════════════════════════
   VÅRA BÅTAR — INLINE (index)
══════════════════════════════════ */
.batar-section {
  padding: var(--section-v) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border-dark);
}

.batar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-dark);
  margin-top: 3rem;
}

.bat-kort {
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background 0.3s;
}
.bat-kort:hover { background: #1c1c24; }

.bat-kort-img {
  aspect-ratio: 16/9;
  position: relative;
  flex-shrink: 0;
}
.bat-kort-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--bg-card) 100%);
}

.bat-kort-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bat-kort-body h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.bat-specs-mini {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-dark);
  margin: 0.5rem 0 1.25rem;
}
.bat-specs-mini .spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-dark);
  gap: 1rem;
}
.bat-specs-mini dt {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.bat-specs-mini dd {
  font-size: 0.8rem;
  color: var(--fg-dim);
  text-align: right;
}

@media (max-width: 700px) {
  .batar-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   SPECIALUPPDRAG — INLINE (index)
══════════════════════════════════ */
.special-section {
  padding: var(--section-v) 0;
  border-top: 1px solid var(--border-dark);
}

/* ══════════════════════════════════
   FOOTER NAV
══════════════════════════════════ */
.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-faint);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--red-light); }

/* ══════════════════════════════════
   NAV ACTIVE LINK
══════════════════════════════════ */
.nav-link--active {
  color: var(--fg) !important;
}
.nav-link--active::after { width: 100% !important; }

/* ══════════════════════════════════
   BILDGALLERI (index)
══════════════════════════════════ */
.galleri { background: var(--bg); }

.galleri-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 280px 220px;
  gap: 3px;
}

/* Placeholder gradients — byt mot background-image:url(...) i HTML */
.gfoto { background: #111; overflow: hidden; position: relative; }
.gfoto::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.06);
  transition: background 0.4s;
}
.gfoto:hover::after { background: rgba(0,0,0,0); }

.gfoto--wide   { grid-column: span 4; background: linear-gradient(145deg,#1a0a10,#0a0510); }
.gfoto--tall   { grid-column: span 2; grid-row: span 2; background: linear-gradient(175deg,#0e1520,#060c14); }
.gfoto:nth-child(3) { background: linear-gradient(145deg,#0a1a10,#050e08); }
.gfoto:nth-child(4) { background: linear-gradient(145deg,#180e08,#0d0604); }
.gfoto--wide2  { grid-column: span 2; background: linear-gradient(145deg,#0a0e1a,#050710); }
.gfoto--sq     { background: linear-gradient(145deg,#140810,#0a0508); }
.gfoto--sq:last-child { background: linear-gradient(145deg,#081418,#040b0e); }

@media (max-width: 768px) {
  .galleri-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-auto-flow: row dense;
  }
  .gfoto--wide { grid-column: span 2; }
  .gfoto--wide2 { grid-column: auto; }
  .gfoto--tall { grid-column: span 1; grid-row: span 1; }
  .gfoto { min-height: 160px; }
}
@media (max-width: 480px) {
  .galleri-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .gfoto { min-height: 120px; }
}

/* ═══════════════════════════════════════════════════
   V4 REDESIGN OVERRIDES
   ═══════════════════════════════════════════════════ */
:root {
  --red: #d71962;
  --red-dark: #a70f49;
  --red-light: #ff4d8b;
  --bg: #071116;
  --bg-2: #0d1b22;
  --bg-card: #11232b;
  --fg: #fbf7f0;
  --fg-dim: rgba(251, 247, 240, 0.78);
  --fg-faint: rgba(251, 247, 240, 0.42);
  --border-dark: rgba(251, 247, 240, 0.12);
  --border-red: rgba(215, 25, 98, 0.42);
  --container: 1180px;
  --section-v: clamp(4.5rem, 8vw, 8rem);
}

body {
  background:
    linear-gradient(180deg, rgba(7, 17, 22, 0.2), var(--bg) 720px),
    var(--bg);
  letter-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0;
}

.container {
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.btn,
.form-submit,
.nav-link.nav-cta {
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn {
  min-height: 48px;
  padding: 0.9rem 1.45rem;
  font-weight: 700;
}

.btn-primary,
.form-submit,
.nav-link.nav-cta {
  background: var(--red);
  box-shadow: 0 14px 34px rgba(215, 25, 98, 0.2);
}

.btn-primary:hover,
.form-submit:hover,
.nav-link.nav-cta:hover {
  background: var(--red-light);
  box-shadow: 0 16px 42px rgba(215, 25, 98, 0.32);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.site-header {
  height: 78px;
}

/* Bredare header så de 7 menypunkterna får plats på en rad utan radbrytning */
.site-header .container {
  max-width: 1640px;
}

.site-header.scrolled {
  background: rgba(7, 17, 22, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo {
  height: 46px;
}

@media (min-width: 769px) {
  .nav-brand {
    transform: translateX(-32px);
  }
}

.nav-links {
  gap: clamp(1rem, 2.4vw, 2rem);
}

.nav-link {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.section-tag {
  color: var(--red-light);
  font-weight: 800;
  letter-spacing: 0.16em;
}

.section-title {
  max-width: 760px;
  font-size: clamp(2.35rem, 5.4vw, 5rem);
  line-height: 0.98;
}

/* Home */
.home-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
  overflow: hidden;
  padding: clamp(8rem, 13vh, 11rem) clamp(1rem, 5vw, 5rem) clamp(2rem, 6vh, 4.5rem);
}

.home-hero .hero-video {
  filter: saturate(1.06) contrast(1.02) brightness(1.16);
}

.home-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 17, 22, 0.78) 0%, rgba(7, 17, 22, 0.42) 46%, rgba(7, 17, 22, 0.06) 100%),
    linear-gradient(0deg, rgba(7, 17, 22, 0.82) 0%, rgba(7, 17, 22, 0.04) 52%, rgba(7, 17, 22, 0.34) 100%);
}

.home-hero-content,
.hero-panel {
  position: relative;
  z-index: 2;
}

.home-hero-content {
  max-width: 860px;
}

.hero-eyebrow {
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.home-title {
  max-width: 860px;
  font-size: clamp(3.2rem, 8.2vw, 8.2rem);
  line-height: 0.9;
  margin-bottom: 1.25rem;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.44);
}

.home-lead {
  max-width: 620px;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 2rem;
}

.hero-panel {
  align-self: end;
  padding: 1.3rem;
  background: rgba(7, 17, 22, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.hero-panel span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--red-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  color: #fff;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.35;
}

.inspo-strip {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  min-height: 230px;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.inspo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 230px;
  padding: 1.3rem;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(215, 25, 98, 0.16), rgba(7, 17, 22, 0.2)),
    linear-gradient(135deg, #173542, #08151b 70%);
  border-right: 1px solid var(--border-dark);
}

.inspo-card::before {
  content: none;
}

.inspo-card:nth-child(2) {
  background: linear-gradient(145deg, #2d3130, #111f23 68%);
}

.inspo-card:nth-child(3) {
  background: linear-gradient(145deg, #7e3741, #16252b 72%);
}

.inspo-card--dark {
  background: linear-gradient(145deg, #0e1825, #071116 72%);
  border-right: none;
}

.inspo-card span,
.inspo-card strong {
  position: relative;
  z-index: 1;
}

.inspo-card span {
  color: var(--red-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.inspo-card strong {
  max-width: 320px;
  margin-top: 0.35rem;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.3vw, 2.25rem);
  line-height: 1.02;
}

.home-section {
  padding: var(--section-v) 0;
  border-top: 1px solid var(--border-dark);
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.split-head p {
  margin: 0;
  font-size: 1.08rem;
}

.split-head p + p {
  margin-top: 1rem;
}

.split-head-sub {
  margin-top: 0.5rem !important;
  font-size: 0.95rem !important;
  color: var(--red-light);
  letter-spacing: 0.01em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
}

.service-tile {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(180deg, rgba(7, 17, 22, 0.08), rgba(7, 17, 22, 0.94)),
    linear-gradient(145deg, #173542, #071116);
  transition: transform 0.28s var(--ease), background 0.28s var(--ease);
}

.service-tile:hover {
  transform: translateY(-4px);
}

.service-tile--boats {
  background:
    linear-gradient(180deg, rgba(7, 17, 22, 0.1), rgba(7, 17, 22, 0.94)),
    linear-gradient(145deg, #2a3d38, #071116);
}

.service-tile--special {
  background:
    linear-gradient(180deg, rgba(7, 17, 22, 0.08), rgba(7, 17, 22, 0.94)),
    linear-gradient(145deg, #7b2444, #071116);
}

.tile-num {
  color: var(--red-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.service-tile h3 {
  margin: 0.7rem 0 0.75rem;
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
}

.service-tile p {
  max-width: 340px;
  margin: 0;
  color: rgba(251, 247, 240, 0.82);
}

.moments {
  background:
    linear-gradient(90deg, rgba(215, 25, 98, 0.1), transparent 46%),
    var(--bg-2);
}

.moments-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.moment-copy p {
  max-width: 590px;
}

.moment-list {
  border-top: 1px solid var(--border-dark);
}

.moment-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-dark);
  color: #fff;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 700;
}

.moment-list span {
  color: var(--red-light);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.home-contact {
  background: #09151a;
}

.kontakt-grid {
  gap: clamp(2rem, 6vw, 5rem);
}

.kontakt-form {
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

input,
textarea,
select {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.form-submit {
  min-height: 52px;
  padding: 1rem 1.6rem;
}

.home-about {
  padding: var(--section-v) 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 22, 0.82) 0%, rgba(7, 17, 22, 0.58) 48%, rgba(7, 17, 22, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 17, 22, 0.38) 0%, rgba(7, 17, 22, 0.08) 50%, rgba(7, 17, 22, 0.38) 100%),
    url("../img/framsida/framsida-5.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-panel {
  max-width: 860px;
}

.about-panel h2 {
  max-width: 760px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.98;
}

.about-panel p {
  max-width: 720px;
  font-size: 1.08rem;
}

/* Shared page polish */
.page-hero {
  background: var(--bg);
}

.page-hero-bg,
.tur-img,
.bat-img,
.bat-kort-img,
.tur-inline-img {
  background:
    linear-gradient(180deg, rgba(7, 17, 22, 0.08), rgba(7, 17, 22, 0.9)),
    linear-gradient(145deg, #173542, #071116) !important;
}

.page-hero-bg--special,
.tur-img--heldag,
.bat-img--lyx {
  background:
    linear-gradient(180deg, rgba(7, 17, 22, 0.08), rgba(7, 17, 22, 0.9)),
    linear-gradient(145deg, #7b2444, #071116) !important;
}

.page-hero-bg--batar,
.tur-img--lyx {
  background:
    linear-gradient(180deg, rgba(7, 17, 22, 0.08), rgba(7, 17, 22, 0.9)),
    linear-gradient(145deg, #2a3d38, #071116) !important;
}

.uppdrag-kort,
.tur,
.bat,
.privat-cta-inner,
.kontakt-big-link {
  border-radius: 8px;
}

@media (max-width: 980px) {
  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 8.5rem;
  }

  .hero-panel {
    max-width: 620px;
  }

  .inspo-strip,
  .service-grid,
  .split-head,
  .moments-grid {
    grid-template-columns: 1fr;
  }

  .inspo-card,
  .inspo-card--dark {
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
  }

  .service-tile {
    min-height: 310px;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 70px;
  }

  .nav-links {
    background:
      linear-gradient(160deg, rgba(215, 25, 98, 0.12), transparent 45%),
      var(--bg);
  }

  .home-title {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .home-hero {
    padding: 7.5rem 1rem 1.5rem;
  }

  .hero-btns {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-btns .btn {
    justify-content: center;
    width: 100%;
  }

  .inspo-card {
    min-height: 180px;
  }

  .kontakt-form {
    padding: 1rem;
  }
}

/* ══════════════════════════════════
   VAD VI GÖR — BANDS (index)
══════════════════════════════════ */
.vad-vi-gor { display: flex; flex-direction: column; }

.band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.band:nth-child(even) { direction: rtl; }
.band:nth-child(even) .band-content { direction: ltr; }
.band:nth-child(even) .band-img { direction: ltr; }

.band-img {
  position: relative;
  overflow: hidden;
  transition: transform 0.7s var(--ease);
}
.band:hover .band-img { transform: scale(1.04); }

.band--charter .band-img  { background: linear-gradient(160deg,#1a0810,#0d0408); }
.band--special .band-img  { background: linear-gradient(160deg,#080e1a,#040810); }
.band--batar   .band-img  { background: linear-gradient(160deg,#0a140a,#060c06); }

.band-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--bg-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  transition: background 0.3s;
}
.band:hover .band-content { background: var(--bg-3, #1a1a20); }

.band-tag {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 1rem;
  display: block;
}

.band-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 1rem;
}

.band-content p {
  font-size: var(--text-base);
  color: var(--fg-dim);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 1.5rem;
}

.band-link {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-light);
  transition: letter-spacing 0.25s, color 0.25s;
}
.band:hover .band-link { letter-spacing: 0.16em; color: var(--fg); }

@media (max-width: 768px) {
  .band { grid-template-columns: 1fr; min-height: auto; }
  .band:nth-child(even) { direction: ltr; }
  .band-img { min-height: 240px; }
}

/* ══════════════════════════════════
   PAGE HERO (undersidor)
══════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg--charter  { background: linear-gradient(160deg, #200a12 0%, #0e0408 100%); }
.page-hero-bg--rib      { background: linear-gradient(160deg, #1a0810 0%, #0d0408 100%); }
.page-hero-bg--batar    { background: linear-gradient(160deg, #08101e 0%, #040810 100%); }
.page-hero-bg--special  { background: linear-gradient(160deg, #10080e 0%, #08040a 100%); }

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.page-hero-title {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--fg);
  margin-bottom: 1rem;
}

.page-hero-sub {
  font-size: clamp(var(--text-sm), 1.5vw, var(--text-lg));
  color: var(--fg-dim);
  max-width: 500px;
  line-height: 1.75;
  margin: 0;
}

.page-hero-sub--wide {
  max-width: 980px;
}

/* ══════════════════════════════════
   CHARTERTURER
══════════════════════════════════ */
.turer { padding: var(--section-v) 0; }

.tur-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tur {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  border-bottom: 1px solid var(--border-dark);
}
.tur--flip { direction: rtl; }
.tur--flip .tur-body,
.tur--flip .tur-img { direction: ltr; }

.tur-img {
  overflow: hidden;
  position: relative;
  min-height: 320px;
}
.tur-img--rib     { background: linear-gradient(160deg, #1a0810 0%, #0d0408 100%); }
.tur-img--lyx     { background: linear-gradient(160deg, #0a1020 0%, #060a14 100%); }
.tur-img--vatten  { background: linear-gradient(160deg, #061418 0%, #030c10 100%); }
.tur-img--heldag  { background: linear-gradient(160deg, #120a08 0%, #0a0604 100%); }
.tur-img--rib1, .tur-img--rib2, .tur-img--rib3, .tur-img--rib4, .tur-img--rib5, .tur-img--rib6 { background: linear-gradient(160deg, #1a0810 0%, #0d0408 100%); }

/* Nummer-badge på RIB-turer */
.tur-number {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  z-index: 2;
  font-family: var(--serif, var(--sans));
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  width: 3.4rem;
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}

/* Boknings-knappar under turen (telefon + mejl) */
.tur-book {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.charter-forslag { margin-top: clamp(3.5rem, 8vw, 6.5rem); }
.charter-forslag .uppdrag-grid { margin-top: clamp(1.8rem, 4vw, 2.6rem); }

.tur-body {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-2);
}

.tur-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.tur-tag {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-light);
}
.tur-duration {
  font-family: var(--sans);
  font-size: 0.62rem;
  color: var(--fg-faint);
  letter-spacing: 0.1em;
}

.tur-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 0.75rem;
  line-height: 1.0;
}

.tur-body p {
  font-size: 0.85rem;
  color: var(--fg-dim);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 420px;
}

.tur-includes {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}
.tur-includes li {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--fg-dim);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.tur-includes li::before {
  content: '✓';
  color: var(--red);
  font-size: 0.7rem;
}

.tur-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.tur-price {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--fg-dim);
}
.tur-price strong {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.privat-cta {
  border: 1px solid var(--border-dark);
  padding: clamp(2rem, 4vw, 3rem);
  margin-top: 4rem;
}
.privat-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.privat-cta h3 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 0.25rem;
}
.privat-cta p {
  font-size: 0.85rem;
  color: var(--fg-dim);
  margin: 0;
}

@media (max-width: 820px) {
  .tur { grid-template-columns: 1fr; min-height: auto; }
  .tur--flip { direction: ltr; }
  .tur-img { min-height: 220px; }
}

/* ══════════════════════════════════
   VÅRA BÅTAR
══════════════════════════════════ */
.batar { padding: var(--section-v) 0 0; }

.bat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 0;
}
.bat--flip { direction: rtl; }
.bat--flip .bat-info,
.bat--flip .bat-media { direction: ltr; }

.bat-media {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.bat-img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease);
}
.bat:hover .bat-img { transform: scale(1.03); }

.bat-img--rib { background: linear-gradient(160deg, #1a0810 0%, #0d0408 100%); }
.bat-img--lyx { background: linear-gradient(160deg, #0a1020 0%, #060a14 100%); }

.bat-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
  gap: clamp(0.5rem, 1vw, 0.85rem);
  margin: clamp(1.5rem, 3vw, 2.2rem) 0 0;
}
.bat-gallery img {
  width: 100%;
  height: clamp(190px, 15vw, 240px);
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
@media (max-width: 520px) {
  .bat-gallery { grid-template-columns: repeat(2, 1fr); }
  .bat-gallery img { height: 150px; }
}

.bat-num {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--display);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  z-index: 1;
  pointer-events: none;
}

.bat-info {
  padding: clamp(2.5rem, 5vw, 4rem);
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--border-dark);
}

.bat-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 1rem;
  line-height: 1.0;
}

.bat-desc {
  font-size: 0.88rem;
  color: var(--fg-dim);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.bat-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
  border-top: 1px solid var(--border-dark);
}
.bat-specs .spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-dark);
  gap: 1rem;
}
.bat-specs dt {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  flex-shrink: 0;
}
.bat-specs dd {
  font-family: var(--sans);
  font-size: var(--text-sm);
  color: var(--fg-dim);
  text-align: right;
}

.bat-divider {
  height: 0;
  background: transparent;
  margin: clamp(3rem, 6vw, 5rem) 0;
}

@media (max-width: 820px) {
  .bat { grid-template-columns: 1fr; }
  .bat--flip { direction: ltr; }
  .bat-media { min-height: 260px; position: relative; }
  .bat-img { position: relative; min-height: 260px; inset: auto; }
  .bat-num { font-size: 4rem; }
}

/* ══════════════════════════════════
   SPECIALUPPDRAG (sida)
══════════════════════════════════ */
.special-intro { padding: clamp(3rem, 6vw, 5rem) 0; border-top: 1px solid var(--border-dark); }
.special-intro-inner {
  max-width: 700px;
}
.special-intro-title {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 1rem;
}
.special-intro-title em { font-style: normal; color: var(--red); }
.special-intro-inner p { font-size: 0.95rem; color: var(--fg-dim); }

.uppdrag-typer { padding: var(--section-v) 0; background: var(--bg-2); border-top: 1px solid var(--border-dark); }

/* US Navy / referensuppdrag-feature */
.special-feature { padding: var(--section-v) 0; border-top: 1px solid var(--border-dark); }
.feature-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: clamp(0.5rem, 1vw, 0.9rem);
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
}
.feature-shot {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  overflow: hidden;
}
.feature-shot--main { grid-column: span 2; grid-row: span 2; }
.uppdrag-grid.uppdrag-grid--two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 560px) {
  .uppdrag-grid.uppdrag-grid--two { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .feature-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .feature-shot { aspect-ratio: 4 / 3; }
  .feature-shot--main { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 16 / 10; }
}

.uppdrag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dark);
}
.uppdrag-kort {
  background: var(--bg-2);
  border-radius: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.3s;
}
.uppdrag-kort:hover { background: var(--bg-card); }
.uppdrag-kort--featured {
  background: var(--bg-2);
  border: none;
}
.uppdrag-ikon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.uppdrag-kort h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.15;
}
.uppdrag-kort p {
  font-size: var(--text-sm);
  color: var(--fg-dim);
  line-height: 1.7;
  flex: 1;
  margin: 0;
}
.uppdrag-link {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-light);
  transition: letter-spacing 0.2s;
}
.uppdrag-link:hover { letter-spacing: 0.16em; }

@media (max-width: 820px) {
  .uppdrag-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .uppdrag-grid { grid-template-columns: 1fr; }
}

.process { padding: var(--section-v) 0; border-top: 1px solid var(--border-dark); }
.process-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 3rem;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.process-step {
  flex: 1;
  min-width: 160px;
}
.step-num {
  display: block;
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.6;
}
.process-step h4 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: var(--text-sm);
  color: var(--fg-dim);
  line-height: 1.65;
  margin: 0;
}
.process-arrow {
  font-size: 1.5rem;
  color: var(--red-light);
  opacity: 0.4;
  padding-top: 0.5rem;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .process-arrow { display: none; }
  .process-steps { flex-direction: column; }
}

.page-cta { padding: 0 0 var(--section-v); }

/* ══════════════════════════════════
   KONTAKT (sida)
══════════════════════════════════ */
.kontakt-page {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: var(--section-v);
  min-height: 80vh;
}

.kontakt-page-header {
  margin-bottom: 4rem;
}
.kontakt-page-title {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fg);
  line-height: 0.95;
  margin-bottom: 0.75rem;
}
.kontakt-page-header p {
  font-size: 0.9rem;
  color: var(--fg-dim);
  max-width: 400px;
  margin: 0;
}

.kontakt-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.kontakt-big-link {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.5rem 0;
  border-bottom: none;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.kontakt-big-link:first-child { border-top: none; }
a.kontakt-big-link:hover .kontakt-big-val { color: var(--red-light); }

.kontakt-big-label {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-light);
}
.kontakt-big-val {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.kontakt-big-note {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--fg-faint);
}

.kontakt-form--full .form-submit { width: 100%; }

@media (max-width: 900px) {
  .kontakt-page-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   TACK-SIDA
══════════════════════════════════ */
.tack-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
}
.tack-inner {
  text-align: center;
  padding: 2rem;
}
.tack-title {
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--red);
  margin-bottom: 1rem;
  line-height: 0.9;
}
.tack-inner p {
  font-size: 1rem;
  color: var(--fg-dim);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.75;
}
.tack-inner a { color: var(--red-light); }

/* ══════════════════════════════════
   REDUCED MOTION
══════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .img-fade { opacity: 1 !important; transition: none; }
  .hero-video { transition: none; }
  .scroll-track { animation: none; }
  html { scroll-behavior: auto; }
  .band:hover .band-img,
  .bat:hover .bat-img { transform: none; }
}

/* ═══════════════════════════════════════════════════
   V5 CLEAN SYSTEM TYPOGRAPHY
   ═══════════════════════════════════════════════════ */
:root {
  --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
}

h1,
h2,
h3,
h4,
h5,
h6,
.home-title,
.section-title,
.page-hero-title,
.kontakt-title,
.kontakt-page-title,
.tack-title,
.about-panel h2,
.service-tile h3,
.inspo-card strong,
.moment-list div,
.tur-title,
.bat-title,
.special-intro-title,
.process-title,
.uppdrag-kort h3,
.footer-name {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
}

.home-title {
  max-width: 780px;
  font-size: clamp(2.65rem, 5.8vw, 5.9rem);
  line-height: 0.98;
}

.section-title,
.about-panel h2 {
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1;
}

.page-hero-title,
.kontakt-page-title {
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  line-height: 0.96;
}

.hero-title-2,
.om-title em,
.special-title em,
.special-intro-title em {
  font-style: normal;
}

.hero-eyebrow,
.section-tag,
.nav-link,
.btn,
.form-submit,
.tile-num,
.inspo-card span,
.band-tag,
.uppdrag-link,
.form-label,
.info-label,
.kontakt-big-label,
.footer-nav a {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.section-tag,
.hero-eyebrow,
.inspo-card span,
.tile-num,
.kontakt-big-label {
  font-size: 0.72rem;
}

.nav-link {
  font-size: 0.78rem;
}

.btn,
.form-submit {
  font-size: 0.76rem;
}

p,
.home-lead,
.split-head p,
.about-panel p,
.kontakt-desc,
.page-hero-sub {
  font-family: var(--sans);
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .home-title {
    font-size: clamp(2.7rem, 12vw, 3.8rem);
    line-height: 1;
  }

  .site-header .container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav {
    justify-content: space-between;
  }

  .nav-brand {
    transform: none;
    margin-left: 0;
  }

  .hamburger {
    margin-left: auto;
  }
}

/* ═══════════════════════════════════════════════════
   RIKTIGA BILDER  (ersätter tidigare placeholders)
   ═══════════════════════════════════════════════════ */
.inspo-card,
.service-tile,
.page-hero-bg,
.tur-img,
.bat-img {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Mörk gradient så text ovanpå förblir läsbar */
.inspo-card,
.service-tile,
.page-hero-bg {
  --shade: linear-gradient(180deg, rgba(7, 17, 22, 0.06), rgba(7, 17, 22, 0.64));
}

/* ---- Startsida: inspirationsremsa ---- */
.inspo-card:nth-child(1) { background-image: var(--shade), url("../img/specialuppdrag/special-7.jpg") !important; }
.inspo-card:nth-child(2) { background-image: var(--shade), url("../img/framsida/framsida-5.jpg") !important; }
.inspo-card:nth-child(3) { background-image: var(--shade), url("../img/batar/rib-1.jpg") !important; }
.inspo-card:nth-child(4) { background-image: linear-gradient(180deg, rgba(7, 17, 22, 0.40), rgba(7, 17, 22, 0.88)), url("../img/specialuppdrag/special-2.jpg") !important; }

/* ---- Startsida: tjänste-tiles ---- */
.service-tile--charter { background-image: var(--shade), url("../img/framsida/framsida-1.jpg") !important; }
.service-tile--boats   { background-image: var(--shade), url("../img/framsida/framsida-6.jpg") !important; }
.service-tile--special { background-image: var(--shade), url("../img/specialuppdrag/special-5.jpg") !important; }

/* ---- Sid-hjältar ---- */
.page-hero-bg--charter { background-image: var(--shade), url("../img/miljo/miljo-3.jpg") !important; }
.page-hero-bg--rib     { background-image: var(--shade), url("../img/specialuppdrag/special-7.jpg") !important; }
.page-hero-bg--batar   { background-image: var(--shade), url("../img/framsida/framsida-4.jpg") !important; }
.page-hero-bg--special { background-image: var(--shade), url("../img/specialuppdrag/special-1.jpg") !important; }

/* ---- Våra båtar: bildpaneler (ingen text ovanpå) ---- */
.bat-img--rib { background-image: url("../img/batar/rib-g5.jpg") !important; }
.bat-img--lyx { background-image: url("../img/batar/fairline-2.jpg") !important; }

/* ---- Charterturer: bildpaneler ---- */
.tur-img--rib    { background-image: url("../img/specialuppdrag/special-7.jpg") !important; }
.tur-img--lyx    { background-image: url("../img/framsida/framsida-8.jpg") !important; }
.tur-img--vatten { background-image: url("../img/Vattensport-4.webp") !important; }
.tur-img--heldag { background-image: url("../img/framsida/framsida-1.jpg") !important; }

/* RIB-turer: de sex färdiga turernas bilder (kundens egna foton, 260625) */
.tur-img--rib1 { background-image: url("../img/rib/rib-action.webp") !important; }      /* Actionturen */
.tur-img--rib2 { background-image: url("../img/rib/rib-familj.webp") !important; }      /* Familjeturen */
.tur-img--rib3 { background-image: url("../img/rib/rib-tarno.webp") !important; }       /* Tärnöturen */
.tur-img--rib4 { background-image: url("../img/rib/rib-tjaro.webp") !important; }       /* Tjäröturen */
.tur-img--rib5 { background-image: url("../img/rib/rib-vattensport.webp") !important; } /* Vattensportturen */
.tur-img--rib6 { background-image: url("../img/rib/rib-blekinge.webp") !important; }    /* Stora Blekingeturen */

/* RIB-turer: intro-lead, premium-tagg och "Bra att veta"-panel */
.turer-lead {
  max-width: 760px;
  margin: 0 0 clamp(2rem, 5vw, 3.5rem);
  font-size: clamp(var(--text-base), 1.6vw, var(--text-lg));
  line-height: 1.7;
  color: var(--fg-dim);
}
.tur-tag--premium { color: var(--red-light); }
.tur-info {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: clamp(1.75rem, 4vw, 3rem);
}
.tur-info h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--fg);
  margin: 0 0 1.5rem;
}
.tur-info .tur-includes { margin: 0; }
.tur-skraddar {
  margin: 1.75rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-dark);
  color: var(--fg-dim);
  line-height: 1.7;
}
.tur-skraddar a { color: var(--red-light); font-weight: 600; white-space: nowrap; }

/* ---- Skärgårdsturer: hjälte, turkort, skärgårdsstrip ---- */
.uplev-img, .skar-img, .gfoto {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.page-hero-bg--skargard { background-image: var(--shade), url("../img/miljo/miljo-1.jpg") !important; }

.uplev-img--rib   { background-image: url("../img/specialuppdrag/special-7.jpg") !important; }
.uplev-img--lyx   { background-image: url("../img/batar/fairline-4.jpg") !important; }
.uplev-img--vatten { background-image: url("../img/Vattensport-2.webp") !important; }
.uplev-img--mat   { background-image: url("../img/framsida/framsida-5.jpg") !important; }

.skar-img--karlshamn  { background-image: url("../img/miljo/miljo-6.jpg") !important; }
.skar-img--tjaro      { background-image: url("../img/skargard/tjaro-2.jpg") !important; }
.skar-img--karlskrona { background-image: url("../img/skargard/karlskrona.jpg") !important; }
.skar-img--ronneby    { background-image: url("../img/skargard/ronneby.jpg") !important; }
.skar-img--solvesborg { background-image: url("../img/miljo/miljo-8.jpg") !important; }

/* Tjärö-galleri */
.galleri--tjaro .gfoto:nth-child(1) { background-image: url("../img/skargard/tjaro-9.jpg") !important; }
.galleri--tjaro .gfoto:nth-child(2) { background-image: url("../img/skargard/tjaro-1.jpg") !important; }
.galleri--tjaro .gfoto:nth-child(3) { background-image: url("../img/skargard/tjaro-2.jpg") !important; }
.galleri--tjaro .gfoto:nth-child(4) { background-image: url("../img/skargard/tjaro-13.jpg") !important; }
.galleri--tjaro .gfoto:nth-child(5) { background-image: url("../img/skargard/tjaro-5.jpg") !important; }
.galleri--tjaro .gfoto:nth-child(6) { background-image: url("../img/skargard/tjaro-7.jpg") !important; }
.galleri--tjaro .gfoto:nth-child(7) { background-image: url("../img/skargard/tjaro-3.jpg") !important; }

/* ---- Referenser: hjälte + galleri ---- */
.page-hero-bg--referenser { background-image: var(--shade), url("../img/referenser/referens-8.jpg") !important; }

.galleri--ref .gfoto:nth-child(1) { background-image: url("../img/referenser/referens-4.jpg") !important; }
.galleri--ref .gfoto:nth-child(2) { background-image: url("../img/referenser/referens-1.jpg") !important; }
.galleri--ref .gfoto:nth-child(3) { background-image: url("../img/referenser/referens-8.jpg") !important; }
.galleri--ref .gfoto:nth-child(4) { background-image: url("../img/referenser/referens-12.jpg") !important; }
.galleri--ref .gfoto:nth-child(5) { background-image: url("../img/referenser/referens-5.jpg") !important; }
.galleri--ref .gfoto:nth-child(6) { background-image: url("../img/referenser/referens-3.jpg") !important; }
.galleri--ref .gfoto:nth-child(7) { background-image: url("../img/referenser/referens-7.jpg") !important; }

/* ---- Referenser: kund-rutnät med bilder ---- */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: clamp(0.55rem, 1.1vw, 0.9rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.ref-card {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
}
.ref-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.ref-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.8rem 1rem 0.9rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  color: #fff;
  background: linear-gradient(to top, rgba(7, 17, 22, 0.94) 0%, rgba(7, 17, 22, 0.55) 52%, rgba(7, 17, 22, 0) 100%);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}
.ref-card:hover img { transform: scale(1.06); }
@media (max-width: 420px) {
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════════════ */
.nav-link,
.nav-link:hover,
.nav-link--active {
  color: #fff !important;
}

@media (max-width: 768px) {
  .nav-links {
    gap: clamp(1.1rem, 3.5vh, 1.55rem);
    padding: 2.5rem 1.5rem 4rem;
  }

  .nav-link,
  .nav-link.nav-cta {
    font-size: clamp(1.8rem, 8vw, 3rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
  }

  .nav-link.nav-cta {
    padding: 0.8rem 1.5rem;
    background: var(--red);
    box-shadow: 0 14px 34px rgba(215, 25, 98, 0.2);
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
  }

  .nav-link.nav-cta:hover {
    background: var(--red-light);
    box-shadow: 0 16px 42px rgba(215, 25, 98, 0.32);
  }

  .nav-link::after {
    display: none;
  }

  .nav-links li:nth-child(6) {
    margin-top: clamp(1.55rem, 5vh, 2.4rem);
  }

}
