/* ==========================================================================
   Travel the World — tūrisma aģentūra
   Implementation of the "Travel the World" design-canvas homepage (variant A).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --blue: #0E7BB8;
  --blue-deep: #0A5C8E;
  --blue-bright: #23A6D8;
  --blue-tint: #E4F4FC;
  --blue-pale: #C8E9F8;
  --blue-field: #F3FAFE;
  --yellow: #FFC814;
  --yellow-hover: #FFB300;
  --red: #EE3B24;
  --sand: #FFE7C4;

  /* Ink */
  --ink: #17262F;
  --ink-soft: #2B4453;
  --muted: #46606E;
  --muted-2: #5C7280;
  --grey: #8FA3AE;
  --grey-2: #8395A6;

  /* Surfaces */
  --cream: #FFFBF2;
  --white: #fff;

  /* Lines */
  --line-blue: #CDE6F3;
  --line-blue-soft: #D8EAF3;
  --line: #D8E1E8;
  --line-card: #E2EDF2;
  --line-soft: #E6EFF4;
  --line-faint: #EDF1F5;

  /* Shape */
  --r-sm: 8px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 16px;
  --r-2xl: 18px;
  --r-pill: 999px;

  /* Elevation */
  --shadow-card: 0 4px 20px rgba(14, 123, 184, .08);
  --shadow-soft: 0 4px 16px rgba(23, 38, 47, .07);
  --shadow-pop: 0 12px 30px rgba(23, 38, 47, .12);
  --shadow-float: 0 12px 32px rgba(23, 38, 47, .1), 0 1px 0 rgba(23, 38, 47, .04);
  --shadow-hero: 0 16px 44px rgba(10, 92, 142, .14);

  /* Layout */
  --page: 1200px;
  --page-narrow: 1120px;
  --gutter: 32px;
  --nav-h: 74px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-deep); }

button { font-family: inherit; }

h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

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

::selection { background: var(--blue-pale); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-thumb { background: #B9DDF0; border-radius: 8px; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 100;
  background: var(--white);
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-pop);
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* Shared layout helpers ---------------------------------------------------- */
.shell {
  max-width: var(--page);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.shell--narrow { max-width: var(--page-narrow); }

.section { margin-top: 88px; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -1.2px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.section-head--center {
  display: block;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-head__lead {
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-head__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.section-head__icon .icon { width: 26px; height: 26px; }
.section-head__icon--warm { background: var(--sand); color: var(--red); }

.section-head__title {
  font-size: 38px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -1.1px;
}

.section-head__sub {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  margin: 6px 0 0;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
}
.link-arrow .icon { width: 18px; height: 18px; transition: transform .15s ease; }
.link-arrow:hover .icon { transform: translateX(3px); }

.link-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-tint);
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 40px;
  transition: background .15s ease;
}
.link-pill:hover { background: var(--blue-pale); }

/* --------------------------------------------------------------------------
   3. Site navigation
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 20px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* The source logo is a wide lockup with generous internal padding; the design
   crops to the artwork with a fixed viewport + oversized image. */
.nav__logo {
  display: block;
  flex-shrink: 0;
  width: 172px;
  height: 56px;
  overflow: hidden;
  position: relative;
}
.nav__logo img {
  position: absolute;
  width: 226px;
  height: 113px;
  left: -36px;
  top: -28px;
  max-width: none;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  white-space: nowrap;
  flex: 1;
  margin: 0 32px;
}

.nav__link {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.nav__link:hover { color: var(--blue); }
.nav__link[aria-current="page"] { font-weight: 600; color: var(--blue); }

.nav__drop { position: relative; display: flex; align-items: center; }
.nav__drop > .nav__link .icon { width: 14px; height: 14px; margin-left: 5px; stroke-width: 2.4; }

.nav__menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  background: var(--white);
  border: 1px solid var(--line-blue);
  border-radius: var(--r-xl);
  box-shadow: 0 18px 44px rgba(10, 92, 142, .16);
  padding: 8px;
  min-width: 230px;
}
/* Bridges the gap so the pointer can travel from trigger to menu. */
.nav__menu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 16px;
}
.nav__drop:hover .nav__menu,
.nav__drop:focus-within .nav__menu { display: block; }

.nav__menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.nav__menu-item:hover { background: var(--blue-tint); color: var(--blue); }
.nav__menu-item span { font-size: 11px; color: var(--grey-2); font-weight: 400; }

.nav__menu-item--all {
  border-top: 1px solid var(--line-faint);
  margin-top: 4px;
  padding-top: 6px;
  color: var(--blue);
  font-weight: 600;
}
.nav__menu-item--all .icon { width: 15px; height: 15px; }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 11px 18px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s ease;
}
.nav__cta:hover { background: var(--blue-deep); color: var(--white); }
.nav__cta .icon { width: 16px; height: 16px; }

/* Valodu slēdzis — maza segmentēta poga starp navigāciju un tālruni. */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--blue-tint);
  border: 1px solid var(--line-blue);
  border-radius: var(--r-sm);
  padding: 3px;
  flex-shrink: 0;
}
.nav__lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 26px;
  padding: 0 8px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--blue);
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.nav__lang-btn:hover { background: rgba(14, 123, 184, .12); color: var(--blue-deep); }
.nav__lang-btn.is-active { background: var(--blue); color: var(--white); }
.nav__lang-btn.is-active:hover { background: var(--blue-deep); color: var(--white); }

.nav__drawer-lang {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 16px;
  background: var(--blue-tint);
  border: 1px solid var(--line-blue);
  border-radius: var(--r-sm);
  padding: 3px;
  width: fit-content;
}

.nav__burger {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 9px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  cursor: pointer;
}
.nav__burger:hover { background: var(--blue-tint); }
.nav__burger .icon { width: 24px; height: 24px; }
.nav__burger .nav__burger-close { display: none; }
.nav__burger[aria-expanded="true"] .nav__burger-open { display: none; }
.nav__burger[aria-expanded="true"] .nav__burger-close { display: block; }

/* Mobile drawer ------------------------------------------------------------ */
.nav__scrim {
  position: fixed;
  inset: var(--nav-h) 0 0;
  z-index: 49;
  background: rgba(10, 92, 142, .28);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.nav__drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(10, 92, 142, .16);
  padding: 14px 20px 22px;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.nav__scrim[hidden],
.nav__drawer[hidden] { display: none; }

.nav__drawer-link {
  display: block;
  padding: 14px 4px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line-faint);
}
.nav__drawer-link[aria-current="page"] { color: var(--blue); }
.nav__drawer-link:last-of-type { border-bottom: 0; }

.nav__drawer-label {
  padding: 14px 4px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey-2);
}

.nav__drawer-country {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.nav__drawer-country span { font-size: 12px; color: var(--grey-2); font-weight: 400; }

.nav__drawer-all {
  display: block;
  padding: 11px 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  border-bottom: 1px solid var(--line-faint);
}

.nav__drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 14px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 600;
  margin-top: 16px;
}
.nav__drawer-cta:hover { color: var(--white); background: var(--blue-deep); }
.nav__drawer-cta .icon { width: 17px; height: 17px; }

/* Mobile bottom tab bar ---------------------------------------------------- */
.tabbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 48;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
  justify-content: space-around;
}

.tabbar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
  padding: 2px 0;
  color: var(--grey-2);
  font-size: 10px;
  font-weight: 600;
}
.tabbar__item[aria-current="page"] { color: var(--blue); }
.tabbar__item .icon { width: 22px; height: 22px; }

/* --------------------------------------------------------------------------
   4. Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; }

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../../uploads/beach-illustration.jpeg");
  background-size: cover;
  background-position: center 60%;
}

/* Left-weighted scrim keeps the headline legible without flattening the photo. */
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg,
    rgba(8, 38, 60, .84) 0%,
    rgba(8, 38, 60, .70) 26%,
    rgba(8, 38, 60, .50) 45%,
    rgba(8, 38, 60, .34) 56%,
    rgba(8, 38, 60, .12) 68%,
    rgba(8, 38, 60, 0) 80%);
}

