/* ===================================================================
   Johannas Guest House â€” Shared Stylesheet
   Edit this file to update look & feel sitewide.
   =================================================================== */

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

:root {
  --forest: #2c3e2d;
  --forest-dark: #1a2e1b;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --cream: #f5f0e8;
  --cream-dark: #ede5d5;
  --charcoal: #1a1a1a;
  --charcoal-mid: #3a3a3a;
  --white: #ffffff;
  --text-muted: #888880;
  --nav-height: 80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}

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

/* â”€â”€ NAVBAR â”€â”€ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

nav.scrolled,
nav.solid {
  background: rgba(245, 240, 232, 0.97);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.5s;
}

nav.scrolled .nav-logo,
nav.solid .nav-logo { color: var(--forest-dark); }

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

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s;
}

nav.scrolled .nav-links a,
nav.solid .nav-links a { color: var(--charcoal-mid); }
.nav-links a:hover { color: var(--gold); }
nav.scrolled .nav-links a:hover,
nav.solid .nav-links a:hover { color: var(--forest); }

.nav-book {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal) !important;
  background: var(--gold);
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.nav-book:hover { background: var(--gold-light); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: background 0.5s;
}

nav.scrolled .nav-hamburger span,
nav.solid .nav-hamburger span { background: var(--charcoal); }

/* â”€â”€ MOBILE MENU â”€â”€ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--forest-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-close {
  position: absolute;
  top: 28px; right: 28px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 28px;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

/* â”€â”€ HERO (used on home â€” samma hÃ¶jd som .page-header pÃ¥ undersidor) â”€â”€ */
.hero {
  position: relative;
  height: 58vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  animation: heroFade 1.5s ease forwards;
  opacity: 0;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.hero-title em { font-style: italic; font-weight: 300; }

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
  opacity: 0.8;
}

.hero-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 16px 40px;
  text-decoration: none;
  transition: background 0.3s;
}

.hero-cta:hover { background: var(--gold-light); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
}

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

/* â”€â”€ PAGE HEADER (smaller hero for subpages) â”€â”€ */
.page-header {
  position: relative;
  height: 58vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,46,27,0.45) 0%, rgba(26,46,27,0.25) 50%, rgba(26,46,27,0.55) 100%);
}

.page-header-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  z-index: 1;
}

.page-header-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.page-header-title em { font-style: italic; }

/* â”€â”€ BREADCRUMBS â”€â”€ */
.breadcrumbs {
  background: var(--cream);
  padding: 24px 60px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumbs a:hover { color: var(--forest); }

.breadcrumbs li + li::before {
  content: '/';
  margin-right: 8px;
  color: var(--gold);
}

.breadcrumbs li[aria-current='page'] { color: var(--forest-dark); }

/* â”€â”€ SECTIONS â”€â”€ */
section { padding: 120px 60px; }

.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--forest-dark);
  margin-bottom: 24px;
}

.section-title em { font-style: italic; }

.section-body {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal-mid);
  max-width: 640px;
}

.section-body + .section-body { margin-top: 20px; }

/* Centred narrow text block (used on destination/about pages) */
.prose {
  max-width: 720px;
  margin: 0 auto;
}

.prose p {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--charcoal-mid);
  margin-bottom: 24px;
}

.prose h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--forest-dark);
  margin: 48px 0 16px;
}

.prose h3 em { font-style: italic; }

.prose ul {
  list-style: none;
  margin: 24px 0;
}

.prose ul li {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal-mid);
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

/* â”€â”€ INTRO (split image / text) â”€â”€ */
.intro {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 80px 60px;
  align-items: stretch;
}

.intro-text {
  padding: 60px 80px 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-image {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.intro-image:hover img { transform: scale(1.03); }

.intro-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 600px;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--forest) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* â”€â”€ ROOMS â”€â”€ */
.rooms {
  background: var(--forest-dark);
  color: var(--white);
  padding: 120px 60px;
}

.rooms .section-title { color: var(--cream); }
.rooms .section-body { color: rgba(255,255,255,0.65); }

.rooms-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.room-card {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.room-card-img {
  aspect-ratio: 3/4;
  background: var(--forest);
  overflow: hidden;
  position: relative;
}

.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.room-card:hover .room-card-img img { transform: scale(1.06); }

.room-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(44,62,45,0.8) 0%, rgba(26,46,27,0.95) 100%);
}

