/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  color: #1a2b3c;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: #1a5a8a; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== PALETTE — Saltsjöbaden ===== */
/*
  Djuphavsblå (Baggensfjärden), tallgrönt (Rösunda skog),
  granit (klipporna), sandguld (stranden), björkvitt
*/
:root {
  --navy:        #0a2235;
  --navy-mid:    #163d5e;
  --navy-light:  #e4eef6;
  --sea:         #1e6a8a;
  --sea-light:   #cce8f5;
  --pine:        #2c4a32;
  --pine-light:  #e8f0e9;
  --sand:        #c4a055;
  --sand-light:  #fdf5e6;
  --sand-dark:   #9a7a30;
  --granite:     #7a8e9a;
  --birch:       #f7f4ee;
  --copper:      #a85830;
  --text:        #161f2a;
  --text-muted:  #4e6070;
  --border:      #d8e4ee;
  --bg:          #f2f6fa;
  --white:       #ffffff;
  --radius:      8px;
  --radius-lg:   14px;
  --radius-xl:   22px;
  --shadow-sm:   0 1px 4px rgba(10,34,53,.07);
  --shadow:      0 4px 18px rgba(10,34,53,.10);
  --shadow-lg:   0 14px 44px rgba(10,34,53,.16);
}

/* ===== ALERT BAR ===== */
.alert-bar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: rgba(255,255,255,.9);
  padding: 10px 20px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 500;
  border-bottom: 2px solid var(--sand);
}
.alert-bar strong { font-weight: 700; color: #fff; }
.alert-bar a { color: #f0cf85; font-weight: 700; text-decoration: underline; }

/* ===== HEADER / NAV ===== */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(13,43,69,.35);
  border-bottom: 2px solid rgba(201,169,110,.25);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  letter-spacing: -.01em;
}
.logo-icon {
  height: 54px;
  width: auto;
  max-width: 240px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-icon img {
  height: 54px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  border-radius: 0 !important;
}
.logo-sub {
  font-size: 11px;
  font-weight: 500;
  opacity: .6;
  display: block;
  letter-spacing: .04em;
  text-transform: uppercase;
}

nav ul { list-style: none; display: flex; gap: 2px; }
nav a {
  color: rgba(255,255,255,.7);
  padding: 7px 11px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  transition: all .15s;
  text-decoration: none;
  white-space: nowrap;
}
nav a:hover { background: rgba(255,255,255,.1); color: #fff; text-decoration: none; }
nav a.active { background: rgba(201,169,110,.2); color: #f0d898; font-weight: 700; border-bottom: 2px solid var(--sand); border-radius: 7px 7px 0 0; }

/* Hamburger */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }
.mobile-nav { display: none; background: #081c2d; padding: 8px 16px 20px; border-top: 1px solid rgba(255,255,255,.07); }
.mobile-nav a { display: block; color: rgba(255,255,255,.75); padding: 12px 8px; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 15px; text-decoration: none; }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: #fff; }
.mobile-nav.open { display: block; }

/* ===== HERO ===== */
.hero {
  background:
    linear-gradient(180deg,
      rgba(6,18,32,.98)  0%,
      rgba(10,34,53,.96) 25%,
      rgba(16,48,75,.93) 55%,
      rgba(22,68,110,.88) 78%,
      rgba(30,106,138,.82) 100%
    );
  color: #fff;
  padding: 110px 24px 150px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Horisontlinje — hav möter himmel */
.hero::before {
  content: '';
  position: absolute;
  top: 52%;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.12) 20%, rgba(196,160,85,.25) 50%, rgba(255,255,255,.12) 80%, transparent 100%);
  box-shadow:
    0 12px 0 rgba(255,255,255,.04),
    0 24px 0 rgba(255,255,255,.025),
    0 40px 0 rgba(255,255,255,.015),
    0 -12px 0 rgba(196,160,85,.06),
    0 -28px 0 rgba(255,255,255,.03);
}
/* Ljusglow — Grand Hotel-stilen */
.hero::after {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse at 50% 30%, rgba(196,160,85,.18) 0%, rgba(30,106,138,.08) 45%, transparent 70%);
  pointer-events: none;
}
/* Tallsilhuett-effekt i botten */
.hero-trees {
  position: absolute;
  bottom: 65px; left: 0; right: 0;
  height: 80px;
  background:
    radial-gradient(ellipse 18px 60px at 8%  100%, rgba(20,40,25,.9) 90%, transparent 91%),
    radial-gradient(ellipse 14px 50px at 12% 100%, rgba(20,40,25,.8) 90%, transparent 91%),
    radial-gradient(ellipse 20px 70px at 16% 100%, rgba(20,40,25,.9) 90%, transparent 91%),
    radial-gradient(ellipse 12px 45px at 19% 100%, rgba(20,40,25,.7) 90%, transparent 91%),
    radial-gradient(ellipse 22px 75px at 82% 100%, rgba(20,40,25,.9) 90%, transparent 91%),
    radial-gradient(ellipse 16px 55px at 86% 100%, rgba(20,40,25,.8) 90%, transparent 91%),
    radial-gradient(ellipse 18px 65px at 90% 100%, rgba(20,40,25,.9) 90%, transparent 91%),
    radial-gradient(ellipse 14px 48px at 93% 100%, rgba(20,40,25,.75) 90%, transparent 91%);
  pointer-events: none;
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,160,85,.12);
  border: 1px solid rgba(196,160,85,.4);
  color: #ddc070;
  padding: 6px 18px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.08;
  letter-spacing: -.02em;
  text-shadow: 0 2px 40px rgba(0,0,0,.4);
}
.hero h1 span {
  background: linear-gradient(90deg, #c4a055, #e8cc88, #dbb85a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: clamp(15px, 2.2vw, 18px);
  opacity: .78;
  max-width: 500px;
  margin: 0 auto 38px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: .01em;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Wave divider — dubbel våg */
.wave-divider { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 2; }
.wave-divider svg { display: block; width: 100%; height: 80px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all .2s;
  text-decoration: none;
  letter-spacing: .01em;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--sand) 0%, #ddc070 100%);
  color: #1a1a1a;
  box-shadow: 0 4px 14px rgba(201,169,110,.45);
}
.btn-primary:hover { box-shadow: 0 6px 22px rgba(201,169,110,.55); }
.btn-outline {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,.18); }
.btn-blue {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(13,43,69,.3);
}
.btn-blue:hover { box-shadow: 0 6px 22px rgba(13,43,69,.4); }
.btn-ghost { background: var(--navy-light); color: var(--navy); }
.btn-ghost:hover { background: #d0e2f5; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 60%, var(--sea) 100%);
  color: #fff;
  padding: 60px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,.02) 40px, rgba(255,255,255,.02) 80px);
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; width: 100%;
  height: 30px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.page-header p { opacity: .8; font-size: 16px; max-width: 480px; margin: 0 auto; position: relative; z-index: 1; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 24px; }
