@charset "UTF-8";

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

  :root {
    --ink: #1a1a18;
    --paper: #f5f2ec;
    --warm: #e8e2d5;
    --accent: #2e6b4f;
    --accent-light: #4a9970;
    --gold: #b8862a;
    --muted: #6b6660;
    --border: #d4cfc7;
    --white: #ffffff;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.7;
    font-size: 17px;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(245,242,236,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2.5rem;
    height: 60px;
  }
  .nav-logo {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
  }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--accent); }

  /* HERO */
  .hero {
    height: 100vh; min-height: 600px;
    position: relative;
    display: flex; align-items: flex-end;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('images/segling-01.jpg');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.72);
    transform: scale(1.04);
    animation: subtleZoom 18s ease-out forwards;
  }
  @keyframes subtleZoom {
    from { transform: scale(1.04); }
    to { transform: scale(1.0); }
  }
  .hero-content {
    position: relative; z-index: 2;
    padding: 0 4rem 5rem;
    max-width: 780px;
  }
  .hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.3);
  }
  .hero h1 {
    font-family: 'Lora', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.18;
    color: white;
    margin-bottom: 1.4rem;
  }
  .hero h1 em { font-style: italic; color: rgba(255,255,255,0.85); }
  .hero-lead {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.82);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2.2rem;
  }
  .hero-scroll {
    display: flex; align-items: center; gap: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .scroll-line { width: 40px; height: 1px; background: rgba(255,255,255,0.4); }

  /* GENERAL */
  section { padding: 6rem 0; }
  .container { max-width: 1120px; margin: 0 auto; padding: 0 2.5rem; }
  hr.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

  .section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.8rem;
  }
  .section-header { margin-bottom: 3.5rem; }
  .section-header h2 {
    font-family: 'Lora', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 1rem;
  }
  .section-header p { font-size: 1.05rem; color: var(--muted); max-width: 580px; line-height: 1.75; }

  /* SKÄRGÅRD */
  .skargard-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-bottom: 4rem; }
  .fact-row {
    display: flex; gap: 2rem;
    margin: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
  }
  .fact { flex: 1; text-align: center; }
  .fact-num { font-family: 'Lora', serif; font-size: 2.2rem; font-weight: 600; color: var(--accent); display: block; }
  .fact-label { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

  .mosaic { display: grid; gap: 1rem; }
  .mosaic-3 { grid-template-columns: repeat(3, 1fr); }
  .mosaic-wrap { overflow: hidden; border-radius: 2px; }
  .mosaic-img {
    width: 100%; aspect-ratio: 1; object-fit: cover; display: block; border-radius: 2px;
    transition: transform 0.4s ease;
  }
  .mosaic-img:hover { transform: scale(1.02); }

  /* HAMNAR */
  .hamnar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 3rem 0; }
  .hamn-item { position: relative; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
  .hamn-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: brightness(0.85);
  }
  .hamn-item:hover img { transform: scale(1.06); filter: brightness(0.7); }
  .hamn-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    color: white;
    padding: 2rem 1.2rem 1rem;
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 400;
  }
  .hamn-sub {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.75;
    display: block;
  }

  /* NATURHAMNAR */
  .naturhamn-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .naturhamn-images { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .naturhamn-images img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 2px; }
  .naturhamn-images .nat-wide { grid-column: 1 / -1; aspect-ratio: 2 / 1; }

  /* LÄRA SIG */
  .section-alt { background: var(--warm); }
  .lara-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .lara-img-stack { position: relative; height: 480px; }
  .lara-img-stack img { position: absolute; object-fit: cover; border-radius: 2px; }
  .lara-img-main { top: 0; left: 0; width: 80%; height: 80%; }
  .lara-img-accent { bottom: 0; right: 0; width: 55%; height: 55%; border: 5px solid var(--warm); }
  .lara-text h2 { font-family:'Lora',serif; font-size:clamp(1.6rem,3vw,2.2rem); font-weight:400; line-height:1.25; margin-bottom:1rem; }
  .lara-text p { color: #4a4641; line-height: 1.8; margin-bottom: 1rem; }
  .kurslink {
    display: inline-flex; align-items: center; gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--accent); text-decoration: none;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .kurslink:hover { color: var(--accent-light); border-color: var(--accent-light); }

  /* NAVIGERA */
  .nav-section-inner { display: grid; grid-template-columns: 3fr 2fr; gap: 5rem; align-items: start; }
  .intyg-cards { display: flex; flex-direction: column; gap: 1.2rem; }
  .intyg-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    padding: 1.5rem 1.8rem;
  }
  .intyg-card h4 { font-family:'Lora',serif; font-size:1.15rem; font-weight:600; margin-bottom:0.4rem; }
  .intyg-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }
  .intyg-card a { color: var(--accent); font-size: 0.85rem; font-weight: 600; text-decoration: none; display: inline-block; margin-top: 0.5rem; }
  .intyg-card a:hover { text-decoration: underline; }
  .intyg-note { background: var(--warm); border: 1px solid var(--border); padding: 1.5rem 1.8rem; font-size: 0.9rem; color: #4a4641; line-height: 1.7; }
  .intyg-note a { color: var(--accent); text-decoration: none; font-weight: 600; }

  /* QUOTE */
  .quote-block {
    border-left: 2px solid var(--accent);
    padding: 1rem 0 1rem 1.5rem;
    margin: 1.5rem 0;
  }
  .quote-block p { font-family:'Lora',serif; font-style:italic; font-size:1.1rem; color:var(--ink); line-height:1.6; }

  /* MEDELHAVET */
  .med-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .med-images { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .med-images img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 2px; }
  .med-images .med-wide { grid-column: 1 / -1; aspect-ratio: 2/1; }
  .med-text h3 { font-family:'Lora',serif; font-size:1.35rem; font-weight:400; margin-bottom:1rem; }
  .med-text p { color: #4a4641; line-height: 1.8; margin-bottom: 1rem; }
  .destination-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0; }
  .dtag {
    background: var(--white); border: 1px solid var(--border);
    padding: 0.3rem 0.8rem;
    font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em;
  }

  /* CTA STRIP */
  .cta-strip { background: var(--accent); padding: 3.5rem 0; }
  .cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
  .cta-inner h3 {
    font-family:'Lora',serif; font-size:1.6rem; font-weight:400;
    color: white; max-width: 480px; line-height: 1.35;
  }
  .cta-inner h3 em { font-style: italic; }
  .cta-links { display: flex; flex-direction: column; gap: 0.8rem; flex-shrink: 0; }
  .cta-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; text-align: center; white-space: nowrap;
    transition: all 0.2s;
  }
  .cta-btn-primary { background: white; color: var(--accent); }
  .cta-btn-primary:hover { background: var(--paper); }
  .cta-btn-outline { border: 1px solid rgba(255,255,255,0.5); color: white; }
  .cta-btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }

  /* KOM UT */
  .bat-inner-wrap { background: var(--ink); padding: 4rem; border-radius: 2px; }
  .bat-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .bat-inner img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 2px; }
  .bat-text h3 { font-family:'Lora',serif; font-size:1.4rem; font-weight:400; color:var(--paper); margin-bottom:1rem; }
  .bat-text p { color: rgba(245,242,236,0.75); line-height: 1.8; margin-bottom: 1rem; }

  /* FOOTER */
  footer { background: #111; color: rgba(255,255,255,0.5); padding: 3rem 0; font-size: 0.875rem; }
  .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
  .footer-brand { font-family:'Lora',serif; font-size:1rem; color:rgba(255,255,255,0.8); font-weight:600; }
  .footer-note { font-size:0.82rem; max-width:400px; line-height:1.6; }
  .footer-note a { color: rgba(255,255,255,0.7); }
  .footer-links a { color:rgba(255,255,255,0.5); text-decoration:none; margin-left:1.5rem; font-size:0.82rem; transition:color 0.2s; }
  .footer-links a:hover { color:rgba(255,255,255,0.9); }

  @media (max-width: 768px) {
    nav { padding: 0 1.2rem; }
    .nav-links { display: none; }
    .hero-content { padding: 0 1.5rem 3rem; }
    .skargard-intro, .lara-grid, .nav-section-inner,
    .med-layout, .bat-inner, .naturhamn-layout { grid-template-columns: 1fr; gap: 2rem; }
    .mosaic-3 { grid-template-columns: 1fr 1fr; }
    .hamnar-grid { grid-template-columns: 1fr 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .lara-img-stack { height: 300px; }
    .bat-inner-wrap { padding: 2rem; }
  }