.hero__inner {
  position: relative;
  max-width: var(--page);
  margin: 0 auto;
  padding: 132px var(--gutter) 252px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.badge-sun {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 40px;
}
.badge-sun .icon { width: 16px; height: 16px; stroke-width: 2.2; }

.badge-glass {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .32);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 20px;
  border-radius: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__title {
  color: var(--white);
  font-size: 68px;
  font-weight: 700;
  line-height: 1.04;
  margin: 0 0 26px;
  max-width: 620px;
  letter-spacing: -2px;
  text-shadow: 0 2px 26px rgba(8, 38, 60, .5);
}
.hero__title em { color: var(--yellow); font-style: normal; }

.hero__lead {
  color: rgba(255, 255, 255, .94);
  font-size: 19px;
  font-weight: 300;
  max-width: 520px;
  margin: 0 0 34px;
  line-height: 1.6;
  text-shadow: 0 1px 16px rgba(8, 38, 60, .55);
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  max-width: 520px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero__points li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(8, 38, 60, .5);
}
.hero__points .icon {
  width: 17px;
  height: 17px;
  stroke: var(--yellow);
  stroke-width: 2.6;
}

/* --------------------------------------------------------------------------
   5. Search widget
   -------------------------------------------------------------------------- */
.search {
  position: relative;
  max-width: 1000px;
  margin: -150px auto 0;
  padding: 0 var(--gutter);
  z-index: 5;
}

.search__card {
  background: var(--white);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-float);
  padding: 24px;
}

.search__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.field { position: relative; }

.field__trigger {
  width: 100%;
  text-align: left;
  background: var(--blue-field);
  border: 1px solid var(--line-blue);
  border-radius: var(--r-lg);
  padding: 15px 18px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: border-color .15s ease, background .15s ease;
}
.field__trigger:hover,
.field__trigger[aria-expanded="true"] {
  border-color: var(--blue);
  background: var(--blue-tint);
}

.field__label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.field__label .icon { width: 14px; height: 14px; color: var(--blue); }

.field__value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.field__value .icon {
  width: 18px;
  height: 18px;
  color: var(--grey);
  transition: transform .15s ease;
}
.field__trigger[aria-expanded="true"] .field__value .icon { transform: rotate(180deg); }

.field__pop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 30;
  background: var(--white);
  border: 1px solid var(--line-blue);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-pop);
  padding: 7px;
  max-height: 260px;
  overflow: auto;
}
.field__pop[hidden] { display: none; }

.option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 11px 14px;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  background: transparent;
  color: var(--ink);
}
.option:hover { background: var(--blue-tint); }
.option[aria-selected="true"] {
  background: var(--blue-tint);
  color: var(--blue);
  font-weight: 600;
}
.option .icon { width: 16px; height: 16px; color: var(--blue); }

.field__pop--travellers { padding: 12px 16px; }
.travellers__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}
.travellers__row + .travellers__row { border-top: 1px solid var(--line-soft); }
.travellers__row > span:first-child { display: flex; flex-direction: column; gap: 3px; }
.travellers__row small { color: var(--muted); font-size: 12px; }
.travellers__stepper { display: flex; align-items: center; gap: 12px; }
.travellers__step {
  position: relative;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--line-blue);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  font-size: 0;
  line-height: 1;
  cursor: pointer;
}
.travellers__step::before,
.travellers__step::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.travellers__step[data-change="1"]::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.travellers__step:hover { background: var(--blue-tint); }
.travellers__count { min-width: 18px; text-align: center; }

/* Calendar ----------------------------------------------------------------- */
.field__pop--cal {
  right: auto;
  width: 302px;
  z-index: 31;
  padding: 16px;
  max-height: none;
  overflow: visible;
}

.cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cal__nav {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line-blue);
  background: var(--white);
  border-radius: var(--r-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.cal__nav:hover { background: var(--blue-tint); }
.cal__nav:disabled { opacity: .35; cursor: not-allowed; }
.cal__nav:disabled:hover { background: var(--white); }
.cal__nav .icon { width: 18px; height: 18px; }

.cal__month { font-size: 15px; font-weight: 600; }

.cal__weekdays,
.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal__weekdays {
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--grey);
}
.cal__weekdays span { text-align: center; padding: 4px 0; }

.cal__day {
  height: 36px;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  background: transparent;
  color: var(--ink);
}
.cal__day:hover { background: var(--blue-tint); }
.cal__day--pad { pointer-events: none; }
.cal__day--today { font-weight: 600; box-shadow: inset 0 0 0 1px var(--blue); }
.cal__day--on {
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
}
.cal__day--on:hover { background: var(--blue-deep); }

/* Submit ------------------------------------------------------------------- */
.search__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  padding: 17px;
  border: none;
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: background .15s ease;
}
.search__submit:hover { background: var(--yellow-hover); }
.search__submit .icon { width: 20px; height: 20px; }

/* --------------------------------------------------------------------------
   6. Destinations mosaic
   -------------------------------------------------------------------------- */
.destinations { padding-top: 88px; }

.dest-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 16px;
}

.dest {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.dest--tall { grid-row: span 2; }

/* Četri galamērķi — pēdējā karte izstiepjas līdz rindas galam, lai
   nepaliktu tukša šūna, kad kāda kartīte ir izņemta. */
.dest-grid .dest:last-child:nth-child(4) { grid-column: 2 / span 2; }
@media (max-width: 900px) {
  .dest-grid .dest:last-child:nth-child(4) { grid-column: 1 / span 2; }
}

.dest__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}
a.dest:hover .dest__img { transform: scale(1.04); }

/* Scrim lives on its own layer so the zoom doesn't drag the gradient with it. */
.dest__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 92, 142, 0) 48%,
    rgba(10, 92, 142, .28) 68%,
    rgba(10, 92, 142, .8) 100%);
  pointer-events: none;
}

.dest__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  pointer-events: none;
}
.dest--tall .dest__body { padding: 26px; }

.dest__kicker {
  color: rgba(255, 255, 255, .85);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
.dest__name { color: var(--white); font-size: 23px; font-weight: 600; }
.dest--tall .dest__name { font-size: 30px; }
.dest__meta { color: rgba(255, 255, 255, .9); font-size: 13px; }
.dest--tall .dest__meta { font-size: 14px; margin-top: 4px; }

/* Stands in for the unfilled <image-slot> in the source design. */
.dest__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, var(--blue-bright), var(--blue-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
}
.dest__placeholder .icon { width: 46px; height: 46px; stroke-width: 1.4; }

/* --------------------------------------------------------------------------
   7. Offer cards
   -------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 22px;
  align-items: stretch;
}

.offer {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line-card);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.offer:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(14, 123, 184, .16);
}
.offer[data-offer-href] { cursor: pointer; }

.offer__media {
  position: relative;
  height: 180px;
  background-size: cover;
  background-position: center;
}

.offer__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: var(--r-pill);
}
.offer__badge--hot { background: var(--red); }

.offer__fav {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
  cursor: pointer;
}
.offer__fav .icon { width: 17px; height: 17px; }
.offer__fav[aria-pressed="true"] .icon { fill: var(--red); stroke: var(--red); }

.offer__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offer__rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.offer__stars { color: var(--ink); font-size: 14px; letter-spacing: 1px; }
.offer__score {
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}

.offer__name {
  display: -webkit-box;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px;
  min-height: 2.4em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.offer__name--link {
  display: -webkit-box;
  color: var(--ink);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.offer__name--link:hover { color: var(--blue); }
.offer__place { font-size: 13px; color: var(--muted); margin-bottom: 12px; min-height: 1.2em; }
.offer__terms {
  font-size: 13px;
  color: var(--muted);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}

.offer__foot {
  margin-top: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.offer__from { font-size: 12px; color: var(--muted); }
.offer__price {
  font-size: 26px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
}
.offer__operator { font-size: 12px; color: var(--grey); }

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.contact-consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--blue); flex: 0 0 auto; }

/* --------------------------------------------------------------------------
   8. Why us
   -------------------------------------------------------------------------- */
.why {
  background: var(--blue-tint);
  margin-top: 88px;
}
.why__inner { padding-block: 80px; }

.why__card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px 26px;
  box-shadow: 0 4px 20px rgba(14, 123, 184, .06);
}
.why__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}
.why__icon .icon { width: 26px; height: 26px; }
.why__card h3 { font-size: 18px; font-weight: 600; margin: 0 0 9px; }
.why__card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   9. Featured banner
   -------------------------------------------------------------------------- */
.banner {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.banner__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(10, 92, 142, .88), rgba(10, 92, 142, .35)),
    url("../../uploads/Tui Magic Life Jacaranda_326881056_1440x810.jpg");
  background-size: cover;
  background-position: center;
}
.banner__body {
  position: relative;
  padding: 56px 60px;
  max-width: 600px;
}
.banner__kicker {
  color: rgba(255, 255, 255, .85);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.banner__title {
  color: var(--white);
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 14px;
  line-height: 1.12;
}
.banner__text {
  color: rgba(255, 255, 255, .9);
  font-size: 16px;
  font-weight: 300;
  margin: 0 0 28px;
  line-height: 1.55;
}

.btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: var(--r-md);
  transition: background .15s ease;
}
.btn-yellow:hover { background: var(--yellow-hover); color: var(--ink); }
.btn-yellow .icon { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   10. Process steps
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 34px 28px;
  box-shadow: 0 4px 20px rgba(14, 123, 184, .06);
}
.step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 18px;
}
.step h3 { font-size: 18px; font-weight: 600; margin: 0 0 8px; }
.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   11. About
   -------------------------------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.about > * { min-width: 0; }