.section-sm { padding: 48px 24px; }
.section-alt { background: var(--birch); }
.section-dark { background: var(--navy); color: #fff; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy);
  border-bottom: 3px solid var(--sand);
}
.stats-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; }
.stat-item {
  flex: 1; max-width: 220px;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  position: relative;
  transition: background .2s;
}
.stat-item:hover { background: rgba(255,255,255,.05); }
.stat-item:last-child { border-right: none; }
.stat-value { font-size: 32px; font-weight: 900; color: #ddc070; line-height: 1; letter-spacing: -.02em; font-family: 'Playfair Display', Georgia, serif; }
.stat-label { font-size: 10.5px; color: rgba(255,255,255,.55); margin-top: 6px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }

/* ===== CARDS ===== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; }
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--border);
  border-top-color: var(--sand);
}
.card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy-light), #ccdde8);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(10,34,53,.08);
}
.card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--navy); letter-spacing: -.01em; }
.card p { color: var(--text-muted); font-size: 14px; line-height: 1.65; }
.card-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 16px; font-size: 13px; font-weight: 700; color: var(--sea); }
.card-link:hover { gap: 8px; text-decoration: none; color: var(--navy); }

/* ===== NEWS ITEMS ===== */
.news-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.news-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy-light);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  transition: all .2s;
}
.news-item:hover { box-shadow: var(--shadow); border-left-color: var(--sand); }
.news-date {
  flex-shrink: 0;
  text-align: center;
  background: var(--navy-light);
  color: var(--navy);
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 800;
  font-size: 10.5px;
  line-height: 1.2;
  width: 50px;
  height: fit-content;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.news-date span { display: block; font-size: 22px; font-weight: 900; letter-spacing: -.02em; font-family: 'Playfair Display', Georgia, serif; }
.news-content h3 { font-size: 15px; font-weight: 700; margin-bottom: 5px; color: var(--text); }
.news-content p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
.badge { display: inline-block; padding: 2px 10px; border-radius: 99px; font-size: 10.5px; font-weight: 700; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .05em; }
.badge-info { background: #dbeafe; color: #1e40af; }
.badge-warn { background: #fef3c7; color: #92400e; }
.badge-urgent { background: #fee2e2; color: #991b1b; }

/* ===== FORMS ===== */
.form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; color: var(--text); letter-spacing: .01em; }
.form-group label .req { color: #dc2626; margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: all .15s;
}
.form-control:focus { outline: none; border-color: var(--navy-mid); background: #fff; box-shadow: 0 0 0 3px rgba(13,43,69,.08); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23536678' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px; background: #fffbeb; border-radius: var(--radius); border: 1.5px solid #fde68a; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; accent-color: var(--navy); }
.form-check label { font-size: 14px; font-weight: 600; color: #92400e; margin: 0; }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 5px; }
.form-success { display: none; background: #f0fdf4; border: 1.5px solid #86efac; border-radius: var(--radius); padding: 16px 20px; color: #166534; font-weight: 600; margin-top: 16px; font-size: 14px; }

/* ===== INFO SECTIONS ===== */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 960px; margin: 0 auto; align-items: start; }
.info-block h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.info-block p { color: var(--text-muted); margin-bottom: 12px; line-height: 1.75; font-size: 15px; }
.info-list { list-style: none; }
.info-list li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; align-items: flex-start; }
.info-list li:last-child { border-bottom: none; }
.info-list .li-label { font-weight: 700; color: var(--navy); min-width: 150px; flex-shrink: 0; font-size: 13px; }

/* ===== BOARD MEMBERS ===== */
.board-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 20px; max-width: 960px; margin: 0 auto; }
.board-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 28px 18px; text-align: center; box-shadow: var(--shadow-sm); transition: all .2s; }
.board-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.board-avatar { width: 68px; height: 68px; background: linear-gradient(135deg, var(--navy-light), #c0d8f0); border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--border); }
.board-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.board-card .role { font-size: 11.5px; color: var(--navy-mid); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.board-card .email { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

/* ===== DOCUMENT LIST ===== */
.doc-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.doc-item { display: flex; align-items: center; gap: 16px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 16px 20px; box-shadow: var(--shadow-sm); transition: all .2s; }
.doc-item:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); border-color: #b8d0e8; }
.doc-icon { font-size: 26px; flex-shrink: 0; }
.doc-info { flex: 1; }
.doc-info h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 2px; }
.doc-info span { font-size: 12px; color: var(--text-muted); }
.doc-item a { font-size: 13px; font-weight: 700; white-space: nowrap; color: var(--navy-mid); }

/* ===== SECTION TITLE ===== */
.section-title { text-align: center; margin-bottom: 48px; }
.section-title .overline { display: inline-block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--sand-dark); margin-bottom: 10px; }
.section-title h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; color: var(--navy); margin-bottom: 10px; line-height: 1.15; }
.section-title p { color: var(--text-muted); font-size: 16px; max-width: 480px; margin: 0 auto; line-height: 1.65; }

/* ===== CONTACT BOXES ===== */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; max-width: 900px; margin: 0 auto 52px; }
.contact-box { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 28px 20px; text-align: center; box-shadow: var(--shadow-sm); transition: all .2s; }
.contact-box:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.contact-box .icon { width: 52px; height: 52px; background: var(--navy-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 12px; }
.contact-box h3 { font-size: 12px; font-weight: 800; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.contact-box p, .contact-box a { font-size: 14px; color: var(--text-muted); }

/* ===== FEATURE PILLS ===== */
.feature-row { display: flex; gap: 16px; max-width: 960px; margin: 0 auto; flex-wrap: wrap; }
.feature-pill { flex: 1; min-width: 200px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 20px; display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-sm); transition: all .2s; }
.feature-pill:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.feature-pill-icon { width: 46px; height: 46px; background: var(--navy-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.feature-pill h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; color: var(--navy); }
.feature-pill p { font-size: 12.5px; color: var(--text-muted); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, var(--sea) 100%);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,.02) 40px, rgba(255,255,255,.02) 80px);
}
.cta-section-content { position: relative; z-index: 1; }
.cta-section h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(26px, 4vw, 40px); font-weight: 800; margin-bottom: 12px; }
.cta-section p { opacity: .8; font-size: 16px; max-width: 460px; margin: 0 auto 28px; line-height: 1.7; }

