/*
Theme Name:  Sulzbacher Reisen
Theme URI:   https://sulzbacher-reisen.at
Description: Offizielles WordPress-Theme für Sulzbacher Reisen – Busreisen aus Eferding, Österreich.
Version:     1.0.0
Author:      Sulzbacher Reisen
Author URI:  https://sulzbacher-reisen.at
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sulzbacher-reisen
Tags:        tourism, travel, custom-menu, full-width-template
*/

/* ─────────────────────────────────────────
   CSS CUSTOM PROPERTIES
───────────────────────────────────────── */
:root {
  --navy:        #0d1b2a;
  --navy-mid:    #1b2d42;
  --navy-light:  #243d56;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --cream:       #f5f0e8;
  --cream-dark:  #ede6d6;
  --text:        #1a1a1a;
  --text-muted:  #5a5a5a;
  --white:       #ffffff;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

/* ─────────────────────────────────────────
   HEADER & NAV
───────────────────────────────────────── */
#site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 2px solid var(--gold);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.site-branding { padding: 1rem 0; }
.site-branding a { display: block; }
.site-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  line-height: 1;
}
.site-tagline {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Primary nav */
#primary-navigation .nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
}
#primary-navigation .nav-menu li a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.4rem 1.2rem;
  position: relative;
  transition: color 0.2s;
}
#primary-navigation .nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}
#primary-navigation .nav-menu li a:hover,
#primary-navigation .nav-menu li.current-menu-item a,
#primary-navigation .nav-menu li.current_page_item a {
  color: var(--gold-light);
}
#primary-navigation .nav-menu li a:hover::after,
#primary-navigation .nav-menu li.current-menu-item a::after,
#primary-navigation .nav-menu li.current_page_item a::after {
  width: 60%;
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--gold-light);
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  cursor: pointer;
}

/* ─────────────────────────────────────────
   HERO (front-page)
───────────────────────────────────────── */
.sr-hero {
  position: relative;
  height: 88vh;
  min-height: 580px;
  overflow: hidden;
  background: var(--navy);
  display: flex;
  align-items: center;
}
.sr-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(201,168,76,0.08) 0%, transparent 60%),
    linear-gradient(135deg, #0d1b2a 0%, #1b3a5c 50%, #0d1b2a 100%);
}
.sr-hero-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg,  rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(-45deg, rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 40px);
}
.sr-compass {
  position: absolute;
  right: 8%; top: 50%;
  transform: translateY(-50%);
  width: 340px; height: 340px;
  opacity: 0.07;
}
.sr-hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  animation: fadeUp 0.9s ease both;
}
.sr-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.sr-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.sr-hero-title em { font-style: italic; color: var(--gold-light); }
.sr-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.sr-hero-cta { display: inline-flex; gap: 1rem; flex-wrap: wrap; }
.sr-hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.sr-hero-scroll::before {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.5));
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 0.85rem 2.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.85rem 2.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

/* ─────────────────────────────────────────
   FEATURES STRIP
───────────────────────────────────────── */
.features-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.feature-item {
  padding: 1.8rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.feature-item:last-child { border-right: none; }
.feature-icon  { font-size: 1.6rem; margin-bottom: 0.5rem; }
.feature-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.feature-desc  { font-size: 0.82rem; color: rgba(255,255,255,0.5); font-weight: 300; }

/* ─────────────────────────────────────────
   SECTION COMMONS
───────────────────────────────────────── */
.sr-section { padding: 5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.68rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.2;
  color: var(--navy); margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: #7a6030; }
.section-intro {
  font-size: 1rem; font-weight: 300;
  color: var(--text-muted); max-width: 600px;
  line-height: 1.8; margin-bottom: 3rem;
}

/* ─────────────────────────────────────────
   WELCOME QUOTE
───────────────────────────────────────── */
.welcome-quote { background: var(--navy); padding: 4rem 2rem; text-align: center; }
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.85);
  max-width: 700px; margin: 0 auto 1rem;
  line-height: 1.4;
}
.quote-source { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; }