.about__title {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 22px;
  letter-spacing: -1.2px;
  line-height: 1.1;
}
.about p {
  font-size: 17px;
  color: var(--muted-2);
  line-height: 1.75;
  margin: 0 0 18px;
  font-weight: 300;
  max-width: 520px;
}
.about p:last-child { margin-bottom: 0; }
.about__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  background-image: url("../../uploads/WhatsApp Image 2026-07-27 at 10.48.32-a04af2fb.jpeg");
  background-size: cover;
  background-position: center;
}

/* --------------------------------------------------------------------------
   12. Reviews
   -------------------------------------------------------------------------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 30px 28px;
  box-shadow: 0 4px 20px rgba(14, 123, 184, .06);
  border: 1px solid var(--line-card);
}
.review__stars { color: var(--yellow-hover); font-size: 15px; margin-bottom: 14px; }
.review__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.review__who { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review__name { font-weight: 600; font-size: 14px; }
.review__trip { font-size: 12px; color: var(--muted); }

/* --------------------------------------------------------------------------
   13. Blog
   -------------------------------------------------------------------------- */
[data-blog-filter] { margin-bottom: 28px; }
[data-blog-list] { padding-top: 0.625rem; }
.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post {
  display: block;
  min-width: 0;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(23, 38, 47, .07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.post:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(23, 38, 47, .12);
}
.post__media { height: 210px; background-size: cover; background-position: center; }
.post__body { padding: 24px 24px 28px; }
.post__meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.post__title {
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 12px;
  letter-spacing: -.4px;
}
.post__excerpt {
  font-size: 15px;
  color: var(--muted-2);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   14. Closing CTA
   -------------------------------------------------------------------------- */
.cta {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
  border-radius: var(--r-lg);
  padding: 60px 56px;
  text-align: center;
  color: var(--white);
}
.cta h2 { font-size: 34px; font-weight: 600; margin: 0 0 12px; }
.cta p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, .9);
  margin: 0 0 30px;
}

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, .75);
}
.footer a { color: rgba(255, 255, 255, .75); }
.footer a:hover { color: var(--white); }