/* ===== FOOTER ===== */
footer { background: #060f18; color: rgba(255,255,255,.6); padding: 60px 24px 28px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-icon { height: 36px; width: auto; display: flex; align-items: center; }
.footer-logo-icon img { height: 36px; width: auto; object-fit: contain; border-radius: 0 !important; }
.footer-logo-text { color: #fff; font-weight: 800; font-size: 15px; }
.footer-col h4 { color: rgba(255,255,255,.85); font-size: 11px; font-weight: 800; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .1em; }
.footer-col p, .footer-col li { font-size: 13.5px; line-height: 2; list-style: none; }
.footer-col a { color: rgba(255,255,255,.5); text-decoration: none; display: block; transition: color .15s; }
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-divider { max-width: 1200px; margin: 0 auto 20px; height: 1px; background: rgba(255,255,255,.07); }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 12px; flex-wrap: wrap; gap: 8px; }

/* ===== DIVIDER ===== */
.divider { height: 1px; background: var(--border); max-width: 1200px; margin: 0 auto; }

/* ===== LISTING CARDS ===== */
.listing-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm); transition: all .25s; }
.listing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.listing-img { height: 160px; background: linear-gradient(135deg, var(--navy) 0%, var(--sea) 100%); display: flex; align-items: center; justify-content: center; font-size: 56px; position: relative; }
.listing-img::after { content: 'Rösunda, Saltsjöbaden'; position: absolute; bottom: 10px; left: 14px; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.7); letter-spacing: .04em; text-transform: uppercase; }
.listing-body { padding: 20px; }
.listing-price { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.listing-address { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.listing-facts { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.listing-fact { font-size: 13px; background: var(--bg); padding: 4px 10px; border-radius: 6px; color: var(--text-muted); border: 1px solid var(--border); }
.listing-fact strong { color: var(--navy); font-weight: 700; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) { nav { display: none; } .menu-toggle { display: flex; } .feature-row { flex-direction: column; } }
@media (max-width: 768px) {
  .info-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .form-wrap { padding: 28px 20px; }
  .section { padding: 52px 20px; }
  .stats-bar-inner { flex-wrap: wrap; }
  .stat-item { min-width: 45%; border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 480px) {
  .hero { padding: 64px 20px 110px; }
  .card-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .news-item { flex-direction: column; gap: 10px; }
  .news-date { width: auto; display: flex; gap: 10px; align-items: center; }
  .news-date span { font-size: 18px; display: inline; }
  .login-grid { grid-template-columns: 1fr; }
}

/* ===== LOGOUT BAR ===== */
.logout-bar { background: var(--navy-light); border-bottom: 1px solid var(--border); padding: 10px 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; color: var(--navy); }
.logout-bar a { color: var(--navy); font-weight: 700; }

/* ===== LOGIN ===== */
.login-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 680px; margin: 0 auto; }
.login-card { background: var(--white); border-radius: var(--radius-xl); border: 1px solid var(--border); padding: 40px 32px; text-align: center; box-shadow: var(--shadow-lg); transition: all .25s; }
.login-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(13,43,69,.18); }
.login-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.login-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; line-height: 1.6; }
.login-card-icon { width: 72px; height: 72px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 34px; margin: 0 auto 20px; }
.login-member { background: linear-gradient(135deg, var(--navy-light), #c0d8f0); }
.login-board { background: linear-gradient(135deg, #fdf6ea, #f5e8c0); }

/* ===== PROTECTED PAGES ===== */
.protected-wrap { max-width: 960px; margin: 0 auto; }
.protected-section { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 28px; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.protected-section h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