/* ─────────────────────────────────────────
   HIGHLIGHTS (front-page)
───────────────────────────────────────── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.highlight-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-top: 3px solid var(--gold);
  transition: transform 0.25s, box-shadow 0.25s;
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.highlight-num  { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: rgba(201,168,76,0.25); font-weight: 300; line-height: 1; margin-bottom: 0.5rem; }
.highlight-title { font-weight: 600; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.6rem; }
.highlight-text  { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; }
.highlight-link  { display: inline-block; margin-top: 1rem; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 500; }

/* ─────────────────────────────────────────
   ÜBER UNS — TIMELINE
───────────────────────────────────────── */
.about-hero { background: var(--navy); padding: 5rem 2rem; text-align: center; }
.about-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute;
  left: 0.35rem; top: 0.5rem; bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.1));
}
.tl-item { position: relative; margin-bottom: 2.5rem; }
.tl-dot {
  position: absolute; left: -2rem; top: 0.2rem;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold);
}
.tl-dot.current {
  background: var(--gold-light);
  width: 18px; height: 18px; left: -2.15rem;
  box-shadow: 0 0 0 3px var(--gold), 0 0 12px rgba(201,168,76,0.4);
}
.tl-year  { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
.tl-title { font-weight: 600; font-size: 0.85rem; letter-spacing: 0.05em; color: var(--navy); margin-bottom: 0.3rem; text-transform: uppercase; }
.tl-text  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem; }
.value-card  { background: var(--navy); padding: 1.5rem; color: var(--white); }
.value-num   { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--gold); font-weight: 300; line-height: 1; margin-bottom: 0.3rem; }
.value-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.value-text  { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.5; }

/* ─────────────────────────────────────────
   REISEZIELE
───────────────────────────────────────── */
.skandi-highlight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-left: 3px solid var(--gold);
  padding: 2.5rem 3rem;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}
.skandi-icon  { font-size: 3rem; }
.skandi-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; color: var(--gold-light); margin-bottom: 0.6rem; }
.skandi-text  { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.75; font-weight: 300; }
.skandi-cities { display: flex; gap: 0.6rem; margin-top: 1rem; flex-wrap: wrap; }
.city-pill {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 0.7rem; letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
}