.footer__grid {
  max-width: var(--page);
  margin: 0 auto;
  padding: 56px var(--gutter) 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer__logo {
  display: block;
  width: 186px;
  height: 60px;
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
}
.footer__logo img {
  position: absolute;
  width: 244px;
  height: 122px;
  left: -38px;
  top: -30px;
  max-width: none;
  filter: brightness(0) invert(1);
}

.footer__blurb {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
  max-width: 280px;
}

.footer__title {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__bar-wrap { border-top: 1px solid rgba(255, 255, 255, .14); }
.footer__bar {
  max-width: var(--page);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer__legal { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer__legal a { color: rgba(255, 255, 255, .85); }

/* --------------------------------------------------------------------------
   16. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1000px) {
  .nav__links,
  .nav__cta,
  .nav__lang { display: none; }
  .nav__burger { display: flex; }
}

@media (max-width: 900px) {
  .hero__inner { padding: 96px var(--gutter) 220px; }
  .hero__title { font-size: 54px; letter-spacing: -1.4px; }

  .search__grid { grid-template-columns: repeat(2, 1fr); }

  .dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 230px 230px 230px;
  }
  .dest--tall { grid-row: span 1; grid-column: span 2; }

  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .posts { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }

  .about { grid-template-columns: 1fr; gap: 40px; }
  .about p { max-width: none; }

  .banner__body { padding: 44px 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 40px; }
}

@media (max-width: 720px) {
  :root { --gutter: 22px; }

  .tabbar { display: flex; }
  body { padding-bottom: 66px; }

  .hero__inner { padding: 72px var(--gutter) 200px; }
  .hero__title { font-size: clamp(32px, 9vw, 44px); letter-spacing: -1px; }
  .hero__lead { font-size: 17px; }

  /* The desktop scrim fades out to the right of the copy; at this width the
     copy spans the full column, so darken vertically instead. */
  .hero__scrim {
    background: linear-gradient(180deg,
      rgba(8, 38, 60, .80) 0%,
      rgba(8, 38, 60, .68) 60%,
      rgba(8, 38, 60, .34) 100%);
  }

  .search { margin-top: -140px; }
  .search__card { padding: 16px; }
  .search__grid { grid-template-columns: 1fr; gap: 10px; }
  /* A single-column popover has room to sit flush with its trigger. */
  .field__pop--cal { width: 100%; }

  .section { margin-top: 64px; }
  .destinations { padding-top: 64px; }
  .why { margin-top: 64px; }
  .why__inner { padding-block: 56px; }

  .section-title,
  .about__title { font-size: clamp(26px, 7vw, 32px); }
  .section-head__title { font-size: clamp(25px, 6.5vw, 30px); }
  .section-head__icon { display: none; }

  .dest-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: 200px;
  }
  .dest--tall { grid-column: span 1; grid-auto-rows: 260px; }
  .dest-grid .dest:last-child:nth-child(4) { grid-column: auto; }

  .card-grid,
  .posts,
  .steps { grid-template-columns: 1fr; }

  .banner__body { padding: 36px 26px; }
  .banner__title { font-size: 28px; }

  .cta { padding: 44px 26px; }
  .cta h2 { font-size: 27px; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { justify-content: flex-start; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ==========================================================================
   17. Iekšējās lapas
   ========================================================================== */

.shell--tight { max-width: 820px; }

/* Lapas galva ------------------------------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
  color: var(--white);
  padding: 64px 0 72px;
}
.page-hero--tall { padding-bottom: 112px; }
.page-hero__title { font-size: 46px; font-weight: 600; margin: 0 0 12px; letter-spacing: -.5px; }
.page-hero__title--big { font-size: 48px; font-weight: 700; letter-spacing: -1.4px; line-height: 1.06; }
.page-hero__lead {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, .9);
  margin: 0;
  max-width: 620px;
  line-height: 1.55;
}

.crumbs { font-size: 13px; color: rgba(255, 255, 255, .75); margin-bottom: 14px; }
.crumbs a { color: rgba(255, 255, 255, .75); }
.crumbs a:hover { color: var(--white); }

/* Galamērķu rindas -------------------------------------------------------- */
.dest-rows {
  padding-block: 80px 40px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.dest-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.dest-row--flip .dest-row__media { order: 2; }
.dest-row--flip .dest-row__body { order: 1; }

.dest-row__media {
  border-radius: 18px;
  height: 360px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 40px rgba(14, 123, 184, .14);
}
.dest-row__media--empty {
  background: linear-gradient(150deg, var(--blue-bright), var(--blue-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
}
.dest-row__media--empty .icon { width: 46px; height: 46px; stroke-width: 1.4; }

.dest-row__title { font-size: 34px; font-weight: 600; margin: 0 0 16px; letter-spacing: -.3px; }
.dest-row__text {
  font-size: 16px;
  color: var(--muted-2);
  line-height: 1.7;
  margin: 0 0 16px;
  font-weight: 300;
}

.tags { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0 26px; }
.tag {
  font-size: 13px;
  background: var(--blue-tint);
  color: var(--blue);
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--r-sm);
}
.tag--blue { background: var(--blue-tint); color: var(--blue); font-weight: 600; font-size: 12px; padding: 5px 11px; }
.tag--grey { background: #F2F5F8; color: var(--muted-2); font-weight: 600; font-size: 12px; padding: 5px 11px; }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  color: var(--blue);
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: var(--r-md);
  white-space: nowrap;
}
.btn-white:hover { background: var(--blue-tint); color: var(--blue-deep); }

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: var(--r-md);
  white-space: nowrap;
}
.btn-blue:hover { background: var(--blue-deep); color: var(--white); }

.cta--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  text-align: left;
  padding: 52px 56px;
}
.cta--row h2 { margin-bottom: 10px; }
.cta--row p { margin: 0; }

.band-cta {
  background: var(--blue-tint);
  border-radius: var(--r-lg);
  padding: 44px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.band-cta h2 { font-size: 28px; font-weight: 600; margin: 0 0 8px; }
.band-cta p { font-size: 16px; color: var(--muted-2); font-weight: 300; margin: 0; }

/* Par mums ---------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split > * { min-width: 0; }
.split__media {
  border-radius: 18px;
  height: 380px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 40px rgba(14, 123, 184, .14);
}

.band { background: var(--blue-tint); }

.member {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(14, 123, 184, .06);
}
.member__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
  color: var(--white);
  font-weight: 600;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.member__name { font-weight: 600; font-size: 16px; }
.member__role { font-size: 13px; color: var(--muted); margin-top: 4px; }
.member__phone { font-size: 14px; color: var(--blue); margin-top: 8px; }
.member--link { display: block; text-decoration: none; color: inherit; transition: transform .25s ease, box-shadow .25s ease; }
.member--link:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(14, 123, 184, .14); }

/* Komandas kartītes: 3 augšā, 2 apakšā — kartītes platums piespriež 3 rindā. */
.member-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.member-grid .member {
  flex: 0 0 300px;
  max-width: 100%;
}
@media (max-width: 720px) {
  .member-grid .member { flex: 0 0 calc(50% - 11px); }
  .member-grid .member__avatar { width: 52px; height: 52px; font-size: 18px; }
}
@media (max-width: 460px) {
  .member-grid .member { flex: 0 0 100%; }
}

/* FAQ --------------------------------------------------------------------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line-card);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(14, 123, 184, .06);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 21px 24px;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__chevron {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  padding: 7px;
  border-radius: var(--r-md);
  background: var(--blue-tint);
  color: var(--blue);
  transition: transform .2s ease;
}
.faq__item[open] .faq__chevron { transform: rotate(180deg); }
.faq__a {
  padding: 0 24px 21px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-2);
  font-weight: 300;
  max-width: 760px;
}
.faq__foot { margin-top: 26px; font-size: 15px; color: var(--muted-2); }

.faq--boxed {
  background: var(--white);
  border: 1px solid var(--line-blue);
  border-radius: 18px;
  padding: 6px 26px;
  gap: 0;
}
.faq__item--flush {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  border-bottom: 1px solid var(--line-faint);
}
.faq__item--flush:last-child { border-bottom: none; }
.faq__item--flush .faq__q { padding: 20px 0; font-size: 16px; }
.faq__item--flush .faq__a { padding: 0 0 20px; font-size: 14px; }

/* Kontakti ---------------------------------------------------------------- */
.contact-wrap { margin-top: -40px; }
.contact {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--line-card);
  box-shadow: 0 12px 40px rgba(14, 123, 184, .1);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}
.contact__side { background: var(--blue-tint); padding: 52px 46px; }
.contact__form { padding: 52px 46px; }
.contact__title { font-size: 26px; font-weight: 700; margin: 0 0 12px; letter-spacing: -.8px; line-height: 1.15; }
.contact__text { font-size: 15px; color: var(--muted-2); font-weight: 300; line-height: 1.65; margin: 0 0 32px; }
.contact__list { display: flex; flex-direction: column; gap: 18px; }
.contact__row { display: flex; align-items: center; gap: 14px; }
.contact__req { margin-top: 36px; padding-top: 30px; border-top: 1px solid rgba(14, 123, 184, .18); }
.contact__req .contact__text { margin-bottom: 16px; }
.contact__req .footer__list { font-size: 13px; line-height: 1.7; }
.contact__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-lg);
  background: var(--white);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__icon .icon { width: 21px; height: 21px; }
.contact__label { font-size: 12px; color: var(--muted); font-weight: 500; }
.contact__value { font-weight: 600; font-size: 16px; }
.contact__value a { color: var(--ink); }
.contact__value a:hover { color: var(--blue); }

.ffield { display: block; margin-bottom: 16px; }
.ffield__label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.ffield input,
.ffield select,
.ffield textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: #F9FCFE;
  color: var(--ink);
}
.ffield textarea { resize: vertical; }
.ffield input:focus,
.ffield select:focus,
.ffield textarea:focus { outline: 2px solid var(--blue); outline-offset: 1px; }
.ffield__note { font-size: 13px; color: var(--grey); margin: 14px 0 0; }
.contact__form .search__submit { margin-top: 8px; }

.contact__done {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 460px;
  padding-bottom: 80px;
}
.contact__done[hidden] { display: none; }
.contact__done-mark {
  width: 60px;
  height: 60px;
  border-radius: var(--r-xl);
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.contact__done-mark .icon { width: 30px; height: 30px; }
.contact__done h3 { font-size: 26px; font-weight: 700; margin: 0 0 8px; letter-spacing: -.7px; }
.contact__done p { font-size: 16px; color: var(--muted-2); font-weight: 300; margin: 0; line-height: 1.65; }
.apply__hint { margin: 12px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.apply-date-picker { position: relative; }
.apply-date-picker .field__pop { top: calc(100% + 8px); left: 0; z-index: 5; }
.row--dates { grid-template-columns: 1fr 1fr 1fr; }
.travellers-later { display: flex; align-items: flex-start; gap: 10px; margin-top: 18px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.travellers-later input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--blue); flex: 0 0 auto; }
.consent--all { margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--line-soft); color: var(--muted); font-size: 13px; }
.traveller-fields--later .ffield input,
.traveller-fields--later .ffield select {
  background: #EEF2F5;
  color: var(--grey);
  border-color: #E1E7EB;
  cursor: not-allowed;
}

/* Čipi -------------------------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 40px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted-2);
  cursor: pointer;
}
.chip--tab:hover { border-color: var(--blue); color: var(--blue); }
.chip--tab.is-active { background: var(--blue); border-color: var(--blue); color: var(--white); }
.chip--link { box-shadow: 0 1px 3px rgba(10, 92, 142, .08); border-color: transparent; color: var(--ink); }
.chip--link:hover { color: var(--blue); }
.chip--yellow {
  background: var(--yellow);
  color: var(--ink);
  border-color: transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 13px;
}
.chip--glass {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .34);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 13px;
}
.chip--icon { display: inline-flex; align-items: center; gap: 7px; width: max-content; }
.chip--icon .icon { width: 14px; height: 14px; }

/* Blogs ------------------------------------------------------------------- */
.feature {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(23, 38, 47, .08);
}
.feature__media { min-height: 360px; background-size: cover; background-position: center; }
.feature__body {
  padding: 44px 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.feature__tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.feature__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -.8px;
  line-height: 1.2;
  color: var(--ink);
}
.feature__text { font-size: 16px; color: #3E5460; line-height: 1.7; margin: 0 0 24px; }

.posts__empty { text-align: center; color: var(--grey); padding: 40px 0; }

.archive {
  background: var(--blue-tint);
  border-radius: 18px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.archive > * { min-width: 0; }
.archive__news { border-left: 1px solid #C3E1F2; padding-left: 56px; }
.archive__title { font-size: 24px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.6px; }
.archive__text { font-size: 15px; color: #3E5460; line-height: 1.6; margin: 0 0 22px; max-width: 400px; }
.archive__form { display: flex; gap: 10px; flex-wrap: wrap; }
.archive__form input {
  flex: 1;
  min-width: 200px;
  border: 1px solid #C3E1F2;
  border-radius: var(--r-md);
  padding: 15px 18px;
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
}
.archive__form button {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--r-md);
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.archive__form button:hover { background: var(--blue-deep); }
.archive__done { margin: 14px 0 0; font-weight: 600; color: var(--blue-deep); }

/* Raksts ------------------------------------------------------------------ */
.article-hero { position: relative; }
.article-hero__bg { height: 460px; background-size: cover; background-position: center 55%; }
.article-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 38, 60, .5) 0%, rgba(8, 38, 60, .15) 40%, rgba(8, 38, 60, .78) 100%);
}
.article-hero__inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 840px;
  margin: 0 auto;
  padding: 0 var(--gutter) 48px;
}
.article-hero__title {
  color: var(--white);
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: -1.6px;
  line-height: 1.08;
  text-shadow: 0 2px 24px rgba(8, 38, 60, .45);
}
.article-hero__meta { font-size: 14px; color: rgba(255, 255, 255, .85); font-weight: 500; }

.article-layout {
  padding-top: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 72px;
  align-items: start;
}
.article { min-width: 0; max-width: 720px; }
.article__lead { font-size: 21px; line-height: 1.7; color: #2C3E4A; margin: 0 0 32px; }
.article__h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 36px 0 18px;
  letter-spacing: -.8px;
  line-height: 1.2;
  scroll-margin-top: 96px;
}
.article__p { font-size: 17px; line-height: 1.8; color: #3E5460; margin: 0 0 24px; }

/* Juridiskās lapas (privātuma politika, lietošanas noteikumi): nekāds pelēks tonis - viss melns. */
.legal-content,
.legal-content .article__p,
.legal-content .article__list,
.legal-content .article__list strong,
.legal-content em {
  color: #000;
}
.article__quote {
  border-left: 3px solid var(--yellow);
  padding: 4px 0 4px 24px;
  margin: 0 0 36px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.6;
}
.article__list { margin: 0 0 32px; padding-left: 22px; color: var(--muted-2); font-size: 17px; line-height: 1.9; font-weight: 300; }
.article__list li { margin-bottom: 8px; }
.article__list strong { color: var(--ink); font-weight: 600; }

.article__table-wrap { overflow-x: auto; margin: 0 0 36px; }
.article__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  font-size: 16px;
  color: #2C3E4A;
}
.article__table th {
  background: var(--blue-tint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-deep);
  padding: 14px 18px;
  text-align: left;
}
.article__table td { padding: 15px 18px; border-top: 1px solid var(--line-soft); }
.article__table td:first-child { font-weight: 600; }

.article__figure { margin: 0 0 36px; }
.article__image { height: 380px; border-radius: var(--r-xl); background-size: cover; background-position: center; }
.article__figure figcaption { font-size: 14px; color: var(--muted-2); margin-top: 14px; }

.article__share {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.article__share-label { font-size: 14px; font-weight: 600; color: var(--muted); }
.article__share-links { display: flex; gap: 10px; }
.article__share-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: var(--white);
}
.article__share-links a:hover { border-color: var(--blue); color: var(--blue); }

.article-aside { min-width: 0; position: sticky; top: 96px; }
.toc { background: var(--blue-tint); border-radius: var(--r-xl); padding: 26px; }
.toc__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.toc__links { display: flex; flex-direction: column; gap: 12px; }
.toc__links a { font-size: 15px; font-weight: 500; color: var(--ink); }
.toc__links a:hover { color: var(--blue); }

.aside-card {
  background: var(--white);
  border: 1px solid var(--line-blue);
  border-radius: var(--r-xl);
  padding: 26px;
  margin-top: 18px;
}
.aside-card__title { font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.4px; line-height: 1.3; }
.aside-card__text { font-size: 14px; color: #3E5460; line-height: 1.6; margin: 0 0 18px; }
.aside-card__btn {
  display: block;
  text-align: center;
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 14px;
  border-radius: var(--r-md);
}
.aside-card__btn:hover { background: var(--blue-deep); color: var(--white); }

.article-related { border-top: 2px solid var(--line-blue); padding-top: 48px; }

/* Turcijas lapa ----------------------------------------------------------- */
.dest-hero { position: relative; height: 480px; }
.dest-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.dest-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 32, 58, .82), rgba(9, 32, 58, .15) 55%, rgba(9, 32, 58, .35));
}
.dest-hero__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 44px;
}
.dest-hero__inner .crumbs { margin-bottom: 18px; }
.dest-hero__inner .chip { margin-bottom: 18px; }
.dest-hero__title { color: var(--white); font-size: 54px; font-weight: 600; line-height: 1.03; margin: 0 0 14px; letter-spacing: -.5px; }
.dest-hero__lead { color: rgba(255, 255, 255, .92); font-size: 18px; font-weight: 300; max-width: 560px; margin: 0; line-height: 1.55; }

