/*
Theme Name: Naisturs Inc
Theme URI: https://simplelook.biz/
Author: Simple Look - Radnja za racunarsko programiranje Svrljig
Author URI: https://simplelook.biz/
Description: Brza, SEO optimizovana i kompletno editabilna WordPress tema za Naisturs Inc. Tema sadrzi podesavanja kroz Customizer za naslovnu stranu, boje, navigacioni CTA, kontakt, online prodaju, vozni park, 4N Apartman Zlatibor i footer.
Version: 1.1.5
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: naisturs
Tags: custom-colors, custom-menu, custom-logo, featured-images, theme-options, blog, translation-ready
*/
:root {
  --navy: #07122d;
  --navy-2: #0d1c42;
  --navy-3: #152a5c;
  --orange: #f7931e;
  --orange-2: #ffb54d;
  --cream: #f4efe5;
  --paper: #ffffff;
  --muted: #667085;
  --text: #131a2b;
  --line: rgba(7, 18, 45, .12);
  --radius: 6px;
  --shadow: 0 18px 55px rgba(7, 18, 45, .14);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fbfbfd;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 108px 0; position: relative; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-kicker.light { color: #ffc46a; }
h1, h2, h3, p { margin-top: 0; }
h2 { font-size: clamp(32px, 4vw, 54px); line-height: 1.06; letter-spacing: -.04em; margin-bottom: 20px; color: var(--navy); }
p { color: var(--muted); }

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: grid;
  place-items: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.site-loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-brand { color: #fff; font-size: 22px; letter-spacing: -.03em; }
.loader-brand strong { font-weight: 900; }
.loader-brand span { color: var(--orange); margin-left: 5px; font-weight: 600; }
.loader-line {
  position: absolute;
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,.15);
  transform: translateY(34px);
  overflow: hidden;
}
.loader-line::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 40%;
  background: var(--orange);
  animation: loadLine 1s ease-in-out infinite;
}
@keyframes loadLine { 0% { transform: translateX(-100%); } 100% { transform: translateX(320%); } }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(7, 18, 45, .72);
  backdrop-filter: blur(16px);
  transition: all .25s ease;
}
.site-header.is-scrolled {
  background: rgba(7, 18, 45, .95);
  box-shadow: 0 10px 40px rgba(0,0,0,.22);
}
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 24px; }
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-size: 24px;
  letter-spacing: -.055em;
  color: #fff;
  white-space: nowrap;
}
.brand strong { font-weight: 900; }
.brand span { color: var(--orange); font-weight: 700; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.desktop-nav a {
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.desktop-nav a:hover { color: #fff; }
.route-pill, .offcanvas-flags {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
}
.route-pill img, .offcanvas-flags img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,.18);
}
.route-pill svg, .offcanvas-flags svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  stroke-width: 1.9;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 17px;
  background: var(--orange);
  color: var(--navy);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(247,147,30,.22);
  transition: transform .2s ease, background .2s ease;
}
.header-cta:hover { transform: translateY(-2px); background: #ffab35; }
.header-cta svg { width: 18px; height: 18px; stroke-width: 1.9; }
.menu-toggle, .close-menu {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.offcanvas { position: fixed; inset: 0; z-index: 1200; pointer-events: none; }
.offcanvas-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(430px, 92vw);
  height: 100%;
  background: var(--navy);
  color: #fff;
  padding: 28px;
  transform: translateX(110%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  pointer-events: auto;
  border-left: 1px solid rgba(255,255,255,.12);
}
.offcanvas.is-open .offcanvas-panel { transform: translateX(0); }
.offcanvas-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.close-menu { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); }
.offcanvas-flags { margin-bottom: 28px; }
.offcanvas-nav { display: grid; gap: 0; border-top: 1px solid rgba(255,255,255,.12); }
.offcanvas-nav a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .08em;
  font-size: 14px;
}
.offcanvas-nav span { color: var(--orange); font-size: 12px; }
.offcanvas-contact { margin-top: 34px; padding: 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); }
.offcanvas-contact p { color: rgba(255,255,255,.58); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.offcanvas-contact a { display: flex; align-items: center; gap: 10px; margin-top: 13px; color: #fff; font-weight: 700; }
.offcanvas-contact img { width: 22px; height: 15px; object-fit: cover; box-shadow: 0 0 0 1px rgba(255,255,255,.2); }
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 22, .58);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
}
.menu-overlay.is-open { opacity: 1; visibility: visible; }