.dest-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 3rem; }
.dest-card { background: var(--navy); color: var(--white); overflow: hidden; position: relative; transition: transform 0.3s; }
.dest-card:hover { transform: translateY(-4px); }
.dest-card.wide { grid-column: span 2; }
.dest-card-visual { height: 200px; position: relative; overflow: hidden; }
.dest-card.wide .dest-card-visual { height: 260px; }
.dest-bg { position: absolute; inset: 0; transition: transform 0.5s; }
.dest-card:hover .dest-bg { transform: scale(1.05); }
.bg-paris     { background: linear-gradient(160deg, #1a237e 0%, #283593 30%, #4a148c 70%, #1a1a2e 100%); }
.bg-barcelona { background: linear-gradient(160deg, #b71c1c 0%, #e57373 40%, #ff8a65 70%, #bf360c 100%); }
.bg-amsterdam { background: linear-gradient(160deg, #1b5e20 0%, #388e3c 40%, #558b2f 70%, #33691e 100%); }
.bg-rome      { background: linear-gradient(160deg, #e65100 0%, #ff8f00 40%, #ffd54f 70%, #d84315 100%); }
.bg-oslo      { background: linear-gradient(160deg, #0d47a1 0%, #1565c0 30%, #0277bd 60%, #006064 100%); }
.bg-prague    { background: linear-gradient(160deg, #4e342e 0%, #795548 40%, #a1887f 70%, #3e2723 100%); }
.city-silhouette { position: absolute; bottom: 0; left: 0; right: 0; height: 70%; opacity: 0.15; }
.dest-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gold); color: var(--navy);
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 0.25rem 0.6rem;
}
.dest-card-body { padding: 1.4rem 1.5rem; }
.dest-country { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.dest-city    { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; margin-bottom: 0.5rem; }
.dest-desc    { font-size: 0.82rem; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.6; }

.kuesten-box {
  background: var(--navy); padding: 3rem;
  margin-top: 1rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.kuesten-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--white); font-weight: 300; margin-bottom: 1rem; }
.kuesten-title em { color: var(--gold-light); }
.kuesten-text { font-size: 0.88rem; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.75; }

/* ─────────────────────────────────────────
   BUSSE
───────────────────────────────────────── */
.bus-hero { background: var(--navy); padding: 5rem 2rem 0; position: relative; overflow: hidden; }
.bus-hero::after {
  content: '★★★★★';
  position: absolute; right: -1rem; top: 2rem;
  font-size: 8rem; opacity: 0.04; letter-spacing: -0.1em; color: var(--gold);
}
.star-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.1); border: 1px solid var(--gold);
  padding: 0.4rem 1rem; margin-bottom: 1.5rem;
  font-size: 0.7rem; letter-spacing: 0.15em;
  color: var(--gold-light); text-transform: uppercase;
}
.bus-svg-wrap { max-width: 800px; margin: 0 auto; padding: 3rem 0 0; }

.amenities-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 3rem; }
.amenity-card {
  background: var(--white); padding: 2rem 1.8rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.amenity-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.amenity-emoji { font-size: 2rem; margin-bottom: 0.8rem; }
.amenity-name  { font-weight: 600; font-size: 0.85rem; letter-spacing: 0.05em; color: var(--navy); margin-bottom: 0.4rem; text-transform: uppercase; }
.amenity-desc  { font-size: 0.82rem; color: var(--text-muted); font-weight: 300; line-height: 1.6; }

.fleet-stat-bar { background: var(--navy); padding: 2.5rem 2rem; display: flex; justify-content: center; gap: 4rem; }
.fleet-stat { text-align: center; }
.fleet-num   { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: var(--gold-light); line-height: 1; }
.fleet-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 0.3rem; }

.safety-box {
  background: white; padding: 2.5rem; margin-top: 2rem;
  border-left: 3px solid var(--gold);
}
.safety-box h4 { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.6rem; }
.safety-box p  { font-size: 0.9rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; }

/* ─────────────────────────────────────────
   KONTAKT
───────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; }
.contact-left  { background: var(--navy); padding: 5rem 3rem; color: var(--white); }
.contact-right { background: var(--cream); padding: 5rem 3rem; }

.contact-item { display: flex; gap: 1.2rem; align-items: flex-start; margin-bottom: 2rem; }
.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.contact-info-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.contact-info-value { font-size: 0.95rem; color: rgba(255,255,255,0.8); font-weight: 300; line-height: 1.5; }

.contact-note {
  margin-top: 2rem; padding: 1.5rem;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.2);
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  font-weight: 300; line-height: 1.65; font-style: italic;
}

.contact-form-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300; color: var(--navy); margin-bottom: 1.5rem;
}
.contact-form-wrap h3 em { font-style: italic; }

.sr-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }
.form-input,
.form-select,
.form-textarea {
  background: var(--white); border: 1px solid rgba(0,0,0,0.12);
  padding: 0.75rem 1rem;
  font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 300; color: var(--text);
  outline: none; width: 100%; transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  background: var(--navy); color: var(--gold-light);
  border: 2px solid var(--navy);
  padding: 0.9rem 2rem;
  font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s; align-self: flex-start;
}
.form-submit:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.form-success {
  display: none;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold);
  padding: 1rem 1.5rem;
  color: var(--navy); font-size: 0.9rem; margin-top: 0.5rem;
}
.form-success.visible { display: block; }

/* WP notice styling */
.wpcf7-response-output { border: 1px solid var(--gold) !important; color: var(--navy) !important; padding: 0.8rem 1.2rem !important; font-size: 0.85rem !important; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
#site-footer {
  background: #080f17;
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold); margin-bottom: 0.5rem; }
.footer-text  { font-size: 0.75rem; color: rgba(255,255,255,0.25); letter-spacing: 0.1em; }

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .features-inner    { grid-template-columns: repeat(2,1fr); }
  .highlights-grid   { grid-template-columns: 1fr; }
  .about-grid        { grid-template-columns: 1fr; }
  .dest-grid         { grid-template-columns: 1fr; }
  .dest-card.wide    { grid-column: auto; }
  .amenities-grid    { grid-template-columns: 1fr 1fr; }
  .contact-layout    { grid-template-columns: 1fr; }
  .kuesten-box       { grid-template-columns: 1fr; }
  .skandi-highlight  { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .header-inner { flex-direction: column; align-items: flex-start; padding: 0.5rem 1rem; gap: 0; }
  #primary-navigation .nav-menu { flex-wrap: wrap; }
  #primary-navigation .nav-menu li a { padding: 0.8rem 0.7rem; font-size: 0.7rem; }
  .features-inner  { grid-template-columns: 1fr 1fr; }
  .amenities-grid  { grid-template-columns: 1fr; }
  .fleet-stat-bar  { flex-wrap: wrap; gap: 2rem; }
  .form-row        { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 3rem 1.5rem; }
}

/* ─────────────────────────────────────────
   BUS FOTO-MOSAIK
───────────────────────────────────────── */
.bus-mosaic-section {
  background: var(--navy);
  padding: 0 0 4rem;
}
.mosaic-header {
  text-align: center;
  padding: 4rem 2rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.mosaic-subhead {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  margin-top: 0.5rem;
}

.bus-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 320px 340px;
  gap: 4px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Landscape: 2 columns */
.mi-landscape {
  grid-column: span 1;
}
/* Portrait: 1 col × 2 rows */
.mi-portrait {
  grid-row: span 2;
}
/* Full width */
.mi-full {
  grid-column: span 3;
}

/* Row layout:
   [landscape][landscape][portrait×2]
   [portrait ][landscape][landscape ]   (portrait continues)
   [full-width                       ]
*/
.mosaic-item:nth-child(1) { grid-column: 1; grid-row: 1; }
.mosaic-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.mosaic-item:nth-child(3) { grid-column: 3; grid-row: 1 / 3; }
.mosaic-item:nth-child(4) { grid-column: 1; grid-row: 2 / 4; }
.mosaic-item:nth-child(5) { grid-column: 2; grid-row: 2; }
.mosaic-item:nth-child(6) { grid-column: 3; grid-row: 3; } /* adjust below */
.mosaic-item:nth-child(7) { grid-column: 1 / 4; grid-row: 4; }

/* Re-set grid for actual layout */
.bus-mosaic {
  grid-template-rows: 280px 280px 300px 340px;
}
.mosaic-item:nth-child(3) { grid-column: 3; grid-row: 1 / 3; }
.mosaic-item:nth-child(4) { grid-column: 1; grid-row: 3 / 5; }
.mosaic-item:nth-child(5) { grid-column: 2; grid-row: 3; }
.mosaic-item:nth-child(6) { grid-column: 3; grid-row: 3; }
.mosaic-item:nth-child(7) { grid-column: 2 / 4; grid-row: 4; }

.mosaic-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.mosaic-item:hover img { transform: scale(1.06); }

.mi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.85) 0%, rgba(13,27,42,0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem 1.4rem;
}
.mosaic-item:hover .mi-overlay { opacity: 1; }

.mi-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.4rem;
  align-self: flex-start;
}
.mi-caption {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin: 0;
}

/* Gold border on focus (accessibility) */
.mosaic-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

/* ─────────────────────────────────────────
   LIGHTBOX
───────────────────────────────────────── */
.sr-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sr-lightbox[hidden] { display: none; }

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,10,18,0.95);
  cursor: pointer;
}
.lb-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lb-content img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lb-caption {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0;
}
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: rgba(13,27,42,0.8);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
  line-height: 1;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--gold);
  color: var(--navy);
}
.lb-close {
  top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
}
.lb-prev, .lb-next {
  top: 50%; transform: translateY(-50%);
  font-size: 2.5rem;
  width: 52px; height: 72px;
  display: flex; align-items: center; justify-content: center;
}
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }

/* ─────────────────────────────────────────
   MOSAIC RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .bus-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: unset;
    gap: 4px;
  }
  .mosaic-item,
  .mi-landscape,
  .mi-portrait,
  .mi-full {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    height: 220px;
  }
  .mi-full {
    grid-column: span 2 !important;
    height: 260px;
  }
  .mosaic-item:nth-child(n) {
    grid-column: unset;
    grid-row: unset;
  }
  .mi-overlay { opacity: 1; }
}
@media (max-width: 480px) {
  .bus-mosaic { grid-template-columns: 1fr; padding: 0 1rem; }
  .mi-full { grid-column: span 1 !important; }
}