.facts { background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright)); color: var(--white); }
.facts__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.facts__item { padding: 26px 28px; border-right: 1px solid rgba(255, 255, 255, .14); }
.facts__item:first-child { padding-left: 0; }
.facts__item:last-child { border-right: none; padding-right: 0; }
.facts__label { font-size: 12px; color: rgba(255, 255, 255, .65); margin-bottom: 5px; }
.facts__value { font-size: 18px; font-weight: 600; }

.overview { display: grid; grid-template-columns: 1.4fr 1fr; gap: 44px; margin-bottom: 76px; align-items: start; }
.overview > * { min-width: 0; }

.season {
  background: var(--white);
  border: 1px solid var(--line-blue);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 8px 30px rgba(14, 123, 184, .07);
}
.season__title { font-size: 16px; font-weight: 600; margin-bottom: 20px; }
.season__chart { display: flex; gap: 6px; align-items: flex-end; height: 118px; }
.season__col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 6px; height: 100%; }
.season__bar { width: 100%; border-radius: 5px; background: #B9DDF0; }
.season__bar.is-on { background: var(--blue); }
.season__month { font-size: 10px; color: var(--grey-2); }
.season__month.is-on { color: var(--blue); font-weight: 600; }
.season__legend { display: flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 12px; color: var(--muted-2); }
.season__key { width: 10px; height: 10px; border-radius: 3px; background: #B9DDF0; margin-left: 8px; }
.season__key--on { background: var(--blue); margin-left: 0; }

.resort {
  position: relative;
  height: 210px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(14, 123, 184, .1);
  display: block;
}
.resort--short { height: 170px; }
.resort__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.resort__veil { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9, 32, 58, .78), transparent 58%); }
.resort__body { position: absolute; left: 16px; bottom: 15px; color: var(--white); }
.resort__name { font-size: 18px; font-weight: 600; }
.resort--short .resort__name { font-size: 19px; }
.resort__desc { font-size: 12px; color: rgba(255, 255, 255, .85); font-weight: 300; }

.two-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 76px; }
.two-cards__tint { background: var(--blue-tint); border-radius: 18px; padding: 30px; }
.two-cards__plain { background: var(--white); border: 1px solid var(--line-blue); border-radius: 18px; padding: 30px; }
.two-cards__title { font-size: 21px; font-weight: 600; margin: 0 0 20px; }
.info-list { display: flex; flex-direction: column; gap: 15px; font-size: 14px; color: #33403E; }
.info-list__row { display: flex; gap: 11px; align-items: flex-start; }
.info-list__row .icon { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; margin-top: 1px; }

.mini-offer {
  background: var(--white);
  border: 1px solid var(--line-blue);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(14, 123, 184, .08);
}
.mini-offer__media { height: 180px; background-size: cover; background-position: center; }
.mini-offer__body { padding: 20px; }
.mini-offer__rating { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.mini-offer__stars { color: var(--yellow-hover); font-size: 13px; letter-spacing: 1px; }
.mini-offer__name { font-size: 17px; font-weight: 600; margin-bottom: 5px; }
.mini-offer__meta { font-size: 13px; color: var(--muted-2); font-weight: 300; margin-bottom: 16px; }
.mini-offer__foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--line-faint);
  padding-top: 14px;
}
.mini-offer__price { font-size: 22px; font-weight: 700; color: var(--blue); }
.mini-offer__btn {
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-radius: 9px;
  padding: 10px 16px;
}
.mini-offer__btn:hover { background: var(--blue-deep); color: var(--white); }

.faq-split { display: grid; grid-template-columns: 1fr 1.3fr; gap: 44px; margin-bottom: 76px; }
.faq-split > * { min-width: 0; }

/* Piedāvājumu lapa -------------------------------------------------------- */
.searchbar {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(14, 123, 184, .12);
  border: 1px solid var(--line-card);
  margin-top: -28px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.searchbar__tabs { padding: 20px 24px 18px; }
.searchbar__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--grey-2);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.searchbar__row {
  border-top: 1px solid var(--line-soft);
  padding: 18px 24px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
.searchbar__cell { flex: 1; min-width: 140px; }
/* Formā etiķete ir <span>, tāpēc tai vajag pašai savu rindu. */
label.searchbar__cell { display: block; cursor: pointer; }
label.searchbar__cell .searchbar__label { display: block; }

.searchbar__select {
  width: 100%;
  background: #F5F8FB;
  border: 1px solid var(--line-blue);
  border-radius: 11px;
  padding: 11px 34px 11px 13px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  appearance: none;
  /* Bultiņa kā inline SVG — bez ārējiem failiem. */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%2346606E' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
}
.searchbar__select:hover { border-color: var(--blue); }
.searchbar__select:focus-visible { outline: 2px solid var(--blue); outline-offset: 1px; }

.searchbar__clear {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.searchbar__clear:hover { color: var(--red); }
.searchbar__clear .icon { width: 15px; height: 15px; }

@media (max-width: 720px) {
  .searchbar__cell { min-width: calc(50% - 6px); }
}
.searchbar__value {
  background: #F5F8FB;
  border: 1px solid var(--line-blue);
  border-radius: 11px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}
.searchbar__value .icon { width: 15px; height: 15px; color: var(--blue); }
.searchbar__btn {
  background: var(--blue);
  color: var(--white);
  border: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 11px;
  padding: 13px 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.searchbar__btn:hover { background: var(--blue-deep); color: var(--white); }
.searchbar__btn .icon { width: 16px; height: 16px; }
.searchbar__btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

.results-wrap { padding-block: 32px 48px; }
.results-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.results-count { font-size: 22px; font-weight: 600; margin: 0; }
.results-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted-2);
  background: var(--blue-tint);
  border-radius: var(--r-md);
  padding: 9px 14px;
  margin-bottom: 16px;
}
.results-note .icon { width: 14px; height: 14px; color: var(--blue); }

.results { display: flex; flex-direction: column; gap: 16px; }

.row-offer {
  display: flex;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(14, 123, 184, .06);
  border: 1px solid var(--line-card);
}
.row-offer--gone { opacity: .62; }
.row-offer__media { width: 220px; flex-shrink: 0; position: relative; background-size: cover; background-position: center; }
.row-offer__operator {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(255, 255, 255, .94);
  color: var(--blue);
  border-radius: var(--r-sm);
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 700;
}
.row-offer__body { flex: 1; padding: 20px 24px; min-width: 0; }
.row-offer__stars { color: var(--yellow-hover); font-size: 13px; margin-bottom: 5px; }
.row-offer__name { font-size: 19px; font-weight: 600; margin: 0 0 5px; }
.row-offer__place {
  font-size: 13px;
  color: var(--grey-2);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}
.row-offer__place .icon { width: 13px; height: 13px; }
.row-offer__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 15px; }
.row-offer__depart { font-size: 13px; color: var(--muted-2); display: flex; align-items: center; gap: 6px; }
.row-offer__depart .icon { width: 14px; height: 14px; color: var(--blue); }