.room-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 28px 28px;
  background: linear-gradient(to top, rgba(26,46,27,0.95) 0%, transparent 100%);
  transition: padding 0.4s ease;
}

.room-card:hover .room-card-overlay { padding-bottom: 36px; }

.room-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}

.room-type {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.room-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
}

.room-price span {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}

.room-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}

.room-card:hover .room-link {
  opacity: 1;
  transform: translateY(0);
}

/* â”€â”€ ROOM DETAIL PAGE â”€â”€ */
.room-detail {
  background: var(--cream);
}

.room-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 3px;
  background: var(--charcoal);
  height: 540px;
}

.room-gallery-item {
  overflow: hidden;
  position: relative;
  min-height: 0;
}

.room-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.room-gallery-item:hover img { transform: scale(1.04); }

.room-detail-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 60px;
}

.room-detail-main h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--forest-dark);
  margin: 56px 0 20px;
}

.room-detail-main h2 em { font-style: italic; }

.room-detail-main p {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--charcoal-mid);
  margin-bottom: 20px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  margin-top: 16px;
}

.amenities-grid li {
  list-style: none;
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 14px;
  color: var(--charcoal-mid);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.amenities-grid li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

.room-aside {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  align-self: start;
  background: var(--white);
  padding: 40px;
  box-shadow: 0 2px 40px rgba(44,62,45,0.08);
}

.room-aside .room-aside-eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.room-aside .room-aside-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--forest-dark);
  margin-bottom: 6px;
}

.room-aside .room-aside-name em { font-style: italic; }

.room-aside .room-aside-type {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.room-aside .room-aside-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--forest-dark);
}

.room-aside .room-aside-price span {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  margin-left: 4px;
}

.room-aside-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}

.room-aside-facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.room-aside-fact {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--charcoal-mid);
}

.room-aside-fact span:first-child {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.room-aside-cta {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 18px;
  text-decoration: none;
  transition: background 0.3s;
}

.room-aside-cta:hover { background: var(--gold-light); }

/* â”€â”€ BOOKING â”€â”€ */
.booking-section {
  background: var(--cream-dark);
  padding: 100px 60px;
  text-align: center;
}

.booking-section .section-title { margin-bottom: 12px; }
.booking-section .section-body {
  max-width: 480px;
  margin: 0 auto 60px;
  text-align: center;
}

.booking-widget-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  box-shadow: 0 2px 40px rgba(44,62,45,0.08);
}

/* â”€â”€ DESTINATION (SÃ¶derkÃ¶ping) â”€â”€ */
.soderkoping {
  background: var(--white);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.soderkoping-image {
  position: relative;
  overflow: hidden;
  min-height: 700px;
}

.soderkoping-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.soderkoping-text {
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.soderkoping-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 50px;
}

.feature-icon {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 16px;
}

.feature-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.feature-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--forest-dark);
}

/* â”€â”€ HIGHLIGHTS GRID (used on destination page) â”€â”€ */
.highlights {
  background: var(--cream);
  padding: 120px 60px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1280px;
  margin: 60px auto 0;
}

.highlight {
  background: var(--white);
  padding: 48px 36px;
  border-top: 2px solid var(--gold);
}

.highlight-eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.highlight-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--forest-dark);
  margin-bottom: 16px;
}

.highlight-title em { font-style: italic; }

.highlight-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--charcoal-mid);
}

.highlight-distance {
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* â”€â”€ TESTIMONIALS â”€â”€ */
.testimonials {
  background: var(--cream);
  padding: 120px 60px;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 80px auto 0;
}

.testimonial { text-align: left; }

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal-mid);
  margin-bottom: 24px;
}