.hero {
  position: relative;
  min-height: 820px;
  padding: 154px 0 92px;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://naisturs.com/wp-content/uploads/2023/12/voznibg.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(.98) contrast(1.06);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,18,45,.96) 0%, rgba(7,18,45,.84) 44%, rgba(7,18,45,.48) 100%),
    linear-gradient(0deg, rgba(7,18,45,.62), rgba(7,18,45,.18));
}
.hero-lines {
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 62px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow svg { width: 17px; color: var(--orange); stroke-width: 1.8; }
.hero h1 { margin: 0 0 22px; color: #fff; letter-spacing: -.055em; line-height: .98; }
.hero h1 span { display: block; font-size: clamp(36px, 4.6vw, 60px); font-weight: 800; }
.hero h1 strong { display: block; margin-top: 10px; font-size: clamp(24px, 3vw, 38px); font-weight: 700; color: var(--orange); letter-spacing: -.045em; }
.hero-lead { max-width: 600px; color: rgba(255,255,255,.78); font-size: 17px; margin-bottom: 34px; }
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 600px;
}
.hero-trust div { padding: 18px; border-right: 1px solid rgba(255,255,255,.12); }
.hero-trust div:last-child { border-right: 0; }
.hero-trust strong { display: block; color: #fff; font-size: 24px; line-height: 1; font-weight: 900; }
.hero-trust span { display: block; margin-top: 7px; color: rgba(255,255,255,.64); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.flags-inline { display: flex !important; align-items: center; gap: 8px; }
.flags-inline img { width: 26px; height: 18px; object-fit: cover; box-shadow: 0 0 0 1px rgba(255,255,255,.18); }
.booking-shell { position: relative; }
.booking-badge {
  position: absolute;
  top: -18px;
  right: 26px;
  z-index: 5;
  background: var(--orange);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  transform: rotate(-7deg);
  box-shadow: 0 18px 34px rgba(247,147,30,.26);
}
.booking-card {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.3);
  box-shadow: 0 24px 54px rgba(7,18,45,.22);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  overflow: hidden;
}
.booking-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 18px;
}
.booking-card-head > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(247,147,30,.12);
  color: var(--orange);
  border-radius: var(--radius);
}
.booking-card-head svg { width: 22px; height: 22px; stroke-width: 1.9; }
.booking-card-head span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.booking-card-head h2 { margin: 6px 0 0; font-size: clamp(28px, 3vw, 40px); }
.booking-embed {
  min-height: 390px;
  display: grid;
  place-items: center;
  margin: 0;
  border-top: 1px solid rgba(7,18,45,.08);
  border-bottom: 0;
  background: linear-gradient(180deg, #fff, #fbfbfd);
  color: var(--navy);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  letter-spacing: -.03em;
  text-align: center;
}

.lines-section { background: var(--cream); overflow: hidden; }
.split-lines { display: grid; grid-template-columns: 1.02fr .98fr; gap: 64px; align-items: start; }
.lines-copy > p { font-size: 17px; max-width: 610px; }
.line-board { margin-top: 34px; background: #fff; border: 1px solid rgba(7,18,45,.1); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.line-board-head { display: flex; align-items: center; gap: 16px; padding: 22px 24px; background: var(--navy); color: #fff; }
.line-board-head svg { color: var(--orange); width: 28px; height: 28px; stroke-width: 1.7; }
.line-board-head span { display: block; font-size: 12px; color: rgba(255,255,255,.58); text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.line-board-head strong { display: block; margin-top: 4px; font-size: 17px; }
.line-row { padding: 24px; border-bottom: 1px solid var(--line); }
.flag-title { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; color: var(--navy); font-weight: 900; font-size: 18px; }
.flag-title img { width: 32px; height: 22px; object-fit: cover; box-shadow: 0 0 0 1px rgba(0,0,0,.12); }
.line-row p { margin: 0; color: #4a5263; }
.line-row strong { color: var(--navy); }
.line-note { display: flex; gap: 12px; padding: 20px 24px; background: rgba(247,147,30,.1); color: var(--navy); font-size: 14px; }
.line-note svg { width: 21px; min-width: 21px; color: var(--orange); stroke-width: 1.8; margin-top: 2px; }
.lines-media {
  position: relative;
  min-height: 540px;
  margin-top: 144px;
  display: flex;
}
.line-slider {
  position: relative;
  width: 100%;
  min-height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ddd;
}
.line-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .7s ease, transform 4s ease; transform: scale(1.02); }
.line-slider img.active { opacity: 1; transform: scale(1.08); }
.lines-media::before { content: ''; position: absolute; right: -18px; top: -18px; width: 40%; height: 46%; background: var(--orange); border-radius: var(--radius); z-index: -1; }
.slider-dots { position: absolute; bottom: 20px; left: 20px; z-index: 3; display: flex; gap: 9px; }
.slider-dots button { width: 36px; height: 4px; border: 0; background: rgba(255,255,255,.45); border-radius: 2px; padding: 0; cursor: pointer; }
.slider-dots button.active { background: var(--orange); }

.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; }
.about-media { position: relative; min-height: 520px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-media img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.about-label { position: absolute; left: 24px; right: 24px; bottom: 24px; display: flex; justify-content: space-between; align-items: center; gap: 18px; background: rgba(7,18,45,.88); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.14); padding: 18px; border-radius: var(--radius); color: #fff; }
.about-label strong { font-size: 20px; }
.about-label span { color: rgba(255,255,255,.66); font-size: 13px; }
.about-copy p { font-size: 16px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; color: var(--navy); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.text-link svg { width: 17px; color: var(--orange); }

.tickets-section { background: #f7f8fb; }
.tickets-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 13px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--navy); font-weight: 600; }
.check-list svg { width: 18px; height: 18px; min-width: 18px; margin-top: 4px; color: var(--orange); stroke-width: 2.1; }
.price-panel { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.price-card { position: relative; padding: 28px; background: #fff; border: 1px solid rgba(7,18,45,.1); border-radius: var(--radius); box-shadow: 0 16px 42px rgba(7,18,45,.08); }
.price-card span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
.price-card strong { display: block; font-size: 58px; line-height: 1; margin: 24px 0 18px; color: var(--navy); }
.price-card p { margin: 0; font-size: 14px; }
.price-card.featured { background: var(--navy); border-color: var(--navy); transform: translateY(-14px); }
.price-card.featured span, .price-card.featured p { color: rgba(255,255,255,.7); }
.price-card.featured strong { color: var(--orange); }
.discount-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.discount-grid article { background: #fff; border: 1px solid rgba(7,18,45,.1); border-radius: var(--radius); padding: 24px; transition: transform .2s ease, box-shadow .2s ease; }
.discount-grid article:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.discount-grid svg { width: 34px; height: 34px; color: var(--orange); stroke-width: 1.55; margin-bottom: 22px; }
.discount-grid h3 { margin-bottom: 8px; color: var(--navy); }
.discount-grid p { margin: 0; font-size: 14px; }

.cancel-section { background: #fff; }
.cancel-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 58px; align-items: start; }
.cancel-grid > div:first-child { position: sticky; top: 120px; }
.cancel-steps { display: grid; gap: 14px; }
.cancel-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(7,18,45,.1);
  background: #f8fafc;
}
.cancel-card.success { background: linear-gradient(135deg, rgba(32, 201, 151, .10), #fff); }
.cancel-card.warning { background: linear-gradient(135deg, rgba(247, 147, 30, .10), #fff); }
.cancel-card.danger { background: linear-gradient(135deg, rgba(239, 68, 68, .10), #fff); }
.cancel-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--orange);
  border-radius: var(--radius);
}
.cancel-icon svg { width: 26px; height: 26px; stroke-width: 1.85; }
.cancel-content { display: grid; gap: 4px; }
.cancel-order { color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.cancel-card h3 { margin: 0; color: var(--navy); font-size: 26px; line-height: 1.1; }
.cancel-card p { margin: 0; font-size: 15px; color: #465066; }

.comfort-section { position: relative; padding: 118px 0; background: var(--navy); color: #fff; overflow: hidden; }
.comfort-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,18,45,.94), rgba(7,18,45,.72)), url('https://naisturs.com/wp-content/uploads/2023/12/voznibg.webp') center/cover; transform: scale(1.03); }
.comfort-inner { position: relative; z-index: 2; }
.comfort-copy { width: 100%; max-width: none; margin-bottom: 38px; }
.comfort-copy h2 { color: #fff; max-width: 840px; }
.comfort-copy p { color: rgba(255,255,255,.74); font-size: 17px; max-width: 920px; }
.comfort-scroll { display: grid; grid-template-columns: repeat(4, minmax(230px, 1fr)); gap: 14px; }
.comfort-scroll article { min-height: 220px; padding: 24px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); border-radius: var(--radius); }
.comfort-scroll svg { width: 35px; height: 35px; color: var(--orange); stroke-width: 1.5; margin-bottom: 36px; }
.comfort-scroll h3 { color: #fff; margin-bottom: 8px; }
.comfort-scroll p { color: rgba(255,255,255,.63); margin: 0; font-size: 14px; }

.fleet-section { background: #fff; }
.section-heading { max-width: 760px; }
.section-heading.is-centered { text-align: center; margin-inline: auto; }
.section-heading.is-centered p { max-width: 680px; margin-inline: auto; }
.fleet-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-auto-rows: 250px; gap: 14px; margin-top: 38px; align-items: stretch; }
.fleet-item { position: relative; overflow: hidden; border-radius: var(--radius); background: #ddd; box-shadow: 0 14px 38px rgba(7,18,45,.08); }
.fleet-item.large { grid-row: span 2; }
.fleet-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.fleet-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(7,18,45,.78)); }
.fleet-item span { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2; color: #fff; font-weight: 800; text-align: center; }
.fleet-item:hover img { transform: scale(1.06); }

.blog-section { background: #f7f8fb; }
.blog-top { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 36px; }
.blog-top > div { max-width: 710px; }
.archive-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; white-space: nowrap; }
.archive-link svg { width: 17px; color: var(--orange); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.news-card { background: #fff; border: 1px solid rgba(7,18,45,.1); border-radius: var(--radius); overflow: hidden; box-shadow: 0 18px 50px rgba(7,18,45,.07); }
.news-card img { width: 100%; height: 210px; object-fit: cover; }
.news-card div { padding: 24px; }
.news-card span { color: var(--orange); text-transform: uppercase; letter-spacing: .13em; font-size: 11px; font-weight: 900; }
.news-card h3 { color: var(--navy); font-size: 21px; line-height: 1.18; margin: 12px 0; }
.news-card p { font-size: 14px; margin-bottom: 18px; }
.news-card a { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.news-card a svg { width: 16px; color: var(--orange); }

.site-footer { background: #050d22; color: #fff; padding: 76px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.15fr 1fr .9fr .9fr; gap: 44px; padding-bottom: 54px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand p { color: rgba(255,255,255,.62); margin: 18px 0 24px; max-width: 330px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; display: grid; place-items: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); color: #fff; transition: .2s ease; }
.socials a:hover { background: var(--orange); color: var(--navy); transform: translateY(-2px); }
.footer-col h3 { margin: 0 0 18px; color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .13em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col li, .footer-col a, .company-data p { color: rgba(255,255,255,.64); font-size: 14px; }
.footer-col a:hover { color: #fff; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; }
.contact-list svg { width: 18px; min-width: 18px; color: var(--orange); stroke-width: 1.7; margin-top: 2px; }
.contact-list img { width: 23px; height: 16px; object-fit: cover; margin-top: 3px; box-shadow: 0 0 0 1px rgba(255,255,255,.18); }
.company-data p { margin: 0 0 12px; }
.company-data span { display: block; color: var(--orange); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; margin-bottom: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 22px; padding-top: 24px; }
.footer-bottom p { color: rgba(255,255,255,.44); margin: 0; font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,.78); }

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  border: 1px solid rgba(255,255,255,.18);
  background: var(--orange);
  color: var(--navy);
  border-radius: var(--radius);
  box-shadow: 0 20px 44px rgba(7,18,45,.22);
  cursor: pointer;
  transition: .22s ease;
  z-index: 1000;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; stroke-width: 2.4; }
.back-to-top span { font-size: 9px; font-weight: 900; letter-spacing: .1em; line-height: 1; }
.back-to-top:hover { transform: translateY(-3px); background: #ffad35; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .desktop-nav, .route-pill, .header-cta { display: none; }
  .menu-toggle { display: grid; place-items: center; width: 42px; height: 42px; margin-left: auto; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); }
  .hero-inner, .split-lines, .about-grid, .tickets-grid, .cancel-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 132px; }
  .booking-embed { min-height: 360px; }
  .lines-media { min-height: 420px; margin-top: 26px; }
  .about-copy { order: 1; }
  .about-media { order: 2; }
  .discount-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .comfort-scroll { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 14px; margin-right: calc((100vw - 100%) / -2); padding-right: 20px; }
  .comfort-scroll article { min-width: 270px; scroll-snap-align: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cancel-grid > div:first-child { position: static; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 78px 0; }
  .header-inner { min-height: 72px; }
  .brand { font-size: 22px; }
  .hero { min-height: auto; padding: 112px 0 64px; }
  .hero-inner { gap: 42px; }
  .hero h1 span { font-size: 34px; }
  .hero h1 strong { font-size: 24px; }
  .hero-lead { font-size: 15px; }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-trust div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .hero-trust div:last-child { border-bottom: 0; }
  .booking-badge { right: 18px; top: -18px; }
  .booking-card-head { align-items: flex-start; }
  .booking-card-head h2 { font-size: 30px; }
  .booking-embed { min-height: 280px; font-size: 22px; }
  h2 { font-size: 34px; }
  .line-board-head { align-items: flex-start; }
  .lines-media { min-height: 340px; margin-top: 20px; }
  .about-media, .about-media img { min-height: 360px; }
  .about-label { align-items: flex-start; flex-direction: column; gap: 4px; }
  .price-panel, .discount-grid, .blog-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .cancel-card { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .fleet-item.large { grid-row: span 1; }
  .blog-top { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .back-to-top { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}


/* V6 final refinements */
.site-header .route-pill { display: none !important; }

.offcanvas-flags.offcanvas-route {
  width: 100%;
  justify-content: flex-start;
  gap: 9px;
  padding: 12px 14px;
  background: rgba(255,255,255,.08);
}
.offcanvas-route span {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.offcanvas-nav {
  border-top: 0;
  gap: 10px;
}
.offcanvas-nav a {
  border-bottom: 0;
  padding: 14px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.offcanvas-nav a:hover {
  background: rgba(247,147,30,.14);
  border-color: rgba(247,147,30,.35);
  transform: translateX(4px);
}

.hero h1 span { font-size: clamp(34px, 4.25vw, 57px); white-space: nowrap; }
.hero h1 strong { font-size: clamp(23px, 2.9vw, 37px); }

.booking-card-clean {
  background: #fff;
  box-shadow: 0 24px 54px rgba(7,18,45,.22);
}
.booking-card-clean .booking-embed {
  min-height: 455px;
  border: 0;
  background: #fff;
  padding: 0;
}

.lines-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.92), rgba(255,255,255,0) 34%),
    linear-gradient(135deg, #fff 0%, #f4efe5 42%, #fff8ed 100%);
}
.lines-copy h2 { font-size: clamp(30px, 3.45vw, 46px); max-width: 620px; }
.flag-route-title {
  flex-wrap: wrap;
  gap: 10px;
}
.flag-route-title b {
  color: var(--orange);
  font-size: 24px;
  line-height: 1;
  transform: translateY(-1px);
}
.lines-media { min-height: 514px; }
.line-slider { min-height: 514px; }

.blog-top {
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 36px;
}
.blog-top > div {
  max-width: 760px;
  margin-inline: auto;
}
.blog-top p { margin-inline: auto; max-width: 720px; }
.blog-archive {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.blog-archive .archive-link {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(7,18,45,.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(7,18,45,.07);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(3,8,22,.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-frame {
  position: relative;
  width: min(1080px, 100%);
  background: #050d22;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 90px rgba(0,0,0,.48);
  overflow: hidden;
}
.lightbox-image-wrap {
  height: min(72vh, 680px);
  background: #020713;
}
.lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lightbox-caption {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: #fff;
  font-weight: 800;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(7,18,45,.78);
  color: #fff;
  border-radius: var(--radius);
  cursor: pointer;
  transition: .2s ease;
}
.lightbox-close { top: 14px; right: 14px; width: 42px; height: 42px; }
.lightbox-prev,
.lightbox-next { top: 50%; width: 46px; height: 56px; transform: translateY(-50%); }
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--orange); color: var(--navy); }
.lightbox button svg { width: 21px; height: 21px; }

@media (max-width: 760px) {
  .hero h1 span { white-space: normal; font-size: 32px; }
  .booking-card-clean .booking-embed { min-height: 310px; }
  .lines-copy h2 { font-size: 32px; }
  .lines-media, .line-slider { min-height: 340px; }
  .lightbox { padding: 14px; }
  .lightbox-prev, .lightbox-next { width: 42px; height: 50px; }
}


/* FINAL EXTENDED TEMPLATE OVERRIDES */
.site-header .route-pill { display: none !important; }
.hero-centered { min-height: 100vh; display: flex; align-items: center; }
.hero-centered .hero-inner { align-items: center; }
.hero h1 span { font-size: clamp(34px, 4.35vw, 56px); white-space: nowrap; }
.hero h1 strong { font-size: clamp(24px, 2.85vw, 37px); }
.booking-card-clean { padding: 0; }
.booking-card-clean .booking-embed { border: 0; min-height: 420px; background: #fff; }
.hero-trust-icons div { position: relative; }
.hero-trust-icons div > i { width: 22px; height: 22px; color: var(--orange); margin-bottom: 12px; stroke-width: 1.75; }
.hero-trust-icons strong { animation: statPop .8s ease both; }
.hero-trust-icons div:nth-child(2) strong { animation-delay: .12s; }
.hero-trust-icons div:nth-child(3) strong { animation-delay: .24s; }
@keyframes statPop { from { opacity: 0; transform: translateY(9px) scale(.96); } to { opacity: 1; transform: none; } }
.flags-word { display: flex !important; align-items: center; flex-wrap: wrap; gap: 7px; font-size: 17px !important; line-height: 1.25 !important; }
.flags-word img { width: 26px; height: 18px; object-fit: cover; box-shadow: 0 0 0 1px rgba(255,255,255,.18); }
.count-static { display: inline-block; }
.lines-section-soft { background: radial-gradient(circle at top left, rgba(255,255,255,.96), rgba(244,239,229,.92) 45%, #f6f1e8 100%); }
.lines-section h2 { font-size: clamp(31px, 3.25vw, 46px); }
.route-full { flex-wrap: wrap; }
.route-full svg { width: 18px; height: 18px; color: var(--orange); stroke-width: 2.1; }
.route-full img { width: 34px; height: 23px; }
.blog-top-centered { justify-content: center; text-align: center; }
.blog-top-centered > div { margin: 0 auto; }
.blog-archive { margin-top: 34px; text-align: center; }
.blog-archive .archive-link { background: #fff; border: 1px solid rgba(7,18,45,.1); padding: 14px 18px; border-radius: var(--radius); box-shadow: 0 12px 30px rgba(7,18,45,.07); }
.route-word-pill { width: 100%; justify-content: center; background: rgba(255,255,255,.08); }
.route-word-pill span { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.offcanvas-nav-pills { border-top: 0; gap: 8px; }
.offcanvas-nav-pills a { border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.055); padding: 14px 14px; border-radius: var(--radius); }
.offcanvas-nav-pills a:hover { background: rgba(247,147,30,.16); }
.page-hero { position: relative; min-height: 460px; padding: 160px 0 92px; background: var(--navy); color: #fff; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .28; transform: scale(1.04); }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,18,45,.96), rgba(7,18,45,.72)); }
.page-hero-inner { position: relative; z-index: 2; max-width: 880px; }
.page-hero h1 { color: #fff; font-size: clamp(42px, 6vw, 76px); line-height: .98; letter-spacing: -.055em; margin: 0 0 20px; }
.page-hero p { color: rgba(255,255,255,.74); font-size: 18px; max-width: 760px; }
.page-section { background: #fff; }
.booking-page-card { background: #fff; border: 1px solid rgba(7,18,45,.1); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.booking-embed-page { min-height: 520px; }
.content-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.info-section { background: #fff; }
.info-card-stack { display: grid; gap: 14px; }
.info-card-stack article, .contact-card, .sidebar { background: #fff; border: 1px solid rgba(7,18,45,.1); border-radius: var(--radius); box-shadow: 0 16px 42px rgba(7,18,45,.08); padding: 26px; }
.info-card-stack i, .contact-card > i { width: 34px; height: 34px; color: var(--orange); stroke-width: 1.65; margin-bottom: 16px; }
.map-placeholder { position: relative; min-height: 460px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-placeholder img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; filter: saturate(.85); }
.map-placeholder::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,18,45,.18), rgba(7,18,45,.78)); }
.map-placeholder div { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2; color: #fff; background: rgba(7,18,45,.88); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 20px; display: grid; gap: 4px; }
.map-placeholder i { color: var(--orange); width: 30px; height: 30px; margin-bottom: 8px; }
.doc-section { background: #fff; }
.doc-article { background: #fff; border: 1px solid rgba(7,18,45,.1); border-radius: var(--radius); box-shadow: 0 16px 42px rgba(7,18,45,.08); padding: clamp(26px, 5vw, 58px); }
.doc-article h2 { font-size: clamp(32px, 4vw, 50px); }
.doc-article h3 { margin-top: 28px; color: var(--navy); font-size: 21px; }
.doc-article ul { padding-left: 22px; color: var(--muted); }
.doc-article blockquote { margin: 34px 0 0; padding: 24px; border-left: 4px solid var(--orange); background: #f7f8fb; color: var(--navy); font-weight: 900; }
.post-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px; align-items: start; }
.post-cover { width: 100%; height: 390px; object-fit: cover; border-radius: var(--radius); margin-bottom: 30px; }
.sidebar { position: sticky; top: 110px; display: grid; gap: 12px; }
.sidebar h3 { margin: 0 0 10px; color: var(--navy); }
.sidebar a { padding: 13px 14px; background: #f7f8fb; border-radius: var(--radius); color: var(--navy); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-card a { display: flex; align-items: center; gap: 10px; margin-top: 12px; color: var(--navy); font-weight: 900; font-size: 20px; }
.contact-card a img { width: 30px; height: 21px; object-fit: cover; box-shadow: 0 0 0 1px rgba(7,18,45,.14); }
.contact-card-dark { background: var(--navy); color: #fff; }
.contact-card-dark h2 { color: #fff; }
.contact-card-dark p { color: rgba(255,255,255,.72); }
.archive-page { background: #f7f8fb; }
.notfound { min-height: 100vh; display: flex; align-items: center; background: radial-gradient(circle at top right, rgba(247,147,30,.18), transparent 35%), var(--navy); color: #fff; padding: 120px 0; }
.notfound-inner { text-align: center; }
.notfound span { color: var(--orange); font-size: clamp(90px, 15vw, 190px); font-weight: 900; line-height: .8; letter-spacing: -.08em; }
.notfound h1 { color: #fff; font-size: clamp(36px, 5vw, 68px); margin: 18px 0; }
.notfound p { color: rgba(255,255,255,.72); margin-bottom: 26px; }
.notfound .header-cta { margin: 0 auto; }
@media (max-width: 1080px) { .content-grid, .post-layout, .contact-grid { grid-template-columns: 1fr; } .sidebar { position: static; } .hero h1 span { white-space: normal; } }
@media (max-width: 760px) { .page-hero { min-height: 390px; padding: 128px 0 70px; } .page-hero h1 { font-size: 42px; } .booking-embed-page { min-height: 360px; } .contact-card a { font-size: 16px; } .post-cover { height: 260px; } }


/* === POLISHED V9 OVERRIDES === */
.brand strong{font-weight:800}.brand span{font-weight:300;color:var(--orange)}
.page-hero{min-height:360px;padding:138px 0 78px;display:flex;align-items:end;background:var(--navy);position:relative;overflow:hidden}.compact-hero{min-height:330px}.page-hero-bg{position:absolute;inset:0;background-size:cover;background-position:center;opacity:.35;filter:saturate(.9);}.page-hero:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(7,18,45,.96),rgba(7,18,45,.72))}.page-hero-inner{position:relative;z-index:2;margin-inline:auto;text-align:left;max-width:var(--container)!important}.page-hero h1{color:#fff;font-size:clamp(40px,4.8vw,66px);line-height:1.02;letter-spacing:-.045em;margin:0 0 16px;max-width:850px}.page-hero p{color:rgba(255,255,255,.72);font-size:17px;max-width:760px;margin:0}
.hero-centered{display:flex;align-items:center}.hero-trust-pro{display:grid;grid-template-columns:repeat(3,1fr);border:1px solid rgba(255,255,255,.15);background:rgba(255,255,255,.07);border-radius:6px;overflow:hidden;max-width:600px}.hero-trust-pro .trust-card{min-height:138px;padding:20px 22px;display:grid;align-content:center;gap:8px;border-right:1px solid rgba(255,255,255,.13)}.hero-trust-pro .trust-card:last-child{border-right:0}.hero-trust-pro svg{width:25px;height:25px;color:var(--orange);stroke-width:1.55}.hero-trust-pro strong{display:block;color:#fff;font-size:31px;line-height:1;font-weight:800;letter-spacing:-.04em}.hero-trust-pro .trust-card>span{color:rgba(255,255,255,.62);font-size:12px;letter-spacing:.12em;text-transform:uppercase;font-weight:700}.route-card strong{display:grid;gap:6px;font-size:17px;letter-spacing:0;line-height:1.15}.route-card strong span{display:flex;align-items:center;gap:8px;color:#fff;font-size:17px;font-weight:700;text-transform:none;letter-spacing:0}.route-card img{width:25px;height:17px;object-fit:cover;box-shadow:0 0 0 1px rgba(255,255,255,.24)}
.news-thumb{display:block;overflow:hidden}.news-card h3 a:hover,.news-card>a:hover+div h3 a{color:var(--orange)}
.apartment-teaser{background:#fff}.apartment-teaser-grid{display:grid;grid-template-columns:1fr .9fr;gap:44px;align-items:center;padding:34px;border:1px solid rgba(7,18,45,.1);border-radius:6px;box-shadow:0 18px 50px rgba(7,18,45,.08);background:linear-gradient(135deg,#fff,#f7f8fb)}.apartment-copy h2{max-width:680px}.apartment-cta{width:max-content;margin-top:16px}.apartment-photo{position:relative;min-height:360px;border-radius:6px;overflow:hidden}.apartment-photo img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}.apartment-photo span{position:absolute;left:18px;bottom:18px;color:#fff;font-weight:800;z-index:2}.apartment-photo:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent,rgba(7,18,45,.75))}
.contact-pro-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}.contact-card-clean,.contact-form-card{position:relative;background:#fff;border:1px solid rgba(7,18,45,.1);border-radius:6px;padding:34px;box-shadow:0 18px 55px rgba(7,18,45,.08);overflow:hidden}.contact-card-clean h2,.contact-form-card h2{font-size:clamp(30px,3vw,42px);line-height:1.08;margin-bottom:16px}.card-bg-icon{position:absolute;right:22px;top:18px;width:110px!important;height:110px!important;color:rgba(247,147,30,.12);transform:rotate(-12deg);stroke-width:1.2}.contact-phone{display:flex;align-items:center;gap:12px;margin-top:14px;font-size:20px;font-weight:800;color:var(--navy)}.contact-phone img{width:30px;height:20px;object-fit:cover}.contact-social-inline{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}.contact-social-inline a{border:1px solid rgba(7,18,45,.12);border-radius:6px;padding:10px 13px;font-size:13px;font-weight:800}.contact-form-card label{display:grid;gap:7px;font-size:13px;font-weight:800;color:var(--navy);margin-bottom:14px}.contact-form-card input,.contact-form-card textarea{width:100%;border:1px solid rgba(7,18,45,.14);border-radius:6px;padding:13px 14px;background:#fbfbfd;outline:none}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}.primary-btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;border:0;border-radius:6px;background:var(--orange);color:var(--navy);font-weight:900;padding:13px 18px;cursor:pointer}.contact-info-strip{margin-top:24px;display:grid;grid-template-columns:repeat(3,1fr);gap:14px}.contact-info-strip>div{background:#07122d;color:#fff;border-radius:6px;padding:20px;display:grid;gap:6px}.contact-info-strip svg{color:var(--orange)}.contact-info-strip span{color:rgba(255,255,255,.65);font-size:14px}
.map-code-shell{min-height:360px;border:1px dashed rgba(7,18,45,.2);border-radius:6px;background:linear-gradient(135deg,#fff,#f7f8fb);display:grid;place-items:center;text-align:center;padding:34px}.map-code-shell>i,.map-code-shell svg{width:42px;height:42px;color:var(--orange);stroke-width:1.5}.map-code-shell h2{font-size:clamp(28px,3vw,42px);margin:14px 0 8px}.map-code-shell code{display:inline-block;margin-top:16px;background:#07122d;color:#fff;padding:12px 14px;border-radius:6px}
.post-layout{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:28px;align-items:start}.post-content{background:#fff;border:1px solid rgba(7,18,45,.1);border-radius:6px;padding:22px;box-shadow:0 18px 55px rgba(7,18,45,.07)}.post-featured{width:100%;height:420px;object-fit:cover;border-radius:6px;margin-bottom:18px}.post-meta{font-size:13px;color:var(--muted);text-transform:uppercase;letter-spacing:.08em;font-weight:700}.typography h2{font-size:clamp(28px,3vw,40px);margin:30px 0 12px}.typography h3{font-size:26px;margin:26px 0 12px}.typography h4{font-size:22px}.typography h5{font-size:18px}.typography p,.typography li{font-size:16px;line-height:1.8}.typography ul,.typography ol{padding-left:22px;margin:16px 0}.typography li{margin-bottom:8px}.typography blockquote{margin:26px 0;padding:22px 24px;border-left:4px solid var(--orange);background:#f7f8fb;border-radius:6px;font-size:20px;font-weight:700;color:var(--navy)}.typography table{width:100%;border-collapse:collapse;margin:22px 0;border:1px solid rgba(7,18,45,.12);border-radius:6px;overflow:hidden}.typography th,.typography td{padding:14px;border-bottom:1px solid rgba(7,18,45,.1);text-align:left}.typography th{background:#07122d;color:#fff}.video-embed{position:relative;padding-top:56.25%;border-radius:6px;overflow:hidden;background:#07122d;margin:20px 0}.video-embed iframe{position:absolute;inset:0;width:100%;height:100%;border:0}.share-box{display:flex;align-items:center;flex-wrap:wrap;gap:10px;margin-top:26px;padding-top:20px;border-top:1px solid rgba(7,18,45,.1)}.share-box strong{margin-right:8px}.share-box a,.share-box button{border:1px solid rgba(7,18,45,.12);background:#fff;border-radius:6px;padding:10px 12px;font-weight:800;color:var(--navy);cursor:pointer}.post-sidebar{display:grid;gap:14px;position:sticky;top:110px}.sidebar-box{background:#fff;border:1px solid rgba(7,18,45,.1);border-radius:6px;padding:22px;box-shadow:0 14px 40px rgba(7,18,45,.06)}.sidebar-box h3{font-size:18px;color:var(--navy);margin-bottom:14px}.sidebar-box a{display:block;padding:10px 0;border-bottom:1px solid rgba(7,18,45,.08);font-weight:700;color:#445}.sidebar-box a:last-child{border-bottom:0}.navy-box{background:#07122d;color:#fff}.navy-box h3,.navy-box a{color:#fff}.navy-box p{color:rgba(255,255,255,.68)}
.apartment-detail-grid{display:grid;grid-template-columns:1fr 340px;gap:28px;align-items:start}.apartment-book-card{background:#07122d;color:#fff;border-radius:6px;padding:28px;position:sticky;top:110px}.apartment-book-card h3{font-size:30px}.apartment-book-card p{color:rgba(255,255,255,.68)}.apartment-book-card a{display:block;color:#fff;font-weight:800;margin-top:12px}.apartment-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:34px}.apartment-gallery .fleet-item{height:280px}.apartment-page .map-code-shell{margin-top:34px}
.lightbox{position:fixed;inset:0;z-index:5000;background:rgba(3,8,22,.9);display:flex;align-items:center;justify-content:center;padding:22px;opacity:0;visibility:hidden;transition:.2s ease}.lightbox.is-open{opacity:1;visibility:visible}.lightbox-frame{position:relative;width:min(1120px,94vw);max-height:88vh}.lightbox-image-wrap{position:relative;border-radius:6px;overflow:hidden;background:#030816}.lightbox-image{display:block;width:100%;max-height:88vh;object-fit:contain}.lightbox-caption{position:absolute;left:0;right:0;bottom:0;padding:24px;color:#fff;font-weight:800;background:linear-gradient(180deg,transparent,rgba(7,18,45,.82));pointer-events:none}.lightbox-close,.lightbox-prev,.lightbox-next{position:absolute;z-index:4;border:1px solid rgba(255,255,255,.24);background:rgba(7,18,45,.72);color:#fff;border-radius:6px;width:44px;height:44px;display:grid;place-items:center;cursor:pointer}.lightbox-close{right:14px;top:14px}.lightbox-prev{left:14px;top:50%;transform:translateY(-50%)}.lightbox-next{right:14px;top:50%;transform:translateY(-50%)}
@media(max-width:1080px){.contact-pro-grid,.post-layout,.apartment-detail-grid,.apartment-teaser-grid{grid-template-columns:1fr}.post-sidebar,.apartment-book-card{position:static}.contact-info-strip,.apartment-gallery{grid-template-columns:1fr}.hero-trust-pro{grid-template-columns:1fr}.hero-trust-pro .trust-card{border-right:0;border-bottom:1px solid rgba(255,255,255,.12)}.form-row{grid-template-columns:1fr}.post-featured{height:300px}}

/* WordPress theme layer */
:root {
  --primary-color: var(--navy);
  --accent-color: var(--orange);
  --body-text-color: var(--text);
  --body-background-color: #fbfbfd;
}
body { background: var(--body-background-color); color: var(--body-text-color); }
.site-header .desktop-nav ul,
.offcanvas-nav ul,
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-header .desktop-nav ul { display: flex; align-items: center; gap: 28px; }
.site-header .desktop-nav li { margin: 0; }
.offcanvas-nav ul { display: grid; gap: 10px; }
.desktop-nav .current-menu-item > a,
.desktop-nav .current_page_item > a { color: #fff; }
.icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.14em; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.header-cta .icon,
.eyebrow .icon,
.section-kicker .icon,
.contact-list .icon,
.text-link .icon { width: 18px; height: 18px; }
.booking-embed,
.booking-embed > *,
.reservation-shortcode,
.reservation-shortcode > * { padding: 0 !important; }
.booking-card-clean { padding: 0 !important; overflow: hidden; }
.booking-card-clean .booking-embed { min-height: 120px; width: 100%; }
.booking-placeholder { padding: 24px; border: 1px dashed rgba(7,18,45,.18); border-radius: var(--radius); background: rgba(255,255,255,.74); color: var(--muted); }
.page-hero { min-height: 420px; padding-top: 150px; padding-bottom: 88px; }
.page-hero .page-hero-inner { max-width: var(--container); }
.page-hero h1 { font-size: clamp(42px, 6vw, 76px); line-height: .98; letter-spacing: -.06em; color: #fff; margin-bottom: 18px; }
.page-hero p { max-width: 760px; font-size: clamp(17px, 2vw, 22px); color: rgba(255,255,255,.74); }
.archive-header { padding-bottom: 40px; }
.post-list-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.pagination { margin-top: 42px; display: flex; gap: 8px; justify-content: center; }
.pagination .page-numbers { padding: 10px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; font-weight: 800; color: var(--navy); }
.pagination .current { background: var(--orange); border-color: var(--orange); color: var(--navy); }
.article-shell { padding: 100px 0; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 34px; align-items: start; }
.article-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.article-featured img { width: 100%; height: min(520px, 52vw); object-fit: cover; }
.article-body { padding: 15px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 18px; }
.article-title { font-size: clamp(34px, 5vw, 68px); line-height: 1; letter-spacing: -.055em; color: var(--navy); margin: 0 0 18px; }
.post-content { font-size: 17px; line-height: 1.85; color: #25304a; }
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 { color: var(--navy); letter-spacing: -.035em; line-height: 1.12; margin: 1.35em 0 .55em; }
.post-content h1 { font-size: clamp(34px, 5vw, 58px); }
.post-content h2 { font-size: clamp(28px, 4vw, 46px); }
.post-content h3 { font-size: clamp(24px, 3vw, 34px); }
.post-content h4 { font-size: 24px; }
.post-content h5 { font-size: 20px; }
.post-content h6 { font-size: 17px; text-transform: uppercase; letter-spacing: .08em; }
.post-content p, .post-content li { color: #3f4a64; }
.post-content a { color: var(--orange); font-weight: 800; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.post-content ul, .post-content ol { padding-left: 1.35em; }
.post-content li + li { margin-top: .45em; }
.post-content blockquote { margin: 28px 0; padding: 24px 26px; border-left: 5px solid var(--orange); background: #fff7ec; border-radius: var(--radius); color: var(--navy); font-size: 1.12em; font-weight: 700; }
.post-content table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 15px; overflow: hidden; border-radius: var(--radius); box-shadow: 0 0 0 1px var(--line); }
.post-content th, .post-content td { padding: 14px 16px; border: 1px solid var(--line); text-align: left; }
.post-content th { background: var(--navy); color: #fff; }
.post-content tr:nth-child(even) td { background: #f8fafc; }
.post-content iframe { max-width: 100%; border-radius: var(--radius); }
.wp-block-embed__wrapper { position: relative; aspect-ratio: 16/9; }
.wp-block-embed__wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.share-row { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 28px; margin-top: 28px; border-top: 1px solid var(--line); }
.share-row a, .share-row button { border: 1px solid var(--line); background: #fff; color: var(--navy); border-radius: var(--radius); padding: 10px 14px; font-weight: 800; cursor: pointer; }
.sidebar-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: 0 14px 42px rgba(7,18,45,.08); margin-bottom: 18px; }
.sidebar-card h3 { color: var(--navy); margin: 0 0 14px; font-size: 20px; }
.sidebar-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.sidebar-card a { color: var(--navy); font-weight: 800; }
.sidebar-post { display: grid; grid-template-columns: 74px 1fr; gap: 12px; align-items: center; }
.sidebar-post img { width: 74px; height: 60px; object-fit: cover; border-radius: var(--radius); }
.sidebar-post span { display: block; color: var(--muted); font-size: 12px; font-weight: 700; }
.apartment-gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.apartment-gallery-grid a img { width: 100%; height: 250px; object-fit: cover; border-radius: var(--radius); }
.map-box { min-height: 420px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #f2f4f7; display: grid; place-items: center; color: var(--muted); }
.map-box iframe { width: 100%; height: 480px; border: 0; display: block; }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.contact-shortcode-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 0; overflow: hidden; box-shadow: var(--shadow); }
.search-form { display: flex; gap: 10px; }
.search-form input[type="search"] { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); padding: 13px 14px; }
.search-form input[type="submit"], .search-submit { border: 0; border-radius: var(--radius); background: var(--orange); color: var(--navy); font-weight: 900; padding: 13px 18px; cursor: pointer; }
.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important; }
.alignleft { float: left; margin: .5em 1.5em 1em 0; }
.alignright { float: right; margin: .5em 0 1em 1.5em; }
.aligncenter { clear: both; display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text, .gallery-caption { color: var(--muted); font-size: 13px; margin-top: 8px; }
.bypostauthor { outline: 0; }
.sticky { outline: 2px solid rgba(247,147,30,.25); }
.no-results { text-align: center; max-width: 720px; margin: 0 auto; }
@media (max-width: 980px) {
  .post-list-grid, .article-layout, .contact-page-grid { grid-template-columns: 1fr; }
  .article-shell { padding: 72px 0; }
  .article-body { padding: 15px; }
  .site-header .desktop-nav ul { display: block; }
  .apartment-gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .post-list-grid, .apartment-gallery-grid { grid-template-columns: 1fr; }
  .search-form { flex-direction: column; }
  .page-hero { min-height: 360px; padding-top: 126px; padding-bottom: 60px; }
}


/* Patch 1.0.2 - hero, GPS template and contact polish */
html, body { width: 100%; }

.hero.hero-centered {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 100vh;
  padding: clamp(118px, 12vh, 170px) 0 clamp(54px, 8vh, 92px);
}
.hero.hero-centered .hero-bg {
  inset: -1px;
  transform: none;
  background-size: cover;
  background-position: center;
}
.hero.hero-centered .hero-inner.hero-inner-form-first {
  grid-template-columns: minmax(0, 1.32fr) minmax(360px, .88fr);
  gap: clamp(34px, 4.5vw, 68px);
  align-items: center;
}
.hero-inner-form-first .hero-booking-shell { order: 1; width: 100%; }
.hero-inner-form-first .hero-copy { order: 2; }
.hero-inner-form-first .hero-copy .eyebrow { margin-bottom: 22px; }
.hero-inner-form-first .hero-copy h1 span {
  font-size: clamp(32px, 3.75vw, 50px);
  line-height: .98;
}
.hero-inner-form-first .hero-copy h1 strong {
  font-size: clamp(22px, 2.35vw, 32px);
  line-height: 1.08;
}
.hero-inner-form-first .hero-lead {
  max-width: 545px;
  font-size: 16px;
  color: rgba(255,255,255,.78);
}
.booking-card-hero {
  width: 100%;
  max-width: 780px;
  margin: 0;
  border-color: rgba(255,255,255,.42);
}
.booking-card-hero .booking-embed {
  display: block;
  width: 100%;
  min-height: 560px;
  padding: 0 !important;
  margin: 0 !important;
  background: #fff;
  border: 0 !important;
  text-align: initial;
}
.booking-card-hero .booking-embed > * {
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.hero-booking-shell .booking-badge {
  right: 34px;
  top: -22px;
  z-index: 6;
}

.hero-trust-refined {
  max-width: 545px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-trust-refined .trust-card {
  min-height: 128px;
  padding: 19px 20px;
  display: grid;
  align-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.hero-trust-refined .trust-card::after {
  content: '';
  position: absolute;
  right: -22px;
  top: -22px;
  width: 88px;
  height: 88px;
  background: rgba(247,147,30,.08);
  border-radius: 50%;
}
.hero-trust-refined .trust-card > .icon {
  width: 24px;
  height: 24px;
  color: var(--orange);
  stroke-width: 1.7;
  position: relative;
  z-index: 1;
}
.hero-trust-refined .trust-card strong {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 800;
}
.trust-card-number strong {
  display: flex !important;
  align-items: baseline;
  gap: 2px;
  font-size: 30px !important;
  letter-spacing: -.045em;
}
.trust-card-number strong em {
  font-style: normal;
  color: var(--orange);
  font-size: .72em;
  margin-left: 1px;
}
.trust-card-number .static-stat {
  font-size: 30px !important;
  letter-spacing: -.045em;
}
.hero-trust-refined .trust-card > span,
.hero-trust-refined .route-card > span {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-trust-refined .route-card strong {
  display: grid;
  gap: 5px;
  line-height: 1.08;
  letter-spacing: 0;
}
.hero-trust-refined .route-card .route-line {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
.flag-img,
.hero-trust-refined .route-card .flag-img {
  width: 24px;
  height: 17px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,.2);
  flex: 0 0 auto;
}

.page-hero .container.page-hero-inner {
  width: min(var(--container), calc(100% - 40px));
  max-width: var(--container) !important;
  margin: 0 auto !important;
  text-align: left;
}
.page-hero.compact-hero {
  min-height: 340px;
  padding: 132px 0 72px;
  display: flex;
  align-items: flex-end;
}
.page-hero.compact-hero h1 {
  font-size: clamp(38px, 4.2vw, 58px);
}
.page-hero.compact-hero p {
  max-width: 740px;
  font-size: 16px;
}

/* Contact page */
.contact-section { background: #fff; }
.contact-pro-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}
.contact-card-clean,
.contact-form-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7,18,45,.1);
  border-radius: 6px;
  padding: clamp(24px, 3vw, 38px);
  box-shadow: 0 18px 55px rgba(7,18,45,.08);
}
.contact-card-bg {
  position: absolute;
  right: -20px;
  top: -24px;
  width: 175px;
  height: 175px;
  color: var(--orange);
  opacity: .075;
  transform: rotate(-16deg);
}
.contact-card-bg .icon {
  width: 100%;
  height: 100%;
  stroke-width: 1.1;
}
.contact-card-clean h2,
.contact-form-card h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.06;
  letter-spacing: -.045em;
  margin-bottom: 16px;
}
.contact-card-clean p {
  font-size: 16px;
  max-width: 560px;
}
.contact-call-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.contact-call-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(7,18,45,.1);
  background: #f8fafc;
  color: var(--navy);
  font-weight: 800;
  font-size: 17px;
}
.contact-call-list a .icon {
  width: 20px;
  height: 20px;
  color: var(--orange);
}
.contact-call-list .flag-img {
  width: 28px;
  height: 19px;
  box-shadow: 0 0 0 1px rgba(7,18,45,.12);
}
.contact-form-card .contact-shortcode-card,
.contact-shortcode-card.reservation-shortcode {
  padding: 0 !important;
  margin-top: 18px;
  min-height: 360px;
}
.contact-form-card .contact-shortcode-card > * {
  margin: 0 !important;
}

/* Gde smo GPS template */
.where-tracker-section {
  background:
    radial-gradient(circle at 15% 0%, rgba(247,147,30,.12), transparent 34%),
    linear-gradient(180deg, #fff, #f8fafc);
}
.gps-tracker {
  background: #fff;
  border: 1px solid rgba(7,18,45,.1);
  border-radius: 6px;
  box-shadow: 0 18px 55px rgba(7,18,45,.08);
  padding: clamp(22px, 3vw, 34px);
}
.gps-tracker-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}
.gps-tracker-head h2 {
  font-size: clamp(30px, 3vw, 46px);
  margin-bottom: 10px;
}
.gps-tracker-head p {
  max-width: 760px;
  margin: 0;
}
.gps-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(247,147,30,.12);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.gps-live-pill .icon {
  width: 18px;
  height: 18px;
  color: var(--orange);
}
.gps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.gps-card {
  background: #f8fafc;
  border: 1px solid rgba(7,18,45,.1);
  border-radius: 6px;
  padding: 20px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.gps-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(7,18,45,.1);
}
.gps-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.gps-card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--navy);
  color: var(--orange);
}
.gps-card-icon .icon {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}
.gps-card-top span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.gps-card h3 {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.1;
}
.gps-card dl {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}
.gps-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(7,18,45,.08);
  padding-bottom: 10px;
}
.gps-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.gps-card dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  text-align: right;
}
.gps-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  border-radius: 6px;
  background: var(--orange);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gps-map-link .icon {
  width: 18px;
  height: 18px;
}
.gps-empty {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 260px;
  border: 1px dashed rgba(7,18,45,.18);
  border-radius: 6px;
  background: #f8fafc;
  padding: 30px;
}
.gps-empty .icon {
  width: 38px;
  height: 38px;
  color: var(--orange);
  margin-bottom: 12px;
}
.gps-empty h3 {
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 8px;
}
.gps-empty p {
  max-width: 620px;
  margin: 0;
}
.gps-extra-code {
  margin-top: 20px;
}

/* cleaner lightbox */
.lightbox {
  backdrop-filter: blur(8px);
}
.lightbox-frame {
  width: min(1180px, 96vw);
}
.lightbox-image-wrap {
  background: rgba(3,8,22,.7);
  box-shadow: 0 28px 70px rgba(0,0,0,.4);
}
.lightbox-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 26px;
  background: linear-gradient(180deg, transparent, rgba(7,18,45,.82));
}

@media (max-width: 1180px) {
  .hero.hero-centered .hero-inner.hero-inner-form-first {
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  }
  .booking-card-hero .booking-embed { min-height: 520px; }
}

@media (max-width: 1080px) {
  .hero.hero-centered {
    min-height: auto;
    padding: 118px 0 74px;
  }
  .hero.hero-centered .hero-inner.hero-inner-form-first {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-inner-form-first .hero-booking-shell { order: 1; }
  .hero-inner-form-first .hero-copy { order: 2; }
  .booking-card-hero {
    max-width: none;
  }
  .booking-card-hero .booking-embed {
    min-height: 460px;
  }
  .hero-trust-refined {
    max-width: none;
  }
  .contact-pro-grid,
  .gps-grid {
    grid-template-columns: 1fr;
  }
  .gps-tracker-head {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .hero.hero-centered {
    padding: 104px 0 58px;
  }
  .hero-inner-form-first .hero-copy h1 span {
    white-space: normal;
    font-size: 32px;
  }
  .hero-inner-form-first .hero-copy h1 strong {
    font-size: 24px;
  }
  .booking-card-hero .booking-embed {
    min-height: 360px;
  }
  .hero-trust-refined {
    grid-template-columns: 1fr;
  }
  .hero-trust-refined .trust-card {
    min-height: 105px;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .hero-trust-refined .trust-card:last-child {
    border-bottom: 0;
  }
  .contact-card-clean,
  .contact-form-card,
  .gps-tracker {
    padding: 22px;
  }
  .contact-call-list a {
    font-size: 15px;
  }
  .page-hero .container.page-hero-inner {
    width: min(100% - 28px, var(--container));
  }
}


/* --- refinement patch: hero stats + stronger h2 --- */
h2,
.section h2,
.page-hero h1,
.booking-card-head h2,
.contact-card-clean h2,
.contact-form-card h2,
.typography h2,
.post-content h2,
.lines-copy h2,
.lines-section h2,
.doc-article h2,
.map-code-shell h2,
.apartment-copy h2,
.apartment-detail-copy h2,
.blog-top h2,
.tickets-copy h2,
.comfort-copy h2,
.about-copy h2 {
  font-weight: 800;
}

.hero-trust-refined {
  max-width: 620px;
}
.hero-trust-refined .trust-card {
  min-height: 146px;
  padding: 24px 22px 20px;
  gap: 10px;
}
.hero-trust-refined .trust-card::after {
  right: -24px;
  top: -24px;
  width: 96px;
  height: 96px;
  background: rgba(247,147,30,.09);
}
.hero-trust-refined .trust-card > .icon {
  width: 30px;
  height: 30px;
  stroke-width: 1.75;
}
.hero-trust-refined .trust-card strong {
  font-weight: 800;
}
.trust-card-number strong {
  font-size: 38px !important;
  line-height: .95;
  gap: 1px;
}
.trust-card-number strong em {
  font-size: .78em;
}
.trust-card-number .static-stat {
  font-size: 38px !important;
  line-height: .95;
}
.hero-trust-refined .trust-card > span,
.hero-trust-refined .route-card > span {
  font-size: 13px;
  letter-spacing: .14em;
}
.hero-trust-refined .route-card strong {
  gap: 8px;
}
.hero-trust-refined .route-card .route-line {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}
.hero-trust-refined .route-card .route-line + .route-line {
  margin-top: -2px;
}
@media (max-width: 760px) {
  .hero-trust-refined .trust-card {
    min-height: 118px;
    padding: 20px 18px;
  }
  .hero-trust-refined .trust-card > .icon {
    width: 28px;
    height: 28px;
  }
  .trust-card-number strong,
  .trust-card-number .static-stat {
    font-size: 34px !important;
  }
  .hero-trust-refined .route-card .route-line {
    font-size: 17px;
  }
}


/* --- hero trust cards polish v3 --- */
.hero-trust-refined {
  max-width: 640px;
  background: rgba(255,255,255,.065);
}
.hero-trust-refined .trust-card {
  min-height: 152px;
  padding: 26px 24px 22px;
  gap: 12px;
}
.hero-trust-refined .trust-card::after {
  display: none;
}
.hero-trust-refined .trust-card > .icon {
  width: 32px;
  height: 32px;
  stroke-width: 1.7;
}
.trust-card-number strong {
  display: inline-flex !important;
  align-items: baseline;
  gap: 0;
  font-size: 52px !important;
  line-height: .92;
  letter-spacing: -.055em;
  color: #fff;
}
.trust-card-number strong em {
  font-size: .95em;
  color: #fff;
  margin-left: 1px;
}
.trust-card-number .static-stat {
  font-size: 52px !important;
  line-height: .92;
  letter-spacing: -.055em;
  color: #fff;
}
.hero-trust-refined .trust-card > span,
.hero-trust-refined .route-card > span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,.82);
}
.hero-trust-refined .route-card strong {
  display: grid;
  gap: 4px;
}
.hero-trust-refined .route-card .route-line {
  font-size: 16px;
  line-height: 1.15;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 760px) {
  .hero-trust-refined .trust-card {
    min-height: 118px;
    padding: 20px 18px;
  }
  .hero-trust-refined .trust-card > .icon {
    width: 28px;
    height: 28px;
  }
  .trust-card-number strong,
  .trust-card-number .static-stat {
    font-size: 42px !important;
  }
  .hero-trust-refined .route-card .route-line {
    font-size: 15px;
  }
  .hero-trust-refined .trust-card > span,
  .hero-trust-refined .route-card > span {
    font-size: 13px;
  }
}


/* --- Naisturs GPS/header/hero polish update --- */
.site-header,
.site-header.is-scrolled {
  background: var(--navy) !important;
  backdrop-filter: none !important;
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 10px 32px rgba(0,0,0,.18);
}
.header-inner { min-height: 76px; }
.brand { font-size: 23px; }
.brand strong { font-weight: 800; }
.brand span { font-weight: 300; color: var(--orange); }
.desktop-nav a,
.site-header .desktop-nav a {
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .095em;
}
.site-header .desktop-nav ul { gap: 30px; }
.header-cta { position: relative; overflow: hidden; font-weight: 800; }
.header-cta::after {
  content: '';
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 55%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg);
  animation: naistursShimmer 4.8s ease-in-out infinite;
}
.header-cta span,
.header-cta svg { position: relative; z-index: 2; }
@keyframes naistursShimmer {
  0%, 64% { left: -70%; opacity: 0; }
  72% { opacity: 1; }
  92%, 100% { left: 120%; opacity: 0; }
}
.hero.hero-centered .hero-inner.hero-inner-form-first {
  grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr) !important;
  gap: 64px;
  align-items: center;
}
.hero-booking-shell { max-width: 100%; }
.hero-inner-form-first .hero-copy h1 span { font-size: clamp(32px, 4.1vw, 54px); }
.hero-inner-form-first .hero-copy h1 strong { font-size: clamp(23px, 2.6vw, 34px); }
.hero-lead,
.about-copy p,
.lines-copy > p,
.tickets-copy p,
.comfort-copy p,
.blog-top p,
.page-hero p,
.post-content p,
.typography p,
.doc-article p {
  font-size: 15px;
}
.hero-benefits {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 26px;
}
.hero-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.065);
  border-radius: 6px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 500;
}
.hero-benefit-item .icon {
  width: 21px;
  height: 21px;
  min-width: 21px;
  color: var(--orange);
  stroke-width: 1.75;
}
.home-live-map { position: relative; z-index: 1; }
.home-live-map .nais-gde-smo { margin: 0; }
.home-live-map .nais-gde-smo--map-only .nais-gde-smo__head,
.gde-smo-live-map-section .nais-gde-smo--map-only .nais-gde-smo__head {
  position: absolute;
  left: max(24px, calc((100vw - var(--container)) / 2));
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 28px;
  z-index: 500;
  margin: 0;
  padding: 0;
  align-items: end;
}
.home-live-map .nais-gde-smo__title,
.gde-smo-live-map-section .nais-gde-smo__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 6px;
  color: #fff;
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1;
  background: rgba(7,18,45,.78);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  text-shadow: none;
}
.home-live-map .nais-gde-smo--map-only .nais-gde-smo__map-wrap,
.gde-smo-live-map-section .nais-gde-smo--map-only .nais-gde-smo__map-wrap {
  border-radius: 0;
  border: 0;
  box-shadow: none;
}
.gde-smo-live-map-section { position: relative; overflow: hidden; background: var(--navy); }
.gde-smo-map-overlay {
  position: absolute;
  z-index: 510;
  left: max(20px, calc((100vw - var(--container)) / 2));
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border-radius: 6px;
  background: rgba(7,18,45,.84);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  pointer-events: none;
}
.gde-smo-map-overlay .icon { width: 20px; height: 20px; color: var(--orange); }
.gde-smo-map-overlay strong { font-size: 18px; }
.gde-smo-live-map-section .nais-gde-smo--awaiting + .gde-smo-map-overlay,
.gde-smo-live-map-section .nais-gde-smo--awaiting ~ .gde-smo-map-overlay { display: none; }
.where-tracker-section { padding-top: 74px; }
.nais-gde-smo { font-family: 'Poppins', sans-serif; }
.nais-gde-smo__map-wrap { border-radius: 6px; }
.nais-gde-smo__card { border-radius: 6px; }
.nais-gde-smo__plate { color: var(--navy); }
.nais-gde-smo__link { color: var(--orange); }
.nais-gde-smo__popup-link { color: #f7931e; }
@media(max-width:1080px){
  .hero.hero-centered .hero-inner.hero-inner-form-first {
    grid-template-columns: 1fr !important;
    gap: 42px;
  }
  .hero-inner-form-first .hero-booking-shell { order: 1; }
  .hero-inner-form-first .hero-copy { order: 2; }
  .hero-benefits { max-width: none; }
}
@media(max-width:760px){
  .site-header .desktop-nav { display: none; }
  .header-inner { min-height: 68px; }
  .brand { font-size: 21px; }
  .booking-card-hero .booking-embed { min-height: 320px; }
  .hero-benefit-item { font-size: 13px; padding: 12px 13px; }
  .hero-lead,
  .about-copy p,
  .lines-copy > p,
  .tickets-copy p,
  .comfort-copy p,
  .blog-top p,
  .page-hero p,
  .post-content p,
  .typography p,
  .doc-article p { font-size: 14px; }
  .home-live-map .nais-gde-smo--map-only .nais-gde-smo__head,
  .gde-smo-live-map-section .nais-gde-smo--map-only .nais-gde-smo__head { left: 14px; right: 14px; bottom: 18px; }
  .home-live-map .nais-gde-smo__title,
  .gde-smo-live-map-section .nais-gde-smo__title { font-size: 26px; padding: 10px 12px; }
  .gde-smo-map-overlay { left: 14px; bottom: 18px; }
}


/* Gde smo - responsive MicroSys XML table */
.gps-tracker-table-view {
  overflow: hidden;
}
.gps-table-shell {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(7,18,45,.10);
  border-radius: 6px;
  background: #fff;
}
.gps-responsive-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: #fff;
}
.gps-responsive-table th,
.gps-responsive-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(7,18,45,.08);
  text-align: left;
  vertical-align: middle;
}
.gps-responsive-table th {
  width: 34%;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  background: #fbfcff;
}
.gps-responsive-table td {
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}
.gps-table-group-row td {
  background: var(--navy);
  color: #fff;
  border-bottom: 0;
  padding: 18px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.gps-table-group-row:not(:first-child) td {
  border-top: 12px solid #fff;
}
.gps-table-bus-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  border-radius: 6px;
  background: rgba(247,147,30,.13);
  color: var(--orange);
  vertical-align: middle;
}
.gps-table-bus-icon .icon {
  width: 19px;
  height: 19px;
  stroke-width: 1.8;
}
.gps-table-link-row th,
.gps-table-link-row td {
  border-bottom: 0;
}
.gps-table-map-link {
  width: auto;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(247,147,30,.34);
  box-shadow: 0 12px 24px rgba(247,147,30,.16);
}
.gps-table-map-link:hover {
  transform: translateY(-1px);
  background: #ffab35;
}
.gps-muted {
  color: var(--muted);
  font-weight: 600;
}
.gps-empty-help {
  margin-top: 10px !important;
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 760px) {
  .gps-tracker {
    padding: 18px;
  }
  .gps-responsive-table {
    min-width: 0;
  }
  .gps-responsive-table,
  .gps-responsive-table tbody,
  .gps-responsive-table tr,
  .gps-responsive-table th,
  .gps-responsive-table td {
    display: block;
    width: 100%;
  }
  .gps-responsive-table th,
  .gps-responsive-table td {
    padding: 12px 14px;
  }
  .gps-responsive-table th {
    border-bottom: 0;
    padding-bottom: 4px;
    background: #fff;
    font-size: 12px;
  }
  .gps-responsive-table td {
    padding-top: 4px;
    font-size: 15px;
  }
  .gps-table-row {
    border-bottom: 1px solid rgba(7,18,45,.08);
    background: #fff;
  }
  .gps-table-link-row td {
    padding-bottom: 14px;
  }
  .gps-table-group-row td {
    padding: 15px;
  }
  .gps-table-group-row:not(:first-child) td {
    border-top: 10px solid #f8fafc;
  }
  .gps-table-map-link {
    width: 100%;
  }
}


/* Gde smo template: MicroSys table is the main display, no inactive live-map placeholder above it. */
.where-tracker-section--primary {
  background: linear-gradient(135deg, #fff7eb 0%, #ffffff 46%, #f7f8fb 100%);
  padding-top: 76px;
}
.where-tracker-section--primary .gps-tracker {
  margin: 0 auto;
  max-width: 1180px;
}
.where-tracker-section--primary .gps-empty h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.where-tracker-section--primary .gps-table-shell {
  box-shadow: 0 18px 55px rgba(7,18,45,.08);
}
@media (max-width: 760px) {
  .where-tracker-section--primary { padding-top: 54px; }
}


/* === NAISTURS 1.0.4 HTML MATCH / CUSTOMIZER ICONS / MARQUEE === */
.naisturs-lucide,
i[data-lucide] { display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
.naisturs-lucide svg,
i[data-lucide] svg { width: 1em; height: 1em; display: block; }
.flag-img { width: 24px; height: 16px; object-fit: cover; display: inline-block; vertical-align: -3px; box-shadow: 0 0 0 1px rgba(7,18,45,.12); border-radius: 2px; }
.route-word-pill .flag-img { width: 22px; height: 15px; box-shadow: 0 0 0 1px rgba(255,255,255,.18); }
.contact-list .flag-img { width: 23px; height: 16px; margin-top: 3px; }
.flag-title span { display: inline-flex; align-items: center; gap: 9px; }

/* cancellation block exactly like the HTML prototype */
.cancel-section { background: #fff; }
.cancel-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 58px; align-items: start; }
.cancel-grid > .cancel-copy { position: sticky; top: 120px; }
.cancel-steps { display: grid; gap: 14px; }
.cancel-card { display: grid; grid-template-columns: 74px 1fr; gap: 18px; align-items: center; padding: 20px 22px; border-radius: var(--radius); border: 1px solid rgba(7,18,45,.1); background: #f8fafc; }
.cancel-card.success { background: linear-gradient(135deg, rgba(32, 201, 151, .10), #fff); }
.cancel-card.warning { background: linear-gradient(135deg, rgba(247, 147, 30, .10), #fff); }
.cancel-card.danger { background: linear-gradient(135deg, rgba(239, 68, 68, .10), #fff); }
.cancel-icon { width: 62px; height: 62px; display: grid; place-items: center; background: var(--navy); color: var(--orange); border-radius: var(--radius); }
.cancel-icon svg { width: 26px; height: 26px; stroke-width: 1.85; }
.cancel-content { display: grid; gap: 4px; }
.cancel-order { color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.cancel-card h3 { margin: 0; color: var(--navy); font-size: 26px; line-height: 1.1; }
.cancel-card p { margin: 0; font-size: 15px; color: #465066; }

/* comfort block exactly like the HTML prototype */
.comfort-section { position: relative; padding: 118px 0; background: var(--navy); color: #fff; overflow: hidden; }
.comfort-bg { position: absolute; inset: 0; background-size: cover; background-position: center center; transform: scale(1.03); }
.comfort-inner { position: relative; z-index: 2; }
.comfort-copy { width: 100%; max-width: none; margin-bottom: 38px; }
.comfort-copy h2 { color: #fff; max-width: 840px; }
.comfort-copy p { color: rgba(255,255,255,.74); font-size: 17px; max-width: 920px; }
.comfort-scroll { display: grid; grid-template-columns: repeat(4, minmax(230px, 1fr)); gap: 14px; }
.comfort-scroll article { min-height: 220px; padding: 24px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); border-radius: var(--radius); }
.comfort-scroll svg { width: 35px; height: 35px; color: var(--orange); stroke-width: 1.5; margin-bottom: 36px; }
.comfort-scroll h3 { color: #fff; margin-bottom: 8px; }
.comfort-scroll p { color: rgba(255,255,255,.63); margin: 0; font-size: 14px; }

/* full-width vehicle marquee */
.fleet-section { background: #fff; overflow: hidden; }
.fleet-section .section-heading h2 { font-size: clamp(38px, 5vw, 64px); }
.fleet-marquee { width: 100vw; margin-left: calc(50% - 50vw); overflow: hidden; margin-top: 40px; padding: 8px 0 18px; }
.fleet-marquee-track { display: flex; gap: 16px; width: max-content; animation: naistursFleetMarquee 48s linear infinite; will-change: transform; }
.fleet-marquee:hover .fleet-marquee-track { animation-play-state: paused; }
.fleet-marquee .fleet-item { position: relative; flex: 0 0 clamp(270px, 28vw, 430px); height: clamp(210px, 23vw, 300px); overflow: hidden; border-radius: var(--radius); background: #d7dbe4; box-shadow: 0 14px 38px rgba(7,18,45,.08); }
.fleet-marquee .fleet-item img { width: 100%; height: 100%; object-fit: cover; object-position: center center; transition: transform .45s ease; }
.fleet-marquee .fleet-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(7,18,45,.78)); }
.fleet-marquee .fleet-item span { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2; color: #fff; font-weight: 800; text-align: center; }
.fleet-marquee .fleet-item:hover img { transform: scale(1.06); }
@keyframes naistursFleetMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .fleet-marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; padding-inline: 20px; } .fleet-clone { display: none !important; } }

/* dark apartment promo box */
.apartment-teaser { background: #fff; }
.apartment-teaser-card { padding: clamp(24px, 4vw, 42px); border-radius: var(--radius); background: radial-gradient(circle at 10% 0%, rgba(247,147,30,.24), transparent 34%), linear-gradient(135deg, #07122d 0%, #0d1c42 58%, #07122d 100%); border: 1px solid rgba(255,255,255,.1); box-shadow: 0 22px 70px rgba(7,18,45,.22); overflow: hidden; }
.apartment-teaser-grid { display: grid; grid-template-columns: 1fr .95fr; gap: 44px; align-items: center; padding: 0; border: 0; box-shadow: none; background: transparent; }
.apartment-copy h2 { color: #fff; max-width: 720px; font-size: clamp(34px, 4.5vw, 58px); }
.apartment-copy p { color: rgba(255,255,255,.72); font-size: 16px; }
.apartment-features-mini { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 24px 0 8px; }
.apartment-features-mini span { min-height: 44px; display: flex; align-items: center; gap: 10px; padding: 10px 12px; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); font-size: 14px; font-weight: 700; }
.apartment-features-mini svg { width: 19px; height: 19px; color: var(--orange); stroke-width: 1.7; flex: 0 0 auto; }
.apartment-cta { width: max-content; margin-top: 18px; }
.apartment-photo-slider { position: relative; min-height: 430px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.22); background: #0b1430; }
.apartment-slider { position: absolute; inset: 0; }
.apartment-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; opacity: 0; transform: scale(1.02); transition: opacity .65s ease, transform 4s ease; }
.apartment-slider img.active { opacity: 1; transform: scale(1.08); }
.apartment-photo-slider::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(7,18,45,.78)); pointer-events: none; }
.apartment-photo-label { position: absolute; left: 18px; bottom: 18px; z-index: 3; color: #fff; font-weight: 800; }
.apartment-dots { left: auto; right: 18px; bottom: 22px; }

/* news polishing */
.blog-top h2 { font-size: clamp(38px, 5vw, 64px); }
.news-card h3 { font-size: clamp(23px, 2vw, 30px); line-height: 1.13; }
.news-thumb img, .news-card img { width: 100%; height: 230px; object-fit: cover; object-position: center center; }
.news-card a { text-transform: none; letter-spacing: 0; }
.news-card div > a { text-transform: uppercase; letter-spacing: .08em; }

/* image consistency */
.about-media img, .line-slider img, .post-featured, .post-cover, .apartment-gallery-grid img { object-fit: cover; object-position: center center; }

@media (max-width: 1080px) {
  .cancel-grid, .apartment-teaser-grid { grid-template-columns: 1fr; }
  .cancel-grid > .cancel-copy { position: static; }
  .comfort-scroll { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 14px; margin-right: calc((100vw - 100%) / -2); padding-right: 20px; }
  .comfort-scroll article { min-width: 270px; scroll-snap-align: start; }
  .apartment-photo-slider { min-height: 360px; }
}
@media (max-width: 760px) {
  .cancel-card { grid-template-columns: 1fr; }
  .apartment-features-mini { grid-template-columns: 1fr; }
  .apartment-photo-slider { min-height: 310px; }
  .fleet-marquee .fleet-item { flex-basis: 260px; height: 210px; }
  .news-thumb img, .news-card img { height: 220px; }
}


/* === V1.0.5 polishing: blog, online form, fleet mobile === */
.news-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-card .news-thumb {
  display: block;
  height: 246px;
  overflow: hidden;
  background: #e7ebf2;
}
.news-card .news-thumb img,
.news-card > a.news-thumb img,
.news-card img.wp-post-image {
  width: 100%;
  height: 100%;
  min-height: 246px;
  object-fit: cover;
  object-position: center center;
}
.news-card > div {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.news-card h3 {
  font-size: clamp(26px, 2.15vw, 34px) !important;
  line-height: 1.1 !important;
  letter-spacing: -.035em;
  margin: 14px 0 14px;
}
.news-card h3 a {
  font-weight: 800;
  color: var(--navy);
}
.news-card p {
  font-size: 15px;
  line-height: 1.62;
  margin-bottom: 22px;
}
.news-card div > a:last-child {
  margin-top: auto;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}
.blog-section .blog-top h2 {
  font-size: clamp(42px, 5.2vw, 68px) !important;
}

/* Keep fleet images calm on hover, but pause marquee on desktop */
.fleet-marquee .fleet-item:hover img,
.fleet-item:hover img {
  transform: none !important;
}
.fleet-marquee:hover .fleet-marquee-track {
  animation-play-state: paused;
}

/* Online booking template: no outside card/background, direct full form area */
.online-booking-section {
  padding: 34px 0 58px !important;
  background: #fff;
}
.online-booking-container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}
.online-booking-section .reservation-shortcode,
.reservation-shortcode-full {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
.online-booking-section .reservation-shortcode > * {
  margin-inline: auto;
}

@media (max-width: 760px) {
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .blog-grid {
    gap: 14px;
  }
  .blog-section .blog-top {
    margin-bottom: 24px;
  }
  .blog-section .blog-top h2 {
    font-size: 34px !important;
  }
  .news-card .news-thumb {
    height: 214px;
  }
  .news-card .news-thumb img,
  .news-card > a.news-thumb img,
  .news-card img.wp-post-image {
    min-height: 214px;
  }
  .news-card h3 {
    font-size: 24px !important;
  }
  .news-card div {
    padding: 20px !important;
  }
  .fleet-section {
    padding-top: 66px;
    padding-bottom: 66px;
  }
  .fleet-section .section-heading {
    margin-bottom: 24px;
  }
  .fleet-marquee {
    margin-top: 26px;
    margin-left: calc(50% - 50vw);
    padding: 2px 0 14px 14px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .fleet-marquee::-webkit-scrollbar {
    display: none;
  }
  .fleet-marquee-track {
    gap: 10px;
    animation: none !important;
    transform: none !important;
    width: max-content;
    padding-right: 14px;
  }
  .fleet-marquee .fleet-clone {
    display: none !important;
  }
  .fleet-marquee .fleet-item {
    flex: 0 0 82vw !important;
    height: 220px !important;
    scroll-snap-align: start;
  }
  .apartment-teaser-card {
    padding: 22px;
  }
  .apartment-teaser-grid {
    gap: 22px;
  }
  .online-booking-section {
    padding: 22px 0 44px !important;
  }
  .online-booking-container {
    width: min(100% - 18px, 1280px);
  }
}


/* === V1.0.6 Single post, sidebar, apartment and blog polish === */
.yoast-breadcrumbs-wrap {
  margin-top: 26px;
  margin-bottom: -36px;
}
.yoast-breadcrumbs {
  font-size: 13px;
  color: var(--muted);
}
.yoast-breadcrumbs a {
  color: var(--navy);
  font-weight: 700;
}
.single-section-clean {
  background: #f7f8fb;
  padding-top: 76px;
}
.single-layout-clean {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
}
.single-main-clean {
  background: #fff;
  border: 1px solid rgba(7,18,45,.10);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(7,18,45,.07);
  overflow: hidden;
}
.single-featured-clean {
  margin: 0;
  height: clamp(300px, 42vw, 520px);
  background: #07122d;
}
.single-featured-clean img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.post-meta-clean {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 22px clamp(22px, 4vw, 42px) 0;
  color: #536078;
  font-size: 13px;
  font-weight: 700;
}
.post-meta-clean a {
  color: var(--navy);
}
.post-article-body {
  padding: 18px clamp(22px, 4vw, 42px) 38px;
}
.post-article-body > *:first-child { margin-top: 0; }
.post-article-body h1,
.post-article-body h2,
.post-article-body h3,
.post-article-body h4,
.post-article-body h5,
.post-article-body h6 {
  color: var(--navy);
  letter-spacing: -.035em;
  line-height: 1.12;
  margin: 1.35em 0 .55em;
}
.post-article-body h1 { font-size: clamp(38px, 4.8vw, 64px); }
.post-article-body h2 { font-size: clamp(32px, 3.8vw, 50px); }
.post-article-body h3 { font-size: clamp(26px, 3vw, 36px); }
.post-article-body h4 { font-size: 24px; }
.post-article-body h5 { font-size: 20px; }
.post-article-body h6 { font-size: 17px; text-transform: uppercase; letter-spacing: .08em; }
.post-article-body p,
.post-article-body li {
  font-size: 16px;
  line-height: 1.82;
  color: #465066;
}
.post-article-body ul,
.post-article-body ol {
  padding-left: 24px;
  margin: 18px 0 26px;
}
.post-article-body li { margin-bottom: 8px; }
.post-article-body a { color: var(--navy); font-weight: 800; border-bottom: 1px solid rgba(247,147,30,.45); }
.post-article-body blockquote,
.post-article-body .wp-block-quote {
  margin: 30px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--orange);
  background: linear-gradient(135deg, rgba(247,147,30,.10), #fff);
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 700;
}
.post-article-body blockquote p { color: var(--navy); font-size: 19px; line-height: 1.65; }
.post-article-body figure { margin: 30px 0; }
.post-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.post-article-body .wp-block-image img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
.post-article-body figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
.post-article-body table,
.post-article-body .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid rgba(7,18,45,.12);
  border-radius: var(--radius);
}
.post-article-body th,
.post-article-body td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(7,18,45,.10);
  text-align: left;
}
.post-article-body th { background: var(--navy); color: #fff; }
.post-article-body iframe,
.post-article-body video {
  max-width: 100%;
  border-radius: var(--radius);
}
.post-article-body .wp-block-embed__wrapper,
.post-article-body .wp-block-video {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.post-article-body .wp-block-embed.is-type-video .wp-block-embed__wrapper:before {
  content: '';
  display: block;
  padding-top: 56.25%;
}
.post-article-body .wp-block-embed.is-type-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.single-share-clean {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px clamp(22px, 4vw, 42px) 32px;
  border-top: 1px solid rgba(7,18,45,.10);
}
.single-share-clean strong {
  color: var(--navy);
  margin-right: 8px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(7,18,45,.12);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.share-btn:hover {
  transform: translateY(-2px);
  background: var(--navy);
  color: #fff;
}
.share-btn svg,
.share-btn i { width: 18px; height: 18px; color: var(--orange); stroke-width: 1.8; }
.single-sidebar-clean {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 108px;
}
.sidebar-box-clean {
  background: #fff;
  border: 1px solid rgba(7,18,45,.10);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(7,18,45,.06);
  padding: 22px;
}
.sidebar-box-clean h3 {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 18px;
}
.sidebar-news-list {
  display: grid;
  gap: 14px;
}
.sidebar-news-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 13px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(7,18,45,.08);
}
.sidebar-news-item:last-child { border-bottom: 0; padding-bottom: 0; }
.sidebar-news-thumb {
  width: 84px;
  height: 74px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e8ecf3;
}
.sidebar-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.sidebar-news-content small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 5px;
}
.sidebar-news-content strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.28;
  font-weight: 800;
}
.sidebar-links-clean {
  background: var(--navy);
}
.sidebar-links-clean h3 { color: #fff; }
.sidebar-links-clean a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.82);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  font-weight: 700;
}
.sidebar-links-clean a:last-child { border-bottom: 0; }
.sidebar-links-clean svg,
.sidebar-links-clean i { width: 18px; height: 18px; color: var(--orange); }
.news-card .news-thumb {
  height: 240px;
  display: block;
  overflow: hidden;
}
.news-card .news-thumb img,
.news-card > a:first-child img,
.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center !important;
}
.news-card h3 {
  font-size: clamp(24px, 2.15vw, 32px) !important;
  line-height: 1.12 !important;
  margin: 14px 0 14px !important;
}
.news-card h3 a { color: var(--navy); }
.news-card h3 a:hover { color: var(--orange); }

.apartment-template-page .yoast-breadcrumbs-wrap { margin-bottom: 0; }
.apartment-showcase-section {
  background: linear-gradient(135deg, #fff, #f7f8fb);
}
.apartment-showcase {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: stretch;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 34px;
  position: relative;
}
.apartment-showcase:before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(247,147,30,.24), transparent 36%);
  pointer-events: none;
}
.apartment-showcase-copy,
.apartment-showcase-media {
  position: relative;
  z-index: 1;
}
.apartment-showcase-copy h2 {
  color: #fff;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.02;
}
.apartment-showcase-copy p {
  color: rgba(255,255,255,.72);
  font-size: 16px;
}
.apartment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.apartment-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  color: #fff;
  font-weight: 700;
}
.apartment-tags svg,
.apartment-tags i { width: 18px; height: 18px; color: var(--orange); }
.apartment-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.apartment-phone-link {
  color: #fff;
  font-weight: 900;
}
.apartment-showcase-media {
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0b1836;
}
.apartment-showcase-media > img,
.apartment-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.apartment-slider {
  position: relative;
  min-height: 480px;
  height: 100%;
}
.apartment-slider img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease, transform 4s ease;
  transform: scale(1.02);
}
.apartment-slider img.active { opacity: 1; transform: scale(1.06); }
.apartment-showcase-media .slider-dots { bottom: 18px; left: 18px; }
.apartment-amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.apartment-amenities-grid article {
  background: #fff;
  border: 1px solid rgba(7,18,45,.10);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 16px 42px rgba(7,18,45,.06);
}
.apartment-amenities-grid svg,
.apartment-amenities-grid i {
  width: 34px;
  height: 34px;
  color: var(--orange);
  stroke-width: 1.55;
  margin-bottom: 18px;
}
.apartment-amenities-grid h3 { color: var(--navy); margin-bottom: 8px; }
.apartment-amenities-grid p { margin: 0; font-size: 14px; }
.apartment-gallery-grid.fleet-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 290px;
}
.apartment-map-wrap {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 28px;
  align-items: center;
}
.apartment-map-box {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7,18,45,.10);
  box-shadow: var(--shadow);
}
.apartment-map-box iframe { width: 100%; height: 420px; border: 0; display: block; }

@media (max-width: 1080px) {
  .single-layout-clean,
  .apartment-showcase,
  .apartment-map-wrap {
    grid-template-columns: 1fr;
  }
  .single-sidebar-clean { position: static; }
  .apartment-amenities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .single-section-clean { padding-top: 58px; }
  .post-article-body { padding: 16px 18px 28px; }
  .post-meta-clean { padding-left: 18px; padding-right: 18px; }
  .single-share-clean { padding: 20px 18px 26px; align-items: stretch; }
  .share-btn { width: 100%; justify-content: center; }
  .sidebar-news-item { grid-template-columns: 76px 1fr; }
  .sidebar-news-thumb { width: 76px; height: 68px; }
  .news-card .news-thumb { height: 210px; }
  .news-card h3 { font-size: 24px !important; }
  .apartment-showcase { padding: 20px; gap: 22px; }
  .apartment-showcase-media,
  .apartment-slider { min-height: 340px; }
  .apartment-amenities-grid,
  .apartment-gallery-grid.fleet-grid { grid-template-columns: 1fr; }
  .apartment-gallery-grid.fleet-grid { grid-auto-rows: 250px; }
  .apartment-map-box iframe { height: 320px; }
}

/* === V1.0.7 request: tighter hero, larger blog titles, footer icons, native contact form === */
.hero-inner-form-first .hero-copy h1 {
  margin-bottom: 16px !important;
  max-width: 620px;
}
.hero-inner-form-first .hero-copy h1 span {
  font-size: clamp(30px, 3.35vw, 46px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.045em !important;
  white-space: normal !important;
}
.hero-inner-form-first .hero-copy h1 strong {
  font-size: clamp(21px, 2.12vw, 29px) !important;
  line-height: 1.08 !important;
  margin-top: 8px !important;
  max-width: 560px;
}
.hero-inner-form-first .hero-lead {
  max-width: 520px !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
  margin-bottom: 26px !important;
}
.hero-benefit-item {
  min-height: 50px !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
}
.hero-benefit-item svg,
.hero-benefit-item i {
  width: 20px !important;
  height: 20px !important;
}
.hero-trust-pro .trust-card strong,
.stats-card strong,
.stat-number,
.trust-card strong {
  font-size: clamp(28px, 3vw, 42px) !important;
  line-height: 1 !important;
}
.blog-grid .news-card h3,
.post-list-grid .news-card h3,
.archive .news-card h3,
.search .news-card h3,
.news-card h3 {
  font-size: clamp(30px, 2.7vw, 42px) !important;
  line-height: 1.05 !important;
  letter-spacing: -.045em !important;
  margin: 16px 0 16px !important;
}
.blog-grid .news-card h3 a,
.post-list-grid .news-card h3 a,
.news-card h3 a {
  font-weight: 900 !important;
}
.blog-grid .news-card > div,
.post-list-grid .news-card > div,
.news-card > div {
  padding: 28px !important;
}
.blog-grid .news-card span,
.post-list-grid .news-card span,
.news-card span {
  font-size: 12px !important;
}
.socials a {
  width: 42px !important;
  height: 42px !important;
  border-radius: 8px !important;
  color: rgba(255,255,255,.92) !important;
}
.socials a svg,
.socials a .icon,
.socials a i {
  width: 20px !important;
  height: 20px !important;
  stroke-width: 2 !important;
}
.socials a:hover svg,
.socials a:hover .icon,
.socials a:hover i { color: var(--navy) !important; }
.contact-shortcode-card.contact-native-wrap {
  padding: 0 !important;
  box-shadow: none !important;
  border: 0 !important;
  background: transparent !important;
}
.naisturs-contact-form {
  display: grid;
  gap: 14px;
}
.naisturs-contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.naisturs-contact-form label {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}
.naisturs-contact-form input,
.naisturs-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(7,18,45,.14);
  border-radius: 8px;
  background: #fbfbfd;
  color: var(--text);
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.naisturs-contact-form input:focus,
.naisturs-contact-form textarea:focus {
  border-color: rgba(247,147,30,.75);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(247,147,30,.12);
}
.naisturs-contact-form textarea { min-height: 150px; resize: vertical; }
.naisturs-contact-form .privacy-check,
.naisturs-contact-form .math-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
  color: #334155;
}
.naisturs-contact-form .privacy-check input,
.naisturs-contact-form .math-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}
.naisturs-contact-form .privacy-check a { color: var(--orange); font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.naisturs-contact-form .math-line {
  display: grid;
  grid-template-columns: auto minmax(110px, 160px);
  gap: 10px;
  align-items: center;
}
.naisturs-contact-form .math-line input { padding: 11px 12px; }
.naisturs-contact-form .hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.naisturs-contact-form .primary-btn {
  width: max-content;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
}
.naisturs-form-message {
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-weight: 800;
  line-height: 1.45;
}
.naisturs-form-message.success {
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.28);
  color: #065f46;
}
.naisturs-form-message.error {
  background: rgba(239,68,68,.10);
  border: 1px solid rgba(239,68,68,.25);
  color: #991b1b;
}
.smtp-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}
@media (max-width: 1080px) {
  .hero-inner-form-first .hero-copy h1 span { font-size: clamp(30px, 7vw, 44px) !important; }
  .hero-inner-form-first .hero-copy h1 strong { font-size: clamp(21px, 5vw, 28px) !important; }
}
@media (max-width: 760px) {
  .blog-grid .news-card h3,
  .post-list-grid .news-card h3,
  .news-card h3 { font-size: 29px !important; }
  .naisturs-contact-form .form-row,
  .naisturs-contact-form .math-line { grid-template-columns: 1fr; }
  .naisturs-contact-form .primary-btn { width: 100%; }
}


/* V1.0.7 extra: calmer about section headline */
.about-copy h2,
.about-section h2 {
  font-size: clamp(30px, 3.2vw, 46px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.035em !important;
}


/* === V1.0.8 final polish: admin bar, hero sizing, blog titles, footer icons === */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }
#wpadminbar,
#wpadminbar * {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
}
#wpadminbar .ab-icon,
#wpadminbar .ab-icon:before,
#wpadminbar .ab-item:before,
#wpadminbar #adminbarsearch:before {
  font-family: dashicons !important;
  font-weight: 400 !important;
  font-style: normal !important;
  speak: never;
}
#wpadminbar .ab-label,
#wpadminbar .display-name,
#wpadminbar .username {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
}

.hero-inner-form-first .hero-copy h1 span,
.hero h1 span {
  font-size: clamp(29px, 3.05vw, 41px) !important;
  line-height: 1.04 !important;
  letter-spacing: -.038em !important;
  white-space: normal !important;
  font-weight: 800 !important;
}
.hero-inner-form-first .hero-copy h1 strong,
.hero h1 strong {
  font-size: clamp(20px, 1.95vw, 27px) !important;
  line-height: 1.08 !important;
  margin-top: 7px !important;
  letter-spacing: -.032em !important;
  font-weight: 700 !important;
}
.hero-inner-form-first .hero-lead,
.hero-lead {
  font-size: 14px !important;
  line-height: 1.55 !important;
}
.hero-benefit-item {
  font-size: 13px !important;
  font-weight: 650 !important;
}
.about-copy h2,
.about-section h2 {
  font-size: clamp(26px, 2.65vw, 39px) !important;
  line-height: 1.09 !important;
  letter-spacing: -.032em !important;
}

.blog-grid .news-card h3,
.post-list-grid .news-card h3,
.archive .news-card h3,
.search .news-card h3,
.news-card h3 {
  font-size: clamp(32px, 3.25vw, 50px) !important;
  line-height: .98 !important;
  letter-spacing: -.055em !important;
  margin: 18px 0 18px !important;
  font-weight: 900 !important;
}
.blog-grid .news-card h3 a,
.post-list-grid .news-card h3 a,
.archive .news-card h3 a,
.search .news-card h3 a,
.news-card h3 a {
  display: block !important;
  font-size: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  font-weight: 900 !important;
  color: var(--navy) !important;
}
.blog-grid .news-card p,
.post-list-grid .news-card p,
.news-card p {
  font-size: 15px !important;
  line-height: 1.62 !important;
}
.blog-grid .news-card .news-thumb,
.post-list-grid .news-card .news-thumb,
.news-card .news-thumb {
  height: 240px !important;
}
.news-card .news-thumb img,
.news-card > a img,
.news-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.socials a {
  font-size: 0 !important;
  line-height: 0 !important;
  overflow: hidden;
}
.socials a svg,
.socials a .icon,
.socials a i {
  display: block !important;
  width: 21px !important;
  height: 21px !important;
  min-width: 21px !important;
  min-height: 21px !important;
  color: currentColor !important;
  stroke: currentColor !important;
}
.socials a svg path,
.socials a svg circle,
.socials a svg rect {
  vector-effect: non-scaling-stroke;
}

@media (max-width: 760px) {
  .hero-inner-form-first .hero-copy h1 span,
  .hero h1 span { font-size: clamp(28px, 8vw, 36px) !important; }
  .hero-inner-form-first .hero-copy h1 strong,
  .hero h1 strong { font-size: clamp(20px, 6vw, 25px) !important; }
  .blog-grid .news-card h3,
  .post-list-grid .news-card h3,
  .news-card h3 { font-size: 31px !important; }
  .blog-grid .news-card .news-thumb,
  .post-list-grid .news-card .news-thumb,
  .news-card .news-thumb { height: 210px !important; }
}


/* === V1.0.9 sane news title sizing === */
.blog-grid .news-card h3,
.post-list-grid .news-card h3,
.archive .news-card h3,
.search .news-card h3,
.news-card h3 {
  font-size: clamp(21px, 1.55vw, 27px) !important;
  line-height: 1.15 !important;
  letter-spacing: -.025em !important;
  margin: 12px 0 13px !important;
  font-weight: 800 !important;
}
.blog-grid .news-card h3 a,
.post-list-grid .news-card h3 a,
.archive .news-card h3 a,
.search .news-card h3 a,
.news-card h3 a {
  display: inline !important;
  font-size: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  font-weight: 800 !important;
}
.blog-grid .news-card > div,
.post-list-grid .news-card > div,
.news-card > div {
  padding: 24px !important;
}
.blog-grid .news-card p,
.post-list-grid .news-card p,
.news-card p {
  font-size: 15px !important;
  line-height: 1.58 !important;
}
@media (max-width: 760px) {
  .blog-grid .news-card h3,
  .post-list-grid .news-card h3,
  .archive .news-card h3,
  .search .news-card h3,
  .news-card h3 {
    font-size: 22px !important;
    line-height: 1.18 !important;
  }
}


/* === v1.1.0 ACF 4N apartment + hero document boxes === */
.hero-policy-boxes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  max-width: 520px;
}
.hero-policy-boxes a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.hero-policy-boxes a:hover {
  transform: translateY(-2px);
  background: rgba(247,147,30,.16);
  border-color: rgba(247,147,30,.42);
}
.hero-policy-boxes svg,
.hero-policy-boxes i {
  width: 21px;
  height: 21px;
  color: var(--orange);
  stroke-width: 1.8;
  flex: 0 0 auto;
}
.hero-policy-boxes span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
}

.apartment-acf-template {
  background: linear-gradient(180deg, #fbfbfd 0%, #fff 48%, #f7f8fb 100%);
}
.apartment-gallery-hero-section {
  padding-top: 86px;
  padding-bottom: 38px;
  background:
    radial-gradient(circle at 10% 0%, rgba(247,147,30,.11), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.apartment-titlebar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}
.apartment-titlebar h1 {
  max-width: 820px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 5.4vw, 74px);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 850;
}
.apartment-titlebar p {
  margin: 16px 0 0;
  max-width: 650px;
  font-size: 16px;
}
.apartment-titlebar-actions,
.apartment-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.apartment-titlebar-actions a,
.apartment-social-row a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border-radius: var(--radius);
  border: 1px solid rgba(7,18,45,.11);
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(7,18,45,.07);
}
.apartment-titlebar-actions svg,
.apartment-titlebar-actions i,
.apartment-social-row svg,
.apartment-social-row i {
  width: 17px;
  height: 17px;
  color: var(--orange);
}

.apartment-gallery-mosaic {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
  min-height: 452px;
}
.apartment-gallery-mosaic a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dbe2ee;
  box-shadow: 0 22px 55px rgba(7,18,45,.12);
  isolation: isolate;
}
.apartment-gallery-mosaic a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7,18,45,.72));
  opacity: .88;
  transition: opacity .2s ease;
}
.apartment-gallery-mosaic a:hover::after {
  opacity: .72;
}
.apartment-gallery-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .45s ease;
}
.apartment-gallery-mosaic a:hover img {
  transform: scale(1.035);
}
.apartment-gallery-mosaic span,
.apartment-gallery-mosaic b {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.apartment-mosaic-main {
  grid-row: 1 / span 2;
}
.apartment-mosaic-main span {
  font-size: 22px;
}
.apartment-mosaic-hidden {
  display: none !important;
}
.apartment-gallery-mosaic b {
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(7,18,45,.42);
  font-size: 24px;
  text-align: center;
}

.apartment-detail-section {
  padding-top: 64px;
  padding-bottom: 84px;
}
.apartment-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 30px;
  align-items: start;
}
.apartment-detail-copy {
  padding: 34px;
  border: 1px solid rgba(7,18,45,.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(7,18,45,.08);
}
.apartment-detail-copy h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
}
.apartment-description p {
  color: #465066;
  font-size: 16px;
}
.apartment-booking-panel {
  position: sticky;
  top: 112px;
  padding: 28px;
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(247,147,30,.2), transparent 28%),
    linear-gradient(135deg, var(--navy), #0b1b43);
  box-shadow: 0 22px 55px rgba(7,18,45,.18);
}
.apartment-booking-panel > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.apartment-booking-panel h3 {
  color: #fff;
  margin: 10px 0 10px;
  font-size: 30px;
  line-height: 1.08;
}
.apartment-booking-panel p {
  color: rgba(255,255,255,.72);
  margin-bottom: 22px;
}
.apartment-phone-big {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  margin-bottom: 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  font-weight: 850;
}
.apartment-phone-big svg,
.apartment-phone-big i {
  width: 20px;
  height: 20px;
  color: var(--orange);
}
.apartment-booking-panel .apartment-cta {
  width: 100%;
  justify-content: center;
}

.apartment-amenities-section {
  background: #fff;
}
.apartment-amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}
.apartment-amenities-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(7,18,45,.1);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fbfbfd);
  box-shadow: 0 14px 38px rgba(7,18,45,.06);
}
.apartment-amenities-grid svg,
.apartment-amenities-grid i {
  width: 32px;
  height: 32px;
  color: var(--orange);
  stroke-width: 1.6;
  margin-bottom: 24px;
}
.apartment-amenities-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
}
.apartment-amenities-grid p {
  margin: 0;
  font-size: 14px;
}

.apartment-map-section {
  background: #f7f8fb;
}
.apartment-map-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: start;
}
.apartment-map-box {
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(7,18,45,.1);
  background: #fff;
  box-shadow: 0 18px 50px rgba(7,18,45,.08);
}
.apartment-map-box iframe {
  width: 100%;
  min-height: 420px;
  display: block;
  border: 0;
}

.news-card h3,
.news-card h3 a {
  font-size: clamp(22px, 2.05vw, 32px) !important;
  line-height: 1.12 !important;
  letter-spacing: -.035em !important;
}

@media (max-width: 1080px) {
  .apartment-titlebar,
  .apartment-detail-layout,
  .apartment-map-wrap {
    grid-template-columns: 1fr;
    display: grid;
  }
  .apartment-titlebar {
    align-items: start;
  }
  .apartment-gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 180px 180px;
  }
  .apartment-mosaic-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .apartment-booking-panel {
    position: static;
  }
  .apartment-amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .hero-policy-boxes {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .apartment-gallery-hero-section {
    padding-top: 58px;
  }
  .apartment-titlebar h1 {
    font-size: 38px;
  }
  .apartment-gallery-mosaic {
    display: flex;
    gap: 10px;
    min-height: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    margin-right: -14px;
  }
  .apartment-gallery-mosaic a {
    min-width: 82%;
    height: 280px;
    scroll-snap-align: start;
  }
  .apartment-gallery-mosaic b {
    font-size: 20px;
  }
  .apartment-detail-copy,
  .apartment-booking-panel {
    padding: 22px;
  }
  .apartment-amenities-grid {
    grid-template-columns: 1fr;
  }
  .apartment-map-box,
  .apartment-map-box iframe {
    min-height: 330px;
  }
  .news-card h3,
  .news-card h3 a {
    font-size: 24px !important;
  }
}


/* === v1.1.1 global consistency and 4N social polish === */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  font-weight: 400;
  letter-spacing: 0;
}
.site-header,
.site-header.is-scrolled {
  background: var(--navy) !important;
  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 32px rgba(7,18,45,.14);
}
.header-inner { min-height: 74px; }
.brand { font-size: 23px; letter-spacing: -.052em; }
.brand strong { font-weight: 800; }
.brand span { font-weight: 300 !important; color: var(--orange); }
.desktop-nav a,
.site-header .desktop-nav a,
.site-header .desktop-nav .menu-item > a {
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .055em !important;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}
.desktop-nav a:hover,
.site-header .desktop-nav a:hover { color: #fff; }
.header-cta {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .065em;
}
.section { padding-top: clamp(74px, 7vw, 104px); padding-bottom: clamp(74px, 7vw, 104px); }
h1, h2, h3, h4, h5, h6 { color: var(--navy); letter-spacing: -.04em; font-weight: 800; }
h2,
.section-heading h2,
.about-copy h2,
.tickets-copy h2,
.cancel-grid h2,
.comfort-copy h2,
.blog-top h2,
.page-section h2,
.apartment-detail-copy h2,
.apartment-map-wrap h2,
.apartment-amenities-section h2 {
  font-size: clamp(32px, 4.2vw, 54px) !important;
  line-height: 1.06 !important;
  letter-spacing: -.045em !important;
  font-weight: 800 !important;
}
.page-hero h1,
.page-title,
.archive-title,
.search-title {
  font-size: clamp(38px, 5.2vw, 68px) !important;
  line-height: 1 !important;
  letter-spacing: -.055em !important;
  font-weight: 800 !important;
}
p, li, .typography p, .post-content p, .page-content p { font-size: 16px; line-height: 1.72; }
.section-kicker { font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.news-card h3,
.blog-grid .news-card h3,
.post-list-grid .news-card h3,
.archive .news-card h3,
.search .news-card h3 {
  font-size: clamp(22px, 2.1vw, 30px) !important;
  line-height: 1.14 !important;
  letter-spacing: -.035em !important;
  font-weight: 800 !important;
  margin: 12px 0 12px !important;
}
.news-card h3 a { font-size: inherit !important; line-height: inherit !important; letter-spacing: inherit !important; font-weight: inherit !important; }
.news-card p { font-size: 15px !important; line-height: 1.58 !important; }
.news-card span { font-size: 11px !important; font-weight: 800 !important; letter-spacing: .12em !important; }
.news-card > div { padding: 24px !important; }
.news-thumb img, .news-card img { object-fit: cover !important; object-position: center center !important; }

/* 4N apartment: match the rest of the site */
.apartment-gallery-hero-section {
  padding-top: clamp(76px, 7vw, 108px);
  background: radial-gradient(circle at 10% 0%, rgba(247,147,30,.10), transparent 30%), linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.apartment-titlebar {
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 30px;
}
.apartment-titlebar h1 {
  font-size: clamp(38px, 5vw, 66px) !important;
  line-height: 1 !important;
  letter-spacing: -.055em !important;
  font-weight: 800 !important;
}
.apartment-titlebar p { font-size: 16px; line-height: 1.66; color: var(--muted); }
.apartment-titlebar-actions,
.apartment-social-row {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.apartment-titlebar-actions a,
.apartment-social-row a {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0 !important;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  border: 1px solid rgba(7,18,45,.11);
  background: #fff;
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(7,18,45,.08);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.apartment-titlebar-actions a:hover,
.apartment-social-row a:hover {
  transform: translateY(-2px);
  background: var(--orange);
  border-color: var(--orange);
  color: var(--navy);
}
.apartment-titlebar-actions svg,
.apartment-titlebar-actions i,
.apartment-social-row svg,
.apartment-social-row i {
  width: 19px !important;
  height: 19px !important;
  color: currentColor !important;
}
.apartment-titlebar-actions a span,
.apartment-social-row a span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translate(-50%, 6px);
  width: max-content;
  max-width: 160px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(7,18,45,.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 20;
}
.apartment-titlebar-actions a span::after,
.apartment-social-row a span::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--navy);
}
.apartment-titlebar-actions a:hover span,
.apartment-social-row a:hover span,
.apartment-titlebar-actions a:focus-visible span,
.apartment-social-row a:focus-visible span {
  opacity: 1;
  transform: translate(-50%, 0);
}
.apartment-detail-copy,
.apartment-booking-panel,
.apartment-amenities-grid article,
.apartment-map-box,
.apartment-gallery-mosaic a {
  border-radius: var(--radius);
}
.apartment-detail-copy { padding: clamp(24px, 3vw, 34px); }
.apartment-description p { font-size: 16px; line-height: 1.72; }
.apartment-amenities-grid article { min-height: 188px; }
.apartment-amenities-grid h3 { font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.apartment-amenities-grid p { font-size: 14px; line-height: 1.58; }

@media (max-width: 1080px) {
  .header-inner { min-height: 70px; }
  .apartment-titlebar { align-items: flex-start; }
  .apartment-titlebar-actions { margin-top: 4px; }
}
@media (max-width: 760px) {
  .section { padding-top: 68px; padding-bottom: 68px; }
  .brand { font-size: 21px; }
  h2,
  .section-heading h2,
  .about-copy h2,
  .tickets-copy h2,
  .cancel-grid h2,
  .comfort-copy h2,
  .blog-top h2,
  .page-section h2,
  .apartment-detail-copy h2,
  .apartment-map-wrap h2,
  .apartment-amenities-section h2 { font-size: 34px !important; }
  .page-hero h1,
  .page-title,
  .archive-title,
  .search-title { font-size: 40px !important; }
  p, li, .typography p, .post-content p, .page-content p { font-size: 15px; }
  .apartment-titlebar h1 { font-size: 40px !important; }
  .apartment-titlebar { gap: 18px; margin-bottom: 22px; }
  .apartment-titlebar-actions a,
  .apartment-social-row a { width: 42px; height: 42px; }
  .apartment-titlebar-actions a span,
  .apartment-social-row a span { display: none; }
  .apartment-gallery-mosaic a { min-width: 84%; }
  .apartment-detail-section { padding-top: 44px; }
  .apartment-detail-copy { padding: 22px; }
  .apartment-amenities-grid { gap: 12px; }
  .news-card h3,
  .blog-grid .news-card h3,
  .post-list-grid .news-card h3 { font-size: 24px !important; }
  .news-card > div { padding: 22px !important; }
}


/* === v1.1.2 full-site typography consistency patch === */
:root { --container: 1180px; }
html body,
html body button,
html body input,
html body textarea,
html body select {
  font-family: 'Poppins', sans-serif;
}

/* Header must be identical on every template */
.site-header,
body .site-header,
body .site-header.is-scrolled {
  background: var(--navy) !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
  box-shadow: 0 10px 32px rgba(7,18,45,.14) !important;
}
.site-header .container.header-inner {
  width: min(var(--container), calc(100% - 40px));
  min-height: 76px !important;
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-header .brand,
.offcanvas .brand,
.footer-brand .brand {
  font-size: 23px !important;
  line-height: 1 !important;
  letter-spacing: -.052em !important;
  font-weight: 800 !important;
}
.site-header .brand strong,
.offcanvas .brand strong,
.footer-brand .brand strong {
  font-weight: 800 !important;
}
.site-header .brand span,
.offcanvas .brand span,
.footer-brand .brand span {
  font-weight: 300 !important;
  color: var(--orange) !important;
}
.site-header .desktop-nav,
.site-header .desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 28px !important;
  margin-left: auto;
}
.site-header .desktop-nav a,
.site-header .desktop-nav .menu-item > a,
.desktop-nav a {
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: .09em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.82) !important;
}
.site-header .desktop-nav a:hover,
.site-header .desktop-nav .current-menu-item > a,
.site-header .desktop-nav .current_page_item > a {
  color: #fff !important;
}
.site-header .header-cta {
  min-height: 42px !important;
  padding: 0 16px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: .07em !important;
}
.site-header .header-cta svg,
.site-header .header-cta i {
  width: 17px !important;
  height: 17px !important;
}

/* Same type rhythm across home and inner templates */
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: 'Poppins', sans-serif !important;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -.045em;
}
body p,
body li,
body .typography,
body .post-article-body,
body .apartment-description {
  font-family: 'Poppins', sans-serif !important;
}

/* 4N page must follow home hero sizing, not oversized page-hero sizing */
.apartment-gallery-hero-section {
  padding-top: 84px !important;
  padding-bottom: 42px !important;
}
.apartment-titlebar {
  align-items: flex-end !important;
  margin-bottom: 28px !important;
  gap: 28px !important;
}
.apartment-titlebar h1 {
  max-width: 760px !important;
  font-size: clamp(34px, 4.1vw, 54px) !important;
  line-height: .98 !important;
  letter-spacing: -.052em !important;
  font-weight: 800 !important;
  margin: 0 !important;
}
.apartment-titlebar p {
  max-width: 650px !important;
  margin: 16px 0 0 !important;
  color: var(--muted) !important;
  font-size: 16px !important;
  line-height: 1.62 !important;
  font-weight: 400 !important;
}
.apartment-acf-template .section-kicker,
.apartment-gallery-hero-section .section-kicker {
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .16em !important;
}
.apartment-detail-copy h2,
.apartment-map-wrap h2,
.apartment-amenities-section h2,
.apartment-showcase-copy h2 {
  font-size: clamp(30px, 3.6vw, 48px) !important;
  line-height: 1.06 !important;
  letter-spacing: -.042em !important;
  font-weight: 800 !important;
}
.apartment-amenities-grid h3,
.apartment-booking-panel h3,
.apartment-detail-copy h3 {
  font-weight: 800 !important;
  letter-spacing: -.025em !important;
}

/* 4N social icons inline only, text on hover */
.apartment-titlebar-actions,
.apartment-social-row {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  flex-wrap: nowrap !important;
}
.apartment-titlebar-actions a,
.apartment-social-row a,
.apartment-social-icon {
  position: relative !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  padding: 0 !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: var(--radius) !important;
  border: 1px solid rgba(7,18,45,.11) !important;
  background: #fff !important;
  color: var(--navy) !important;
  box-shadow: 0 12px 28px rgba(7,18,45,.08) !important;
  overflow: visible !important;
}
.apartment-titlebar-actions a:hover,
.apartment-social-row a:hover,
.apartment-social-icon:hover {
  transform: translateY(-2px) !important;
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: var(--navy) !important;
}
.apartment-titlebar-actions a svg,
.apartment-titlebar-actions a i,
.apartment-social-row a svg,
.apartment-social-row a i,
.apartment-social-icon svg,
.apartment-social-icon i {
  width: 19px !important;
  height: 19px !important;
  color: currentColor !important;
  stroke-width: 1.9 !important;
}
.apartment-social-icon span,
.apartment-titlebar-actions a span,
.apartment-social-row a span {
  position: absolute !important;
  left: 50% !important;
  bottom: calc(100% + 10px) !important;
  transform: translate(-50%, 6px) !important;
  width: max-content !important;
  max-width: 170px !important;
  padding: 8px 10px !important;
  border-radius: var(--radius) !important;
  background: var(--navy) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: .02em !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity .18s ease, transform .18s ease !important;
  z-index: 30 !important;
  box-shadow: 0 12px 30px rgba(7,18,45,.18) !important;
}
.apartment-social-icon span::after,
.apartment-titlebar-actions a span::after,
.apartment-social-row a span::after {
  content: '' !important;
  position: absolute !important;
  left: 50% !important;
  top: 100% !important;
  transform: translateX(-50%) !important;
  border: 5px solid transparent !important;
  border-top-color: var(--navy) !important;
}
.apartment-social-icon:hover span,
.apartment-social-icon:focus-visible span,
.apartment-titlebar-actions a:hover span,
.apartment-titlebar-actions a:focus-visible span,
.apartment-social-row a:hover span,
.apartment-social-row a:focus-visible span {
  opacity: 1 !important;
  transform: translate(-50%, 0) !important;
}

@media (max-width: 1080px) {
  .site-header .desktop-nav { display: none !important; }
  .site-header .container.header-inner { min-height: 70px !important; }
  .apartment-titlebar { align-items: flex-start !important; }
}
@media (max-width: 760px) {
  .site-header .container.header-inner { min-height: 68px !important; width: min(100% - 28px, var(--container)); }
  .site-header .brand { font-size: 21px !important; }
  .apartment-gallery-hero-section { padding-top: 62px !important; }
  .apartment-titlebar h1 { font-size: clamp(34px, 9vw, 40px) !important; line-height: 1.02 !important; }
  .apartment-titlebar p { font-size: 15px !important; }
  .apartment-titlebar-actions a span,
  .apartment-social-row a span,
  .apartment-social-icon span { display: none !important; }
}


/* v1.1.3 - 4N social tooltip hard fix */
.apartment-social-row .apartment-social-icon,
.apartment-titlebar-actions .apartment-social-icon {
  font-size: 0 !important;
  line-height: 0 !important;
}
.apartment-social-row .apartment-social-icon > svg,
.apartment-social-row .apartment-social-icon > i,
.apartment-titlebar-actions .apartment-social-icon > svg,
.apartment-titlebar-actions .apartment-social-icon > i {
  font-size: initial !important;
  line-height: 1 !important;
}
.apartment-social-row .apartment-social-icon > span,
.apartment-titlebar-actions .apartment-social-icon > span {
  display: block !important;
  font-size: 11px !important;
  line-height: 1 !important;
}
@media (max-width: 760px) {
  .apartment-social-row .apartment-social-icon > span,
  .apartment-titlebar-actions .apartment-social-icon > span {
    display: none !important;
  }
}

/* === v1.1.4 final home tightening and mobile polish === */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  --section-y: 88px;
}
.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
@media (max-width: 760px) {
  body { --section-y: 62px; }
  .container { width: min(100% - 28px, var(--container)); }
}

/* keep full-width marquee without 100vw horizontal offset issues */
.fleet-marquee {
  width: 100% !important;
  margin-left: 0 !important;
  margin-top: 26px !important;
  padding-top: 2px !important;
  padding-bottom: 6px !important;
}
.fleet-section {
  padding-top: 78px !important;
  padding-bottom: 78px !important;
}
.fleet-section .section-heading h2 {
  font-size: clamp(30px, 3.2vw, 46px) !important;
}
@media (max-width: 760px) {
  .fleet-section {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }
  .fleet-marquee {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  .fleet-marquee-track {
    animation: none !important;
    width: max-content;
  }
  .fleet-clone { display: none !important; }
  .fleet-marquee .fleet-item { scroll-snap-align: start; }
}

/* lines section: smaller one-line heading and pill days */
.lines-copy h2,
.lines-section h2 {
  font-size: clamp(30px, 3.4vw, 46px) !important;
  line-height: 1.04 !important;
  max-width: 760px;
}
.line-board-head strong {
  font-size: 16px !important;
}
.route-plain {
  gap: 10px;
  flex-wrap: nowrap !important;
}
.route-plain span {
  font-size: 18px;
  white-space: nowrap;
}
.route-plain svg {
  color: var(--orange);
  width: 17px;
  height: 17px;
  stroke-width: 2;
}
.line-schedule {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 10px;
}
.line-schedule-label {
  color: #4a5263;
  font-size: 15px;
  font-weight: 500;
}
.line-day-pills {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 7px;
}
.line-day-pills b {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(247,147,30,.12);
  border: 1px solid rgba(247,147,30,.25);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}
.lines-media,
.line-slider {
  touch-action: pan-y;
}
@media (max-width: 760px) {
  .lines-copy h2,
  .lines-section h2 {
    font-size: 30px !important;
  }
  .route-plain span { font-size: 17px; }
  .line-row { padding: 20px 18px !important; }
  .line-schedule { align-items: flex-start; flex-direction: column; }
  .line-day-pills b { font-size: 12px; min-height: 28px; }
}

/* about section: smaller title + experience badge */
.about-copy h2 {
  font-size: clamp(30px, 3.4vw, 46px) !important;
  line-height: 1.08 !important;
}
.about-media {
  overflow: hidden;
}
.about-years-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(7,18,45,.82);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  animation: naistursBadgeFloat 5.8s ease-in-out infinite;
}
.about-years-badge::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px dashed rgba(247,147,30,.72);
  animation: naistursBadgeSpin 18s linear infinite;
}
.about-years-badge strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  color: var(--orange);
  font-weight: 900;
}
.about-years-badge span {
  display: block;
  max-width: 80px;
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
@keyframes naistursBadgeSpin { to { transform: rotate(360deg); } }
@keyframes naistursBadgeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@media (max-width: 760px) {
  .about-copy h2 { font-size: 30px !important; }
  .about-years-badge { width: 96px; height: 96px; top: 18px; right: 18px; }
  .about-years-badge strong { font-size: 24px; }
  .about-years-badge span { font-size: 9px; }
}

/* tickets, discounts and cancellation tightening */
.tickets-copy h2 {
  font-size: clamp(30px, 3.2vw, 44px) !important;
  line-height: 1.08 !important;
  max-width: 720px;
}
.discount-grid {
  gap: 12px !important;
}
.discount-grid article {
  padding: 22px !important;
}
.discount-grid svg,
.discount-grid i {
  margin-bottom: 14px !important;
}
.discount-grid h3 {
  margin-bottom: 7px !important;
  font-size: 18px !important;
}
.cancel-copy h2,
.cancel-section h2 {
  font-size: clamp(30px, 3.3vw, 44px) !important;
  line-height: 1.08 !important;
}
.cancel-card h3 {
  font-size: 22px !important;
  line-height: 1.18 !important;
}
.cancel-card p {
  font-size: 14px !important;
  line-height: 1.58 !important;
}
.cancel-card {
  padding: 18px 20px !important;
}
@media (max-width: 760px) {
  .tickets-copy h2,
  .cancel-copy h2,
  .cancel-section h2 { font-size: 30px !important; }
  .discount-grid { gap: 10px !important; }
  .discount-grid article { padding: 20px !important; }
  .cancel-card { gap: 12px !important; }
}

/* comfort smaller title/text and shorter section */
.comfort-section {
  padding-top: 92px !important;
  padding-bottom: 92px !important;
}
.comfort-copy h2 {
  font-size: clamp(32px, 4.2vw, 58px) !important;
  line-height: 1.05 !important;
  max-width: 980px !important;
}
.comfort-copy p {
  font-size: 15px !important;
  max-width: 860px !important;
}
.comfort-scroll article {
  min-height: 198px !important;
}
.comfort-scroll svg,
.comfort-scroll i {
  margin-bottom: 26px !important;
}
@media (max-width: 760px) {
  .comfort-section { padding-top: 68px !important; padding-bottom: 68px !important; }
  .comfort-copy h2 { font-size: 32px !important; }
  .comfort-scroll { gap: 10px !important; margin-right: -14px !important; }
  .comfort-scroll article { min-width: 250px !important; min-height: 184px !important; padding: 20px !important; }
}

/* home apartment promo: smaller title, 3-image slider, visible mobile CTA */
.apartment-teaser {
  padding-top: 82px !important;
  padding-bottom: 82px !important;
}
.apartment-copy h2 {
  font-size: clamp(30px, 3.5vw, 46px) !important;
  line-height: 1.08 !important;
  max-width: 620px !important;
}
.apartment-copy p {
  font-size: 15px !important;
  line-height: 1.66 !important;
}
.apartment-cta {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.apartment-photo-slider { touch-action: pan-y; }
@media (max-width: 760px) {
  .apartment-teaser { padding-top: 58px !important; padding-bottom: 58px !important; }
  .apartment-teaser-card { padding: 22px !important; }
  .apartment-copy h2 { font-size: 30px !important; }
  .apartment-features-mini { gap: 8px !important; margin-top: 18px !important; }
  .apartment-cta { width: 100% !important; justify-content: center !important; min-height: 48px !important; margin-top: 18px !important; }
  .apartment-photo-slider { min-height: 280px !important; }
}

/* contact form cleanup */
.naisturs-contact-form .smtp-note {
  display: none !important;
}

/* stronger guard against accidental horizontal page shift */
.site-header,
.site-main,
main,
.site-footer {
  max-width: 100%;
}


/* === V1.1.5 final typography and lines polish === */
@media (min-width: 981px) {
  .lines-section .lines-copy h2 {
    font-size: clamp(30px, 3vw, 40px) !important;
    line-height: 1.04 !important;
    white-space: nowrap;
    max-width: none !important;
  }
}
.route-plain .flag-img,
.flag-title .flag-img {
  width: 30px !important;
  height: 20px !important;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(7,18,45,.13);
  margin: 0 2px 0 0;
}
.route-plain {
  gap: 8px !important;
}
.route-plain span {
  font-size: 18px !important;
  font-weight: 800;
}
.line-schedule-label::after {
  content: ':';
}
.line-schedule-label {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #39445c !important;
}
.line-day-pills b {
  font-size: 12px !important;
  padding: 6px 10px !important;
  min-height: 28px !important;
  border-color: rgba(247,147,30,.35) !important;
  background: #fff7ed !important;
}
.about-years-badge {
  width: 106px !important;
  height: 106px !important;
  top: 18px !important;
  right: 18px !important;
  background: linear-gradient(135deg, rgba(7,18,45,.94), rgba(21,42,92,.92)) !important;
  border: 1px solid rgba(255,255,255,.24) !important;
  box-shadow: 0 20px 45px rgba(7,18,45,.28) !important;
}
.about-years-badge::before {
  inset: -5px !important;
  border-color: rgba(247,147,30,.48) !important;
}
.about-years-badge strong {
  font-size: 26px !important;
  font-weight: 900 !important;
  color: #fff !important;
}
.about-years-badge span {
  max-width: 72px !important;
  font-size: 9px !important;
  letter-spacing: .06em !important;
  color: rgba(255,255,255,.78) !important;
}
.blog-section .blog-top h2,
.blog-top h2,
.blog-top-centered h2 {
  font-size: clamp(34px, 4.4vw, 58px) !important;
  line-height: 1.03 !important;
  letter-spacing: -.055em !important;
}
.blog-grid .news-card h3,
.news-card h3,
.news-card h3 a {
  font-size: clamp(22px, 2.1vw, 30px) !important;
  line-height: 1.12 !important;
  letter-spacing: -.035em !important;
  font-weight: 800 !important;
  margin: 12px 0 12px !important;
}
.news-card > div {
  padding: 24px 24px 26px !important;
}
.news-card p {
  font-size: 15px !important;
  line-height: 1.65 !important;
}
.single-hero h1,
.page-hero.single-hero h1 {
  font-size: clamp(34px, 4.8vw, 58px) !important;
  line-height: 1.06 !important;
  letter-spacing: -.055em !important;
}
.post-article-body {
  padding: 16px clamp(22px, 3.4vw, 36px) 34px !important;
}
.post-article-body h1 {
  font-size: clamp(30px, 4vw, 48px) !important;
  line-height: 1.08 !important;
}
.post-article-body h2 {
  font-size: clamp(26px, 3.2vw, 38px) !important;
  line-height: 1.12 !important;
  margin-top: 1.15em !important;
}
.post-article-body h3 {
  font-size: clamp(22px, 2.5vw, 30px) !important;
  line-height: 1.15 !important;
}
.post-article-body h4 { font-size: 22px !important; }
.post-article-body h5 { font-size: 18px !important; }
.post-article-body p,
.post-article-body li {
  font-size: 16px !important;
  line-height: 1.72 !important;
}
.post-article-body blockquote p { font-size: 17px !important; }
.single-sidebar-clean {
  position: sticky !important;
  top: 118px !important;
  align-self: start !important;
}
.sidebar-box-clean h3 {
  font-size: 20px !important;
}
.sidebar-news-content strong {
  font-size: 14px !important;
  line-height: 1.3 !important;
  font-weight: 800 !important;
}
.sidebar-news-item {
  grid-template-columns: 78px 1fr !important;
  gap: 12px !important;
}
.sidebar-news-thumb {
  width: 78px !important;
  height: 64px !important;
}
.sidebar-links-clean {
  position: sticky;
  top: 118px;
}
@media (max-width: 980px) {
  .single-sidebar-clean,
  .sidebar-links-clean { position: static !important; }
}
@media (max-width: 760px) {
  .lines-section .lines-copy h2 {
    white-space: normal;
    font-size: 30px !important;
  }
  .route-plain .flag-img,
  .flag-title .flag-img {
    width: 27px !important;
    height: 18px !important;
  }
  .route-plain span { font-size: 16px !important; }
  .about-years-badge {
    width: 88px !important;
    height: 88px !important;
  }
  .about-years-badge strong { font-size: 22px !important; }
  .about-years-badge span { font-size: 8px !important; max-width: 62px !important; }
  .blog-section .blog-top h2,
  .blog-top h2,
  .blog-top-centered h2 {
    font-size: 34px !important;
  }
  .blog-grid .news-card h3,
  .news-card h3,
  .news-card h3 a {
    font-size: 24px !important;
  }
  .post-article-body h1 { font-size: 32px !important; }
  .post-article-body h2 { font-size: 28px !important; }
  .post-article-body h3 { font-size: 24px !important; }
}