.row-offer__side {
  width: 210px;
  flex-shrink: 0;
  border-left: 1px solid var(--line-faint);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.row-offer__badges { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; gap: 6px; }
.row-offer__caption { font-size: 12px; color: var(--grey-2); margin-bottom: 2px; }
.row-offer__price { font-weight: 700; font-size: 27px; line-height: 1; color: var(--blue); }
.row-offer__price--muted { color: #8A9694; }
.row-offer__total { font-size: 12px; color: var(--grey-2); margin-top: 5px; }
.offer__score--muted { background: #8A9694; }

.status {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
}
.status--available { background: #E4F3EC; color: #1B6E56; }
.status--limited { background: #FBF0DD; color: #9A6714; }
.status--updated { background: var(--blue-tint); color: var(--blue); }
.status--confirm { background: #F1EFEA; color: #6B7876; }
.status--unavailable { background: #F6E7E3; color: #B0432A; }

.row-offer__btn {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  border-radius: 11px;
  padding: 12px;
}
.row-offer__btn--solid { background: var(--blue); color: var(--white); }
.row-offer__btn--solid:hover { background: var(--blue-deep); color: var(--white); }
.row-offer__btn--outline { background: var(--white); color: var(--blue); border: 1.5px solid var(--blue); padding: 10.5px; }
.row-offer__btn--outline:hover { background: var(--blue-tint); }
.row-offer__btn--off { background: #ECEFF2; color: #A6B0BA; pointer-events: none; }

/* Filtru sānjosla ---------------------------------------------------------- */
.results-layout {
  display: grid;
  grid-template-columns: 268px 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 34px;
}

.facets { display: grid; gap: 16px; position: sticky; top: 92px; }

.offers-cta { margin: 48px auto 90px; }

.facets__chosen {
  background: var(--blue-field);
  border: 1px solid var(--line-blue);
  border-radius: var(--r-xl);
  padding: 16px 18px;
}
.facets__chosen-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.facets__clear {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}
.facets__clear:hover { text-decoration: underline; }

.chip--chosen {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border-color: var(--line-blue);
  font-size: 13px;
  padding: 7px 12px;
  color: var(--ink);
}
.chip--chosen .icon { width: 13px; height: 13px; color: var(--grey-2); }
.chip--chosen:hover { border-color: var(--red); color: var(--red); }
.chip--chosen:hover .icon { color: var(--red); }

.facet {
  background: #fff;
  border: 1px solid var(--line-card);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.facet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.facet__head::-webkit-details-marker { display: none; }
.facet__head:hover { color: var(--blue); }
.facet__chevron { width: 16px; height: 16px; color: var(--grey-2); transition: transform .18s ease; }
.facet[open] .facet__chevron { transform: rotate(180deg); }

.facet__body { padding: 0 18px 16px; max-height: 300px; overflow-y: auto; }

.facet__row {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: var(--ink);
}
.facet__row:hover .facet__label { color: var(--blue); }

.facet__box {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--line-blue);
  border-radius: 5px;
  display: grid;
  place-items: center;
  background: #fff;
}
.facet__box .icon { width: 13px; height: 13px; color: #fff; opacity: 0; }
.facet__box.is-on { background: var(--blue); border-color: var(--blue); }
.facet__box.is-on .icon { opacity: 1; }

.facet__label { line-height: 1.35; }
.facet__count { font-size: 12px; color: var(--grey-2); font-variant-numeric: tabular-nums; }

.facet__apply {
  width: 100%;
  margin-top: 12px;
  padding: 9px;
  border: 1px solid var(--blue);
  border-radius: var(--r-md);
  background: #fff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.facet__apply:hover { background: var(--blue); color: #fff; }

/* Cenu slīdnis — divi pārklāti diapazoni, bez atkarībām.
   Celiņu zīmē pats konteiners, ievadlauku celiņi ir caurspīdīgi. Malās ir
   atstarpe roktura pusei, citādi tas tiek nogriezts. */
/* Roktura centrs pārvietojas no pusroktura līdz platums-pusroktura, nevis no
   nulles līdz platumam. Tāpēc celiņš ir tieši tik plats — citādi tas izlīstu
   aiz rokturiem galos. */
.range {
  --range-thumb: 18px;
  --range-travel: calc(100% - var(--range-thumb));
  position: relative;
  height: var(--range-thumb);
  margin-top: 10px;
}
/* Pelēkais celiņš — no kreisā roktura centra līdz labā roktura centram */
.range::before {
  content: "";
  position: absolute;
  left: calc(var(--range-thumb) / 2);
  right: calc(var(--range-thumb) / 2);
  top: 50%;
  height: 4px;
  margin-top: -2px;
  border-radius: 2px;
  background: var(--line-blue);
}
/* Zilais izvēlētais posms. JS padod daļas 0–1, tāpēc pozīcija rēķinās tieši
   pēc roktura centra, ne pēc konteinera malas. */
.range::after {
  content: "";
  position: absolute;
  left: calc(var(--range-thumb) / 2 + var(--range-from, 0) * var(--range-travel));
  width: calc((var(--range-to, 1) - var(--range-from, 0)) * var(--range-travel));
  top: 50%;
  height: 4px;
  margin-top: -2px;
  border-radius: 2px;
  background: var(--blue);
}

.range input[type="range"] {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: var(--range-thumb);
  margin: 0;
  padding: 0;
  background: none;
  pointer-events: none;
  appearance: none;
}
.range input[type="range"]::-webkit-slider-runnable-track {
  height: var(--range-thumb);
  background: none;
  border: 0;
}
.range input[type="range"]::-moz-range-track { height: var(--range-thumb); background: none; border: 0; }

.range input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  pointer-events: auto;
  width: var(--range-thumb);
  height: var(--range-thumb);
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
  box-shadow: 0 1px 5px rgba(10, 92, 142, .4);
  cursor: grab;
}
.range input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: var(--range-thumb);
  height: var(--range-thumb);
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
  box-shadow: 0 1px 5px rgba(10, 92, 142, .4);
  cursor: grab;
}
.range input[type="range"]:active::-webkit-slider-thumb { cursor: grabbing; }
.range input[type="range"]:focus-visible::-webkit-slider-thumb { outline: 2px solid var(--blue-deep); outline-offset: 2px; }

.range__values {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 12px;
  font-variant-numeric: tabular-nums;
}

/* Kārtošana rezultātu joslā */
.results-sort { display: flex; align-items: center; gap: 10px; }
.results-sort__label { font-size: 14px; color: var(--muted); white-space: nowrap; }
.results-sort .searchbar__select { width: auto; min-width: 190px; }

@media (max-width: 980px) {
  .results-layout { grid-template-columns: 1fr; }
  .facets { position: static; }
  .facet__body { max-height: none; }
}

/* Lapošana ---------------------------------------------------------------- */
.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.pager__numbers { display: flex; gap: 6px; }
.pager__num, .pager__step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  justify-content: center;
  border: 1px solid var(--line-card);
  border-radius: var(--r-md);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.pager__num:hover, .pager__step:hover { border-color: var(--blue); color: var(--blue); }
.pager__num.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  cursor: default;
}
@media (max-width: 620px) {
  .pager__numbers { order: -1; width: 100%; justify-content: center; }
}

.results-empty {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 56px 40px;
  border: 1px solid var(--line-card);
  box-shadow: 0 4px 20px rgba(14, 123, 184, .05);
  text-align: center;
}
.results-empty__mark {
  width: 72px;
  height: 72px;
  border-radius: var(--r-lg);
  background: var(--blue-tint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}
.results-empty__mark .icon { width: 34px; height: 34px; }
.results-empty h3 { font-size: 22px; font-weight: 600; margin: 0 0 10px; }
.results-empty p { font-size: 15px; color: var(--muted-2); line-height: 1.55; max-width: 420px; margin: 0 auto 24px; }

/* Responsīvi -------------------------------------------------------------- */
@media (max-width: 980px) {
  .article-layout { grid-template-columns: 1fr; gap: 44px; }
  .article-aside { position: static; max-width: 560px; }
}

@media (max-width: 900px) {
  .page-hero { padding: 48px 0 56px; }
  .page-hero__title,
  .page-hero__title--big { font-size: 36px; letter-spacing: -.8px; }

  .dest-row,
  .split,
  .overview,
  .two-cards,
  .faq-split,
  .contact,
  .feature,
  .archive { grid-template-columns: 1fr; }
  .dest-row--flip .dest-row__media,
  .dest-row--flip .dest-row__body { order: 0; }
  .dest-rows { gap: 56px; padding-block: 56px 32px; }
  .dest-row__media, .split__media { height: 280px; }
  .archive__news { border-left: none; padding-left: 0; }
  .contact__side, .contact__form { padding: 36px 28px; }
  .feature__body { padding: 32px 28px 36px; }
  .feature__media { min-height: 240px; }
  .facts__grid { grid-template-columns: repeat(2, 1fr); }
  .facts__item { padding: 20px; border-right: none; }
  .facts__item:first-child, .facts__item:last-child { padding-inline: 20px; }
  .dest-hero { height: 420px; }
  .dest-hero__title { font-size: 38px; }
  .article-hero__title { font-size: clamp(28px, 7vw, 38px); letter-spacing: -1px; }
  .cta--row, .band-cta { padding: 36px 28px; }

  .row-offer { flex-direction: column; }
  .row-offer__media { width: 100%; height: 190px; }
  .row-offer__side { width: 100%; border-left: none; border-top: 1px solid var(--line-faint); }
}

@media (max-width: 620px) {
  .dest-row__title { font-size: 27px; }
  .article__h2 { font-size: 24px; }
  .article__lead { font-size: 18px; }
  .article__p { font-size: 16px; }
  .feature__title { font-size: 25px; }
  .archive { padding: 28px 22px; }
  .article__image { height: 240px; }
}

/* ==========================================================================
   18. Piedāvājuma detaļas un pieteikums
   ========================================================================== */

.crumbs--dark { color: var(--grey-2); margin-bottom: 18px; }
.crumbs--dark a { color: var(--blue); }
.crumbs--dark strong { color: var(--blue); font-weight: 600; }

/* Galerija ---------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
  margin-bottom: 30px;
}
.gallery-grid__main {
  grid-row: 1 / span 2;
  grid-column: 1;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
}
.gallery-grid__operator {
  position: absolute;
  left: 16px;
  top: 16px;
  background: rgba(14, 123, 184, .92);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 9px;
}
.gallery-grid__cell { border-radius: var(--r-lg); overflow: hidden; position: relative; }
.gallery-grid__img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.gallery-grid__empty {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, var(--blue-bright), var(--blue-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .55);
}
.gallery-grid__empty .icon { width: 34px; height: 34px; stroke-width: 1.4; }
.gallery-grid__more {
  position: absolute;
  inset: 0;
  background: rgba(14, 123, 184, .42);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
}

/* Izkārtojums ------------------------------------------------------------- */
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: start;
  padding-bottom: 70px;
}
.detail-main { min-width: 0; display: flex; flex-direction: column; gap: 28px; }
.detail-side { position: sticky; top: 20px; min-width: 0; }

.detail-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: -10px;
}
.detail-stars { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; color: var(--yellow-hover); }
.detail-stars__note { font-size: 13px; color: var(--grey-2); }
.detail-title { font-size: 34px; font-weight: 600; margin: 0 0 8px; letter-spacing: -.5px; }
.detail-place { display: flex; align-items: center; gap: 6px; color: var(--muted-2); font-size: 15px; }
.detail-place .icon { width: 16px; height: 16px; color: var(--blue); }

.rating-box {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--blue-tint);
  border-radius: var(--r-lg);
  padding: 12px 16px;
}
.rating-box__score {
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  padding: 6px 11px;
  border-radius: var(--r-md);
}
.rating-box__word { font-weight: 700; font-size: 14px; }
.rating-box__count { font-size: 12px; color: var(--grey-2); }

.detail-lead { font-size: 16px; line-height: 1.65; color: #33403E; margin: 0; }
.detail-text { font-size: 15px; line-height: 1.7; color: #33403E; margin: 0 0 14px; }
.detail-text:last-child { margin-bottom: 0; }
.detail-h2 { font-size: 26px; font-weight: 600; margin: 0 0 20px; }

/* Ātrie fakti ------------------------------------------------------------- */
.fact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.fact-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 16px;
  border: 1px solid var(--line-card);
}
.fact-card .icon { width: 18px; height: 18px; color: var(--blue); }
.fact-card__label { font-size: 12px; color: var(--grey-2); margin-top: 9px; }
.fact-card__value { font-weight: 600; font-size: 14px; margin-top: 2px; }

/* Paneļi ------------------------------------------------------------------ */
.panel {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  border: 1px solid var(--line-card);
}
.panel--flush { padding: 0; overflow: hidden; }
.panel__title {
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.panel__title .icon { width: 18px; height: 18px; color: var(--blue); }
.panel__foot {
  font-size: 13px;
  color: var(--grey-2);
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}

.flight { display: flex; align-items: center; gap: 20px; margin-bottom: 14px; flex-wrap: wrap; }
.flight__end { text-align: center; }
.flight__code { font-weight: 700; font-size: 20px; }
.flight__meta { font-size: 12px; color: var(--grey-2); }
.flight__line { flex: 1; min-width: 80px; display: flex; align-items: center; gap: 8px; }
.flight__line span { flex: 1; height: 1px; background: var(--line-blue); }
.flight__line .icon { width: 16px; height: 16px; color: var(--blue); }
.flight__note { font-size: 12px; color: var(--grey-2); text-align: right; min-width: 90px; }

/* Cilnes ------------------------------------------------------------------ */
.tabs { border-bottom: 2px solid var(--line-soft); display: flex; gap: 28px; }
.tabs__btn {
  background: none;
  border: none;
  padding: 0 0 14px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--grey-2);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.tabs__btn:hover { color: var(--blue); }
.tabs__btn.is-active { color: var(--blue); border-bottom-color: var(--blue); }

.amenities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.amenities__row { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #33403E; }
.amenities__row .icon { width: 18px; height: 18px; color: var(--blue); }

.rooms { display: flex; flex-direction: column; gap: 12px; }
.room {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line-card);
  border-radius: var(--r-lg);
  padding: 16px 20px;
}
.room__name { font-weight: 600; font-size: 15px; }
.room__meta { font-size: 13px; color: var(--grey-2); }
.room__price { font-weight: 700; color: var(--blue); white-space: nowrap; }

/* Iekļauts / papildu ------------------------------------------------------ */
.two-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.two-lists__in { background: #EAF4EC; border-radius: var(--r-lg); padding: 22px; }
.two-lists__extra { background: var(--white); border: 1px solid var(--line-card); border-radius: var(--r-lg); padding: 22px; }
.two-lists__title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.two-lists__title .icon { width: 18px; height: 18px; color: var(--grey-2); }
.two-lists__title--in { color: #1B6E56; }
.two-lists__title--in .icon { color: #1B6E56; }
.two-lists__body { display: flex; flex-direction: column; gap: 9px; font-size: 14px; color: #33403E; }
.two-lists__body--muted { color: var(--muted-2); }

/* Karte ------------------------------------------------------------------- */
.mapbox {
  height: 220px;
  background: #EEF2F5;
  position: relative;
  background-image: linear-gradient(#DDE5EC 1px, transparent 1px), linear-gradient(90deg, #DDE5EC 1px, transparent 1px);
  background-size: 32px 32px;
}
.mapbox__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.mapbox__pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%) rotate(45deg);
  background: var(--blue);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50% 50% 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(14, 123, 184, .4);
}
.mapbox__pin .icon { width: 16px; height: 16px; transform: rotate(-45deg); }
.mapbox__label {
  position: absolute;
  left: 18px;
  bottom: 14px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 8px 12px;
  font-size: 12px;
  color: var(--muted-2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

/* Paziņojumu bloki -------------------------------------------------------- */
.notice {
  background: var(--white);
  border: 1px solid var(--line-card);
  border-radius: var(--r-lg);
  padding: 22px 24px;
}
.notice--warm { background: #FBF6EC; border-color: #EEE3CB; }
.notice__title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.notice__title .icon { width: 18px; height: 18px; color: var(--blue); }
.notice--warm .notice__title .icon { color: #9A6714; }
.notice p { font-size: 14px; line-height: 1.6; color: var(--muted-2); margin: 0; }

.operator {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line-card);
  border-radius: var(--r-lg);
  padding: 20px 24px;
}
.operator__logo {
  width: 88px;
  height: 44px;
  border: 1.5px solid var(--line-blue);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--blue);
  font-size: 13px;
  flex-shrink: 0;
  text-align: center;
  line-height: 1.1;
}
.operator__title { font-weight: 600; font-size: 15px; }
.operator__note { font-size: 13px; color: var(--grey-2); }

/* Rezervācijas panelis ---------------------------------------------------- */
.booking {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: 0 14px 44px rgba(14, 123, 184, .12);
  border: 1px solid var(--line-card);
  overflow: hidden;
}
.booking__body { padding: 24px; }
.booking__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; gap: 10px; }
.booking__party { font-size: 12px; color: var(--grey-2); }
.status__dot { width: 6px; height: 6px; border-radius: 50%; background: #1B8A6B; margin-right: 6px; }
.booking__price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.booking__from, .booking__per { font-size: 13px; color: var(--grey-2); }
.booking__amount { font-weight: 700; font-size: 40px; color: var(--blue); line-height: 1; }
.booking__total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 22px;
  color: #1F3550;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.booking__cta {
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: var(--r-lg);
  padding: 15px;
  cursor: pointer;
  width: 100%;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.booking__cta:hover { background: var(--blue-deep); color: var(--white); }
.booking__ask {
  background: var(--white);
  color: var(--blue);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid var(--blue);
  border-radius: var(--r-lg);
  padding: 13px;
  width: 100%;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.booking__ask:hover { background: var(--blue-tint); }
.booking__note {
  background: var(--blue-tint);
  padding: 16px 24px;
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.5;
}
.booking__note .icon { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; margin-top: 1px; }

.consultant {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--blue-tint);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  margin-top: 14px;
}
.consultant__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.consultant__label { font-size: 13px; color: var(--muted-2); }
.consultant__phone { font-weight: 700; font-size: 14px; }
.consultant__phone a { color: var(--ink); }
.consultant__phone a:hover { color: var(--blue); }

/* Līdzīgie piedāvājumi ---------------------------------------------------- */
.sim {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(14, 123, 184, .06);
  border: 1px solid var(--line-card);
  display: block;
  color: inherit;
}
.sim:hover { color: inherit; box-shadow: 0 10px 28px rgba(14, 123, 184, .14); }
.sim__media { height: 160px; background-size: cover; background-position: center; }
.sim__body { padding: 16px; }
.sim__top { display: flex; justify-content: space-between; margin-bottom: 6px; }
.sim__stars { color: var(--yellow-hover); font-size: 13px; }
.sim__name { font-weight: 600; font-size: 16px; }
.sim__place { font-size: 13px; color: var(--grey-2); margin-bottom: 10px; }
.sim__foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
}
.sim__price { font-weight: 700; font-size: 20px; color: var(--blue); }
.sim__operator { font-size: 12px; color: var(--grey-2); }

/* Pieteikuma lapa --------------------------------------------------------- */
.apply-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.apply-head__num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.apply-head__title { font-size: 30px; font-weight: 600; margin: 0; letter-spacing: -.5px; }
.apply-head__lead { color: var(--muted-2); font-size: 16px; margin: 0 0 28px 42px; line-height: 1.55; }

.apply-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: start;
}
.apply-main { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.apply-side { position: sticky; top: 20px; min-width: 0; }

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 26px;
  border: 1px solid var(--line-card);
}
.card__title { font-weight: 600; font-size: 18px; margin-bottom: 20px; }
.card__group {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.card__group .icon { width: 15px; height: 15px; }
.card__divider { border-top: 1px solid var(--line-soft); padding-top: 18px; margin-top: 2px; }
.row--child { grid-template-columns: 1fr 1fr 120px; }

.channels { border: none; padding: 0; margin: 0 0 20px; }
.channels legend { padding: 0; margin-bottom: 8px; }
.channel { display: inline-block; margin: 0 10px 10px 0; }
.channel input { position: absolute; opacity: 0; width: 0; height: 0; }
.channel__box {
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 11px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--line-blue);
  background: var(--white);
  color: var(--muted-2);
}
.channel__box .icon { width: 15px; height: 15px; }
.channel input:checked + .channel__box { border-color: var(--blue); background: var(--blue-tint); color: var(--blue); }
.channel input:focus-visible + .channel__box { outline: 3px solid var(--blue); outline-offset: 2px; }

.consents { display: flex; flex-direction: column; gap: 14px; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  color: #33403E;
  line-height: 1.5;
  cursor: pointer;
}
.consent input { width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--blue); flex-shrink: 0; cursor: pointer; }

.summary {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: 0 14px 44px rgba(14, 123, 184, .1);
  border: 1px solid var(--line-card);
  overflow: hidden;
}
.summary__media { height: 130px; background-size: cover; background-position: center; position: relative; }
.summary__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 123, 184, .68), rgba(14, 123, 184, .1));
}
.summary__stars { position: absolute; left: 16px; top: 14px; color: var(--yellow-hover); font-size: 13px; z-index: 1; }
.summary__name { position: absolute; left: 16px; bottom: 14px; color: var(--white); font-weight: 600; font-size: 16px; z-index: 1; }
.summary__body { padding: 22px; }
.summary__title { font-weight: 600; font-size: 15px; margin-bottom: 14px; }
.summary__rows { display: flex; flex-direction: column; gap: 11px; font-size: 14px; }
.summary__row { display: flex; justify-content: space-between; gap: 12px; }
.summary__row span { color: var(--grey-2); }
.summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--line-soft);
  margin-top: 16px;
  padding-top: 16px;
  font-weight: 600;
}
.summary__amount { font-weight: 700; font-size: 24px; color: var(--blue); }

.apply-done { max-width: 620px; margin: 20px auto 40px; text-align: center; }
.apply-done__mark {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #E4F3EC;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1B8A6B;
  margin-bottom: 24px;
}
.apply-done__mark .icon { width: 44px; height: 44px; }
.apply-done__title { font-size: 32px; font-weight: 600; margin: 0 0 14px; letter-spacing: -.5px; }
.apply-done__text { font-size: 16px; line-height: 1.6; color: var(--muted-2); margin: 0 0 28px; }
.apply-done__steps { text-align: left; margin-bottom: 24px; }
.apply-done__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.apply-done__ref { font-size: 13px; color: var(--grey-2); margin-top: 20px; }
.apply-done__ref strong { color: #1F3550; }

.next-step { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.next-step:last-child { margin-bottom: 0; }
.next-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.next-step__title { font-weight: 600; font-size: 14px; }
.next-step__body { font-size: 13px; color: var(--grey-2); }

.btn-outline {
  background: var(--white);
  color: var(--blue);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid var(--blue);
  border-radius: var(--r-lg);
  padding: 13px 24px;
  cursor: pointer;
}
.btn-outline:hover { background: var(--blue-tint); }

@media (max-width: 980px) {
  .detail-layout, .apply-layout { grid-template-columns: 1fr; }
  .detail-side, .apply-side { position: static; }
}

@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 120px; }
  .gallery-grid__main { grid-column: 1 / span 2; grid-row: 1; }
  .fact-cards { grid-template-columns: repeat(2, 1fr); }
  .two-lists, .amenities { grid-template-columns: 1fr; }
  .detail-title { font-size: 27px; }
  .apply-head__title { font-size: 24px; }
  .apply-head__lead { margin-left: 0; }
  .row--child { grid-template-columns: 1fr; }
  .booking__amount { font-size: 34px; }
  .card { padding: 20px; }
}

/* Ja šūnai ir uzraksts („+18 foto”), vietturis paliek tikai kā fons. */
.gallery-grid__cell:has(.gallery-grid__more) .gallery-grid__empty .icon { display: none; }

/* Divas kolonnas formās (kontakti, pieteikums). */
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
@media (max-width: 620px) { .row, .row--child { grid-template-columns: 1fr; } }

/* ==========================================================================
   Sīkdatņu paziņojums
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 24px));
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line-card);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-float);
  padding: 18px 20px;
  z-index: 200;
  animation: cookie-in .35s ease;
}
.cookie-banner[hidden] { display: none; }
@keyframes cookie-in {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
.cookie-banner__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--r-lg);
  background: var(--blue-tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-banner__icon .icon { width: 22px; height: 22px; }
.cookie-banner__text {
  flex: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 400;
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.cookie-banner__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner__link:hover { color: var(--blue-deep); }
.cookie-banner__btn {
  background: var(--blue);
  color: var(--white);
  border: none;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--r-md);
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease;
}
.cookie-banner__btn:hover { background: var(--blue-deep); }
@media (max-width: 720px) {
  .cookie-banner {
    flex-wrap: wrap;
    bottom: 78px;
    padding: 16px 18px;
  }
  .cookie-banner__actions { width: 100%; justify-content: space-between; }
}