.testimonial-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* â”€â”€ GALLERY â”€â”€ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 320px 320px;
  gap: 3px;
  background: var(--charcoal);
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-placeholder {
  width: 100%;
  height: 100%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* â”€â”€ CONTACT â”€â”€ */
.contact {
  background: var(--forest-dark);
  color: var(--white);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.contact .section-title { color: var(--cream); }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-item-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-item-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.contact-item-value a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item-value a:hover { color: var(--gold); }

/* â”€â”€ JORDA AV JOHANNA (crosslink) â”€â”€ */
.jorda {
  background: var(--cream-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.jorda-image {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.jorda-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.jorda-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 700px;
  background: linear-gradient(160deg, #2a1f1a 0%, #4a3728 40%, #c9a96e22 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.jorda-text {
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream-dark);
}

.jorda-cta {
  display: inline-block;
  margin-top: 40px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color 0.3s, border-color 0.3s;
}

.jorda-cta:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* â”€â”€ FOOTER â”€â”€ */
footer {
  background: var(--charcoal);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
}

/* â”€â”€ FADE IN ON SCROLL (progressive enhancement) â”€â”€ */
/* Default: synligt (no-JS fallback). JS lÃ¤gger till html.js-fade fÃ¶r att aktivera animationen. */
.fade-up { opacity: 1; transform: translateY(0); }

html.js-fade .fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

html.js-fade .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

html.js-fade .fade-up:nth-child(2) { transition-delay: 0.1s; }
html.js-fade .fade-up:nth-child(3) { transition-delay: 0.2s; }

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 1024px) {
  nav { padding: 0 30px; }
  .nav-links, .nav-book { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 80px 30px; }
  .intro { grid-template-columns: 1fr; }
  .intro-image { min-height: 400px; }
  .intro-text { padding: 80px 40px; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .rooms-header { grid-template-columns: 1fr; gap: 24px; }
  .soderkoping { grid-template-columns: 1fr; }
  .soderkoping-text { padding: 80px 40px; }
  .jorda { grid-template-columns: 1fr; }
  .jorda-text { padding: 80px 40px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; }
  .contact { grid-template-columns: 1fr; gap: 60px; }
  .highlights-grid { grid-template-columns: 1fr; gap: 24px; }
  .room-detail-body { grid-template-columns: 1fr; gap: 40px; padding: 60px 30px; }
  .room-aside { position: static; }
  .room-gallery { grid-template-columns: 1fr; max-height: none; }
  .room-gallery-item:first-child { grid-row: auto; }
  .breadcrumbs { padding: 18px 30px; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 42px; }
  .page-header-title { font-size: 36px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .soderkoping-features { grid-template-columns: 1fr; }
  .booking-widget-wrap { padding: 30px 20px; }
  .amenities-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 18px; text-align: center; }
}
/* â”€â”€ BRAND STRIP (cross-domain navigation) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root { --brand-height: 36px; }

.brand-strip {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: var(--brand-height);
  background: #0f1a10;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  border-bottom: 1px solid rgba(201,169,110,0.12);
}

.brand-strip a {
  position: relative;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  transition: color 0.3s ease;
}

.brand-strip a:hover { color: #c9a96e; }

.brand-strip a.active {
  color: #ffffff;
}

.brand-strip a.active::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  width: 4px;
  height: 4px;
  background: #c9a96e;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Skjut ner nav under brand strip */
nav.site-nav,
nav#navbar {
  top: var(--brand-height);
}

/* Skjut ner breadcrumbs pÃ¥ produktsidor (JAJ) */
.breadcrumbs {
  margin-top: calc(var(--nav-height) + var(--brand-height));
}

@media (max-width: 1024px) {
  .brand-strip {
    padding: 0 20px;
    gap: 16px;
    justify-content: center;
  }
  .brand-strip a {
    font-size: 9px;
    letter-spacing: 0.18em;
  }
}

@media (max-width: 480px) {
  .brand-strip {
    display: none;
  }
  nav.site-nav,
  nav#navbar { top: 0; }
  .breadcrumbs { margin-top: var(--nav-height); }
}

/* â”€â”€ SEASONAL VISIBILITY (Kanalvillan = sommarsÃ¤song majâ€“september) â”€â”€â”€ */
.season-summer { display: none; }
body.is-summer .season-summer { display: revert; }

/* â”€â”€ ACTIVE NAV STATE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-links a.active,
nav.solid .nav-links a.active,
nav.scrolled .nav-links a.active {
  color: var(--forest-dark);
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
}
/* NÃ¤r navbar Ã¤r transparent (pÃ¥ hero ovanpÃ¥ hero-bg) */
nav:not(.solid):not(.scrolled) .nav-links a.active {
  color: var(--gold);
}

/* â”€â”€ MARQUEE (rullande tagline mellan hero och intro) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.marquee-wrap {
  background: var(--forest-dark);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
.marquee-inner span {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 0 40px;
}
.marquee-inner span.dot {
  color: var(--gold);
  padding: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* â”€â”€ BOOKING SCORE BADGE (subtil, pÃ¥ testimonial-sektion) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.booking-score-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: 28px auto 0;
  padding: 0;
  background: transparent;
  border: none;
}
.testimonials { text-align: center; }
.booking-score-badge .bs-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--forest-dark);
  line-height: 1;
}
.booking-score-badge .bs-meta { text-align: left; display: inline; }
.booking-score-badge .bs-label,
.booking-score-badge .bs-detail {
  display: inline;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 0;
  text-transform: none;
}
.booking-score-badge .bs-label::after { content: ' Â· '; color: var(--gold); }

/* Justera testimonials-grid till 3 kolumner som flexar (6 st fyller 2 rader) */
.testimonials-grid {
  margin-top: 60px !important;
}

/* â”€â”€ ROOMS-HEADER homepage-variant (centrerad, tightare) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#rooms .rooms-header {
  display: block;
  grid-template-columns: none;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
  gap: 0;
}
#rooms .rooms-header .section-body {
  margin: 20px auto 0;
  max-width: 540px;
  font-size: 14px;
  line-height: 1.75;
}
#rooms .rooms-header .rooms-header-link {
  margin-top: 24px !important;
}
#rooms { padding-top: 80px; }

/* â”€â”€ GUIDE LISTS (SÃ¶derkÃ¶ping-sidan) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.guide-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: transparent;
}
.guide-item {
  background: var(--white);
  padding: 22px 24px;
  position: relative;
  border: 1px solid rgba(44,62,45,0.08);
  margin: -1px 0 0 -1px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.guide-item:hover {
  background: var(--cream);
  border-color: rgba(44,62,45,0.18);
  z-index: 1;
}
.guide-item strong,
.guide-item a strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--forest-dark);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.guide-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.guide-item a:hover strong { color: var(--gold); }
.guide-item .guide-dist {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  padding: 2px 8px;
  background: rgba(201,169,110,0.12);
  border-left: 2px solid var(--gold);
}
.guide-item p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--charcoal-mid);
  margin: 6px 0 0;
}

/* MÃ¶rk variant (pÃ¥ forest-dark bakgrund) */
.guide-list--dark { background: rgba(255,255,255,0.06); }
.guide-list--dark .guide-item {
  background: rgba(255,255,255,0.04);
  color: var(--cream);
}
.guide-list--dark .guide-item:hover { background: rgba(255,255,255,0.08); }
.guide-list--dark .guide-item strong,
.guide-list--dark .guide-item a strong { color: var(--cream); }
.guide-list--dark .guide-item a:hover strong { color: var(--gold); }
.guide-list--dark .guide-item .guide-dist {
  color: rgba(255,255,255,0.6);
  background: rgba(201,169,110,0.15);
}
.guide-list--dark .guide-item p { color: rgba(255,255,255,0.65); }

@media (max-width: 640px) {
  .guide-item { padding: 18px 20px; }
}


/* â”€â”€ ROOMS GRID â€” 2x2 pÃ¥ /rum/ med 4 rum â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â
/* â”€â”€ ROOMS GRID â€” 2x2 pÃ¥ /rum/ med 4 rum â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body[data-page="rum"] .rooms-grid {
  grid-template-columns: 1fr 1fr;
}

/* â”€â”€ SOLID NAV pÃ¥ undersidor (inte hem) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not([data-page="home"]) nav#navbar {
  background: rgba(245, 240, 232, 0.97);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
}
body:not([data-page="home"]) .nav-logo { color: var(--forest-dark); }
body:not([data-page="home"]) .nav-links a { color: var(--charcoal-mid); }
body:not([data-page="home"]) .nav-hamburger span { background: var(--charcoal); }

/* â”€â”€ MOBILE FIXES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  body[data-page="home"] nav#navbar {
    background: rgba(245, 240, 232, 0.97);
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
    backdrop-filter: blur(8px);
  }
  body[data-page="home"] .nav-logo { color: var(--forest-dark); }
  body[data-page="home"] .nav-hamburger span { background: var(--charcoal); }
}

@media (max-width: 640px) {
  section { padding: 60px 20px; }
  .intro { padding: 0; }
  .intro-text { padding: 60px 24px; }
  .intro-image { min-height: 320px; }
  .section-title { font-size: 32px; line-height: 1.2; }
  .page-header-title { font-size: 32px; }
  .hero-title { font-size: 38px; }
  .soderkoping-text { padding: 60px 24px; }
  .jorda-text { padding: 60px 24px; }
  .booking-section { padding: 60px 20px; }
  .prose { padding: 0 4px; }
  .prose p { font-size: 15px; line-height: 1.75; }
  .room-name { font-size: 20px; }
  .room-price { font-size: 18px; }
  .room-card-overlay { padding: 30px 16px 20px; }
  .contact { padding: 60px 24px; }
  .highlights { padding: 60px 20px; }
  .testimonials { padding: 60px 20px; }
  footer { padding: 32px 24px; }
  .page-header { min-height: 380px; height: 50vh; }
  .marquee-inner span { font-size: 9px; padding: 0 24px; }
  .rooms { padding: 60px 16px; }
  .rooms-grid { gap: 16px; }
  .booking-widget-wrap { padding: 24px 16px; }
}

/* â”€â”€ MOBILE FIX: image-hÃ¶jder pÃ¥ split-sektioner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .soderkoping-image { min-height: 320px; height: 320px; }
  .jorda { min-height: auto; }
  .jorda-image { min-height: 320px; height: 320px; }
  .jorda-image-placeholder { min-height: 320px; }
  .intro-image { min-height: 280px; height: 280px; }
}

@media (max-width: 640px) {
  .soderkoping-image { height: 240px; min-height: 240px; }
  .jorda-image { height: 240px; min-height: 240px; }
  .intro-image { height: 220px; min-height: 220px; }
}

/* â”€â”€ MOBILE FIX: bilder + frukost-sektion â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .soderkoping-image { min-height: 280px !important; height: 280px !important; }
  .jorda { min-height: auto !important; }
  .jorda-image { min-height: 280px !important; height: 280px !important; }
  .jorda-image-placeholder { min-height: 280px !important; }
  .intro-image { min-height: 260px !important; height: 260px !important; }
  
  /* Frukost-sektionen â€” overrida inline styles */
  section[style*="60px 60px 80px"] {
    padding: 40px 16px 60px !important;
  }
  section[style*="60px 60px 80px"] > div.fade-up {
    grid-template-columns: 1fr !important;
    padding: 28px 24px !important;
    gap: 20px !important;
    text-align: center;
  }
  section[style*="60px 60px 80px"] > div.fade-up a {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .soderkoping-image { height: 220px !important; min-height: 220px !important; }
  .jorda-image { height: 220px !important; min-height: 220px !important; }
  .intro-image { height: 200px !important; min-height: 200px !important; }
}

/* â”€â”€ FINAL MOBILE OVERRIDES (hÃ¶gre specifikitet) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  section.soderkoping div.soderkoping-image,
  section.jorda div.jorda-image {
    height: 240px !important;
    min-height: 240px !important;
    max-height: 240px !important;
  }
  section.soderkoping div.soderkoping-image img,
  section.jorda div.jorda-image img {
    height: 240px !important;
    max-height: 240px !important;
    object-fit: cover;
  }
  
  /* Hamburger ALLTID synlig pÃ¥ mobil (oavsett data-page) */
  nav#navbar {
    background: rgba(245, 240, 232, 0.97) !important;
    box-shadow: 0 1px 0 rgba(0,0,0,0.08) !important;
  }
  nav#navbar .nav-logo { color: var(--forest-dark) !important; }
  nav#navbar .nav-hamburger { display: flex !important; }
  nav#navbar .nav-hamburger span { background: var(--charcoal) !important; }
  
  /* Flytta ner hero-eyebrow sÃ¥ den inte gÃ¶ms av navbar */
  .hero-content { padding-top: 60px; }
  .hero-eyebrow { margin-top: 20px; }
}

@media (max-width: 640px) {
  section.soderkoping div.soderkoping-image,
  section.jorda div.jorda-image {
    height: 200px !important;
    min-height: 200px !important;
    max-height: 200px !important;
  }
  section.soderkoping div.soderkoping-image img,
  section.jorda div.jorda-image img {
    height: 200px !important;
    max-height: 200px !important;
  }
}
