:root {
  --bg: #08131f;
  --bg-soft: #11263a;
  --paper: #f6f1e8;
  --paper-strong: #fffdf8;
  --paper-muted: #ede6da;
  --surface: rgba(11, 23, 37, 0.82);
  --surface-strong: #102238;
  --text: #f4efe4;
  --muted: #c5cfdb;
  --ink: #142130;
  --ink-soft: #55616d;
  --accent: #bb9558;
  --accent-dark: #977241;
  --accent-soft: #dcc291;
  --teal: #72879b;
  --border: rgba(244, 239, 228, 0.12);
  --button-primary-bg: linear-gradient(180deg, #dec699 0%, #ba9358 100%);
  --button-primary-color: #101d2a;
  --button-secondary-bg: transparent;
  --button-secondary-color: #f4efe4;
  --button-secondary-border: rgba(244, 239, 228, 0.22);
  --shadow: 0 24px 60px rgba(2, 10, 18, 0.34);
  --shadow-soft: 0 16px 34px rgba(2, 10, 18, 0.18);
  --navy-strong: #142130;
  --navy-deep: #0d1b2a;
  --admin-muted: #5b6674;
  --admin-soft: #7b8795;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(220, 194, 145, 0.12), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(114, 135, 155, 0.14), transparent 20%),
    linear-gradient(180deg, #08131f 0%, #0d1d2d 30%, #11263b 56%, #102131 100%);
}

main {
  position: relative;
  z-index: 2;
  max-width: min(1320px, calc(100% - 40px));
  margin: -42px auto 0;
  padding: 42px 0 30px;
  border-radius: 42px 42px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(246, 241, 232, 0.98) 100%);
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.08), 0 28px 80px rgba(7, 18, 29, 0.2);
  --text: var(--ink);
  --muted: var(--ink-soft);
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: var(--paper-strong);
  --border: rgba(20, 33, 48, 0.12);
  --shadow: 0 22px 54px rgba(20, 33, 48, 0.08);
  --button-primary-bg: #152438;
  --button-primary-color: #f8f3ec;
  --button-secondary-bg: rgba(255, 255, 255, 0.5);
  --button-secondary-color: var(--ink);
  --button-secondary-border: rgba(20, 33, 48, 0.14);
}

main::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 33, 48, 0.08), transparent);
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  padding: 18px 0 128px;
}

.topbar,
.hero-content,
.section,
.footer {
  max-width: 1180px;
  margin: 0 auto;
}

.topbar,
.hero-content {
  padding-left: clamp(24px, 4vw, 48px);
  padding-right: clamp(24px, 4vw, 48px);
}

.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 60;
  width: min(1280px, calc(100% - 40px));
  max-width: none;
  padding-top: 22px;
  padding-bottom: 22px;
  margin-top: 0;
  margin-bottom: 0;
  background: rgba(250, 247, 240, 0.94);
  color: var(--ink);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(20, 33, 48, 0.08);
  border-radius: 30px;
  box-shadow: 0 18px 46px rgba(9, 22, 34, 0.16);
  transform: translateX(-50%);
}

.top-banner {
  width: 100%;
  max-width: min(1280px, calc(100% - 40px));
  margin: 132px auto 0;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.top-banner img {
  display: block;
  width: 100%;
  min-height: 250px;
  height: auto;
  object-fit: cover;
  border-radius: 32px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition:
    top 260ms ease,
    padding 260ms ease,
    border-radius 260ms ease,
    box-shadow 260ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.topbar.topbar-scrolled {
  top: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 22px;
  background: rgba(250, 247, 240, 0.92);
  box-shadow: 0 14px 34px rgba(9, 22, 34, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: gap 260ms ease;
}

.brand p,
.footer p {
  margin: 0;
  font-weight: 800;
}

.brand span,
.footer span {
  color: var(--muted);
  font-size: 0.92rem;
}

.brand div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand p {
  color: var(--ink);
  font-size: 1.28rem;
  letter-spacing: 0.1em;
  transition: font-size 260ms ease, letter-spacing 260ms ease;
}

.brand span {
  color: rgba(20, 33, 48, 0.62);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: font-size 260ms ease;
}

.brand-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  flex-shrink: 0;
  transition: width 260ms ease, height 260ms ease;
}

.topbar.topbar-scrolled .brand {
  gap: 12px;
}

.topbar.topbar-scrolled .brand-logo {
  width: 64px;
  height: 64px;
}

.topbar.topbar-scrolled .brand p {
  font-size: 1.12rem;
  letter-spacing: 0.08em;
}

.topbar.topbar-scrolled .brand span {
  font-size: 0.84rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  transition: gap 260ms ease;
}

.nav-links > a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  padding: 8px 0;
  transition: font-size 260ms ease;
}

.topbar.topbar-scrolled .nav-links {
  gap: 14px;
}

.topbar.topbar-scrolled .nav-links > a {
  font-size: 0.9rem;
}

.nav-links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(187, 149, 88, 0.72);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links > a:not(.btn):hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(20, 33, 48, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.topbar.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.topbar.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
}

.nav-section-switcher {
  display: inline-flex;
  align-items: center;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger {
  min-width: 78px;
  border: 1px solid rgba(20, 33, 48, 0.12);
  border-radius: 999px;
  padding: 13px 40px 13px 18px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  font: inherit;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease,
    padding 260ms ease,
    font-size 260ms ease;
}

.topbar.topbar-scrolled .nav-dropdown-trigger {
  padding: 11px 36px 11px 16px;
  font-size: 0.88rem;
}

.nav-dropdown-trigger:hover {
  background-color: rgba(255, 255, 255, 0.8);
  border-color: rgba(20, 33, 48, 0.2);
}

.nav-dropdown-trigger:focus-visible,
.nav-dropdown-item:focus-visible {
  outline: 2px solid rgba(241, 154, 100, 0.35);
  outline-offset: 2px;
}

.nav-dropdown.open .nav-dropdown-trigger {
  border-color: rgba(187, 149, 88, 0.4);
  background-color: rgba(255, 255, 255, 0.9);
}

.nav-section-switcher .nav-dropdown-trigger {
  width: 92px;
  min-width: 92px;
  max-width: 92px;
  padding-right: 30px;
  text-overflow: ellipsis;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  border-radius: 24px;
  border: 1px solid rgba(20, 33, 48, 0.1);
  background: rgba(255, 252, 246, 0.98);
  box-shadow: 0 20px 40px rgba(20, 33, 48, 0.12);
  display: none;
  flex-direction: column;
  gap: 4px;
}

.nav-dropdown-menu-right {
  left: auto;
  right: 0;
  min-width: 120px;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-item {
  width: 100%;
  border: 0;
  border-radius: 18px;
  padding: 13px 16px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.nav-dropdown-item:hover {
  background: rgba(20, 33, 48, 0.06);
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-transform: none;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.topbar .btn {
  transition:
    min-height 260ms ease,
    padding 260ms ease,
    font-size 260ms ease,
    border-radius 260ms ease,
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.topbar .btn-outline {
  min-height: 60px;
  padding: 16px 34px;
}

.topbar.topbar-scrolled .btn {
  min-height: 46px;
  padding: 12px 22px;
  font-size: 0.9rem;
}

.topbar.topbar-scrolled .btn-outline {
  min-height: 52px;
  padding: 13px 28px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--button-primary-bg);
  color: var(--button-primary-color);
  border-color: rgba(20, 33, 48, 0.08);
  box-shadow: 0 14px 28px rgba(14, 28, 43, 0.16);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(14, 28, 43, 0.22);
}

.btn-outline,
.btn-ghost {
  border: 1px solid var(--button-secondary-border);
  background: var(--button-secondary-bg);
  color: var(--button-secondary-color);
  box-shadow: none;
}

.topbar .btn-outline {
  background: #152438;
  color: #f8f3ec;
  border-color: #152438;
}

.topbar .btn-outline:hover {
  background: #0f1c2b;
  border-color: #0f1c2b;
}

.btn-outline:hover,
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}

main .btn-outline:hover,
main .btn-ghost:hover {
  background: rgba(20, 33, 48, 0.05);
  border-color: rgba(20, 33, 48, 0.18);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 64px;
  align-items: end;
  max-width: min(1280px, calc(100% - 40px));
  padding-top: 82px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  line-height: 0.94;
  font-weight: 600;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(4rem, 7vw, 6.5rem);
  max-width: 10.5ch;
}

h2 {
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
}

.lead {
  max-width: 62ch;
  font-size: 1.08rem;
  line-height: 1.86;
  color: var(--muted);
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.hero-actions .btn-primary {
  background: linear-gradient(180deg, #dec699 0%, #ba9358 100%);
  color: #0f1d2c;
  border-color: rgba(220, 194, 145, 0.18);
}

.hero-actions .btn-ghost {
  color: #f4efe4;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(244, 239, 228, 0.18);
}

.hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(244, 239, 228, 0.3);
}

.hero-stats {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 0;
  margin: 46px 0 0;
  flex-wrap: wrap;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 24px;
  border-right: 1px solid rgba(244, 239, 228, 0.14);
}

.hero-stats li:last-child {
  border-right: 0;
  padding-right: 0;
}

.hero-stats strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.hero-card {
  background: var(--surface);
  border: 1px solid rgba(200, 166, 106, 0.12);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.info-card,
.process-card,
.guarantee-card,
.about-card,
.review-card,
.offer-card,
.quote-form {
  position: relative;
  overflow: hidden;
}

.hero-card {
  padding: 36px;
  border-radius: 32px;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(4, 12, 20, 0.1), rgba(6, 18, 30, 0.76)),
    url("echappee-moment.webp") center/cover no-repeat;
  color: #fff;
  border: 1px solid rgba(244, 239, 228, 0.16);
  box-shadow: 0 28px 54px rgba(5, 12, 20, 0.28);
}

.card-tag {
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(246, 241, 232, 0.12);
  border: 1px solid rgba(246, 241, 232, 0.18);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-top: auto;
  font-size: 3.45rem;
}

.trip-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.86);
}

.section {
  position: relative;
  padding: 52px clamp(24px, 4vw, 60px) 88px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 40px;
}

.section-heading h2,
.quote-copy h2 {
  color: var(--ink);
  line-height: 0.98;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(24px, 4vw, 60px);
  right: clamp(24px, 4vw, 60px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 33, 48, 0.08), transparent);
}

.process-section,
.guarantees-section,
.faq-section {
  margin: 4px 0 28px;
  padding-top: 44px;
  padding-bottom: 54px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(243, 236, 225, 0.86));
  border: 1px solid rgba(20, 33, 48, 0.08);
  box-shadow: 0 20px 44px rgba(20, 33, 48, 0.05);
}

.process-section::before,
.guarantees-section::before,
.faq-section::before,
.quote-section::before,
.destinations::before {
  display: none;
}

.destinations {
  margin: 10px 0 36px;
  padding-top: 48px;
  padding-bottom: 56px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 15% 20%, rgba(220, 194, 145, 0.12), transparent 24%),
    linear-gradient(180deg, #122335 0%, #0d1927 100%);
  color: #f4efe4;
  box-shadow: 0 26px 52px rgba(7, 18, 29, 0.18);
}

.destinations .eyebrow {
  color: #dcc291;
}

.destinations .section-heading h2,
.destinations .destination-card h3 {
  color: #f8f3ec;
}

.destinations .section-heading p:not(.eyebrow),
.destinations .destination-card p,
.destinations .destination-card span {
  color: rgba(244, 239, 228, 0.76);
}

.cards-grid,
.destination-grid {
  display: grid;
  gap: 28px;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  padding: 34px 32px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 242, 233, 0.88));
  border: 1px solid rgba(20, 33, 48, 0.1);
  box-shadow: 0 18px 40px rgba(20, 33, 48, 0.06);
}

.process-grid,
.guarantees-grid {
  display: grid;
  gap: 28px;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guarantees-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card,
.guarantee-card,
.about-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 242, 233, 0.86));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.process-card,
.guarantee-card {
  border-radius: 28px;
  padding: 34px 32px;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(187, 149, 88, 0.24);
  color: var(--accent-dark);
  font-weight: 800;
  margin-bottom: 22px;
}

.process-card h3,
.guarantee-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.25;
}

.process-card p,
.guarantee-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.98rem;
}

.guarantee-card {
  position: relative;
  overflow: hidden;
}

.guarantee-card::before {
  content: "";
  position: absolute;
  inset: 26px auto 26px 0;
  width: 1px;
  height: auto;
  background: linear-gradient(180deg, rgba(187, 149, 88, 0.08), rgba(187, 149, 88, 0.78), rgba(187, 149, 88, 0.08));
}

.about-card {
  border-radius: 30px;
  padding: 42px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 241, 232, 0.8));
}

.about-heading {
  margin-bottom: 0;
}

.about-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.04rem;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 28px auto 28px 0;
  width: 1px;
  height: auto;
  background: linear-gradient(180deg, rgba(187, 149, 88, 0.18), rgba(187, 149, 88, 0.78), rgba(187, 149, 88, 0.18));
}

.info-card h3,
.destination-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.info-card h3 {
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.3;
}

.info-card p,
.destination-card p,
.quote-copy p,
.footer {
  color: var(--muted);
  line-height: 1.8;
}

.destination-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.destination-card {
  min-height: 390px;
  border-radius: 32px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fff;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.destination-card span {
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.destination-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.45rem;
  margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.card-one {
  background-image:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(10, 27, 35, 0.08), rgba(10, 27, 35, 0.78)),
    url("zanzibar-card.webp");
}

.card-two {
  background-image:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(10, 27, 35, 0.08), rgba(10, 27, 35, 0.78)),
    url("montenegro-card.jpg");
}

.card-three {
  background-image:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(10, 27, 35, 0.08), rgba(10, 27, 35, 0.78)),
    url("japon-card.jpg");
}

.reviews-header {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.reviews-heading {
  margin-bottom: 0;
}

.reviews-summary,
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.reviews-summary {
  border-radius: 28px;
  padding: 32px;
  text-align: left;
}

.reviews-summary strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  font-weight: 600;
  color: var(--ink);
}

.reviews-stars,
.review-rating span {
  color: #ffbf47;
  letter-spacing: 0.08em;
}

.reviews-summary p {
  margin: 10px 0 18px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-weight: 700;
  color: var(--ink);
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: rgba(20, 33, 48, 0.78);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 28px 24px;
  color: var(--muted);
  line-height: 1.75;
}

.review-card {
  border-radius: 28px;
  padding: 30px;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.review-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.review-avatar-image {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #32495b, #18293b);
}

.review-avatar-letter {
  background: linear-gradient(135deg, #bb9558, #8a683d);
}

.review-top h3 {
  margin: 0 0 4px;
  color: var(--ink);
}

.review-top p,
.review-rating small {
  margin: 0;
  color: var(--ink-soft);
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-text {
  margin: 0;
  line-height: 1.82;
  color: var(--ink);
}

.quote-highlights {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.quote-highlights div {
  padding: 20px 22px;
  border-left: 2px solid rgba(187, 149, 88, 0.78);
  background: rgba(255, 255, 255, 0.56);
  border-radius: 0 22px 22px 0;
  box-shadow: 0 12px 28px rgba(20, 33, 48, 0.06);
}

.quote-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: start;
  margin-top: 18px;
  padding-top: 48px;
  padding-bottom: 52px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 86% 18%, rgba(220, 194, 145, 0.08), transparent 22%),
    linear-gradient(180deg, #122335 0%, #0d1927 100%);
  color: #f4efe4;
  box-shadow: 0 28px 60px rgba(7, 18, 29, 0.18);
}

.quote-section .eyebrow {
  color: #dcc291;
}

.quote-copy h2,
.quote-section .quote-highlights strong,
.quote-section .quote-highlights span {
  color: #f4efe4;
}

.quote-copy p {
  color: rgba(244, 239, 228, 0.76);
}

.quote-section .quote-highlights div {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: rgba(220, 194, 145, 0.78);
  box-shadow: none;
}

.quote-highlights strong,
.quote-highlights span {
  display: block;
}

.quote-form {
  border-radius: 32px;
  padding: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 242, 233, 0.94));
  --text: var(--ink);
  --muted: #55616d;
  --border: rgba(20, 33, 48, 0.14);
  color: var(--ink);
  border: 1px solid rgba(20, 33, 48, 0.12);
  box-shadow: 0 22px 50px rgba(4, 14, 24, 0.12);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.full-span {
  grid-column: 1 / -1;
}

label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(20, 33, 48, 0.12);
  border-radius: 20px;
  padding: 16px 18px;
  font: inherit;
  color: var(--text);
  background: rgba(251, 248, 242, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

input[type="hidden"] {
  display: none;
}

select {
  color: var(--text);
}

select option {
  color: var(--ink);
  background: var(--paper-strong);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(187, 149, 88, 0.16);
  border-color: rgba(187, 149, 88, 0.46);
}

textarea {
  resize: vertical;
}

.travel-date-mode {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.travel-date-mode-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

.travel-date-mode-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border-radius: 22px;
  border: 1px solid rgba(20, 33, 48, 0.1);
  background: rgba(255, 255, 255, 0.54);
}

.travel-date-mode-option {
  border: 0;
  border-radius: 999px;
  padding: 12px 14px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.travel-date-mode-option.is-active {
  background: rgba(20, 33, 48, 0.08);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(20, 33, 48, 0.08);
}

.flexible-dates-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.custom-date-picker {
  position: relative;
}

.conditional-field[hidden] {
  display: none;
}

.custom-date-trigger {
  width: 100%;
  border: 1px solid rgba(20, 33, 48, 0.12);
  border-radius: 20px;
  padding: 16px 50px 16px 18px;
  background: rgba(251, 248, 242, 0.94);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: border-color 160ms ease, background 160ms ease;
}

.custom-date-trigger::before,
.custom-date-trigger::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.custom-date-trigger::before {
  right: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 1.75px solid rgba(20, 33, 48, 0.76);
  border-radius: 5px;
  transform: translateY(-50%);
}

.custom-date-trigger::after {
  right: 20px;
  top: calc(50% - 5px);
  width: 10px;
  height: 2px;
  background: rgba(20, 33, 48, 0.76);
  box-shadow: 0 5px 0 rgba(20, 33, 48, 0.76);
}

.custom-date-picker.open .custom-date-trigger {
  border-color: rgba(187, 149, 88, 0.46);
  background: rgba(255, 255, 255, 0.98);
}

.custom-date-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: min(320px, calc(100vw - 64px));
  display: none;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(20, 33, 48, 0.1);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 26px 42px rgba(20, 33, 48, 0.14);
  z-index: 12;
}

.custom-date-picker.open .custom-date-menu {
  display: block;
}

.search-date-options {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(20, 33, 48, 0.08);
  display: grid;
  gap: 12px;
}

.search-date-options-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(20, 33, 48, 0.58);
  font-weight: 700;
}

.search-date-flex-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-date-flex-option,
.search-date-month-toggle {
  border: 1px solid rgba(20, 33, 48, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.98);
  color: rgba(20, 33, 48, 0.78);
  font: inherit;
  font-weight: 600;
  padding: 12px 16px;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.search-date-flex-option:hover,
.search-date-flex-option:focus-visible,
.search-date-month-toggle:hover,
.search-date-month-toggle:focus-visible,
.search-date-flex-option.is-selected,
.search-date-month-toggle.is-selected {
  border-color: rgba(20, 33, 48, 0.16);
  background: rgba(20, 33, 48, 0.08);
  color: var(--ink);
  outline: none;
}

.search-date-month-toggle {
  width: 100%;
  justify-self: stretch;
  text-align: center;
}

.custom-date-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.custom-date-title {
  font-size: 1rem;
}

.custom-date-nav {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(20, 33, 48, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  font: inherit;
  font-size: 1.25rem;
  cursor: pointer;
}

.custom-date-weekdays,
.custom-date-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  align-items: center;
}

.custom-date-weekdays {
  margin-bottom: 8px;
}

.custom-date-weekday {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 0;
}

.custom-date-day,
.custom-date-day-empty {
  aspect-ratio: 1;
}

.custom-date-day {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-width: 0;
}

.custom-date-day:hover,
.custom-date-day:focus-visible {
  background: rgba(20, 33, 48, 0.07);
  outline: none;
}

.custom-date-day.is-selected {
  background: #152438;
  color: #f8f3ec;
}

.custom-date-day.is-range-edge {
  background: var(--accent);
  color: #08131f;
}

.custom-date-day.is-in-range {
  background: rgba(187, 149, 88, 0.12);
  box-shadow: inset 0 0 0 1px rgba(187, 149, 88, 0.14);
}

.custom-date-day.is-today {
  box-shadow: inset 0 0 0 1px rgba(20, 33, 48, 0.38);
}

.custom-date-day:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.custom-select {
  position: relative;
}

.custom-select-trigger {
  width: 100%;
  border: 1px solid rgba(20, 33, 48, 0.12);
  border-radius: 20px;
  padding: 16px 50px 16px 18px;
  background: rgba(251, 248, 242, 0.94);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.custom-select-trigger::before,
.custom-select-trigger::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 160ms ease;
}

.custom-select-trigger::before {
  transform: translateY(-50%) rotate(45deg);
  right: 23px;
}

.custom-select-trigger::after {
  transform: translateY(-50%) rotate(-45deg);
}

.custom-select.open .custom-select-trigger {
  border-color: rgba(187, 149, 88, 0.46);
  background: rgba(255, 255, 255, 0.98);
}

.custom-select.open .custom-select-trigger::before {
  transform: translateY(-50%) rotate(-45deg);
}

.custom-select.open .custom-select-trigger::after {
  transform: translateY(-50%) rotate(45deg);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  border-radius: 24px;
  border: 1px solid rgba(20, 33, 48, 0.1);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 24px 40px rgba(20, 33, 48, 0.14);
  z-index: 12;
}

.custom-select.open .custom-select-menu {
  display: flex;
}

.custom-select-option {
  width: 100%;
  border: 0;
  border-radius: 18px;
  padding: 13px 16px;
  background: transparent;
  color: var(--text);
  text-align: left;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.custom-select-option:hover,
.custom-select-option:focus-visible,
.custom-select-option.is-selected {
  background: rgba(20, 33, 48, 0.06);
  color: var(--ink);
  outline: none;
}

.offers-search-bar,
.results-search-bar {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 1.2fr) auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 30px;
  padding: 22px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(247, 242, 233, 0.92));
  border: 1px solid rgba(20, 33, 48, 0.08);
  box-shadow: 0 18px 38px rgba(20, 33, 48, 0.08);
}

.results-search-bar {
  margin-bottom: 0;
}

.search-field-legacy {
  display: none !important;
}

.search-field {
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.offers-search-bar label,
.results-search-bar label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(20, 33, 48, 0.58);
}

.search-field input,
.search-field .custom-select-trigger,
.search-field .custom-date-trigger {
  min-height: 70px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.98);
  border-color: rgba(20, 33, 48, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 1rem;
}

.search-field .custom-select-trigger,
.search-field .custom-date-trigger {
  padding-right: 56px;
}

.search-field input {
  color: var(--ink);
  font-weight: 600;
}

.search-field input::placeholder {
  color: rgba(85, 97, 109, 0.82);
}

.ratehawk-autocomplete-host {
  position: relative;
}

.ratehawk-autocomplete-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 35;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: min(360px, 52vh);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid rgba(20, 33, 48, 0.1);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.99), rgba(248, 243, 235, 0.98));
  box-shadow: 0 22px 44px rgba(20, 33, 48, 0.14);
  backdrop-filter: blur(16px);
  text-transform: none;
  letter-spacing: normal;
  font-family: "Manrope", "Segoe UI", sans-serif;
  isolation: isolate;
}

.ratehawk-autocomplete-menu[hidden] {
  display: none;
}

.ratehawk-autocomplete-item,
.ratehawk-autocomplete-state {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 18px;
  background: transparent;
  text-transform: none;
  letter-spacing: normal;
  font-family: "Manrope", "Segoe UI", sans-serif;
  box-shadow: none;
  text-decoration: none;
}

.ratehawk-autocomplete-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  padding: 14px 18px;
  color: #18273a;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: background 180ms ease, transform 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.ratehawk-autocomplete-item:hover,
.ratehawk-autocomplete-item.is-active {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(187, 149, 88, 0.18);
  transform: translateY(-1px);
}

.ratehawk-autocomplete-item + .ratehawk-autocomplete-item {
  border-top: 1px solid rgba(20, 33, 48, 0.06);
}

.ratehawk-autocomplete-main {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}

.ratehawk-autocomplete-label {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  color: #142130;
  white-space: normal;
}

.ratehawk-autocomplete-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(187, 149, 88, 0.14);
  color: #8d6420;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ratehawk-autocomplete-meta {
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(20, 33, 48, 0.64);
  text-transform: none;
  letter-spacing: normal;
  white-space: normal;
}

.ratehawk-autocomplete-state {
  padding: 16px 18px;
  color: rgba(20, 33, 48, 0.78);
  font-size: 0.96rem;
  line-height: 1.5;
  border-radius: 18px;
}

.ratehawk-autocomplete-state.is-error {
  color: #8a3f36;
}

.ratehawk-autocomplete-state.is-loading::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border-radius: 50%;
  border: 2px solid rgba(20, 33, 48, 0.16);
  border-top-color: #142130;
  animation: zanafly-spin 0.8s linear infinite;
  vertical-align: middle;
}

@keyframes zanafly-spin {
  to {
    transform: rotate(360deg);
  }
}

.search-field-date .custom-date-menu {
  width: min(420px, calc(100vw - 56px));
}

.search-submit {
  min-height: 70px;
  padding-left: 32px;
  padding-right: 32px;
  white-space: nowrap;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.offer-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 242, 233, 0.92));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.offer-card-image {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.offer-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 16, 20, 0.06), rgba(4, 16, 20, 0.48));
}

.offer-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1 1 auto;
}

.offer-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.offer-card-region {
  margin: 0 0 6px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}

.offer-card-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.1rem;
  line-height: 0.98;
  color: var(--ink);
}

.offer-card-price {
  white-space: nowrap;
  font-weight: 800;
  color: var(--ink);
  font-size: 0.98rem;
  letter-spacing: 0.04em;
}

.offer-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.offer-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(247, 242, 233, 0.94);
  border: 1px solid rgba(20, 33, 48, 0.08);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.offer-card-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.offer-card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.offer-card-actions .btn {
  flex: 1 1 180px;
}

.offer-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin-top: auto;
  padding: 14px 22px;
  border: 1px solid rgba(20, 33, 48, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 0.82rem;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition:
    color 180ms ease,
    letter-spacing 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.offer-card-link::after {
  content: "↗";
  margin-left: 10px;
  font-size: 0.92rem;
  line-height: 1;
}

.offer-card-link:hover {
  transform: translateY(-1px);
  color: var(--accent-dark);
  letter-spacing: 0.05em;
  background: rgba(20, 33, 48, 0.04);
  border-color: rgba(187, 149, 88, 0.28);
  box-shadow: 0 12px 24px rgba(20, 33, 48, 0.08);
}

.offer-card strong {
  color: var(--ink);
}

.offers-section .btn-outline {
  background: rgba(247, 242, 233, 0.9);
}

.offers-empty {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.offers-note {
  margin: 18px 0 0;
  max-width: 820px;
  color: var(--muted);
  line-height: 1.7;
}

.offers-section .section-heading,
.reviews-section .section-heading,
.intro .section-heading {
  max-width: 760px;
}

body.voyages-page main.results-main {
  margin: 124px auto 42px;
  padding-top: 54px;
  color: var(--ink);
}

.voyages-search-hero {
  padding-top: 8px;
}

.results-heading {
  max-width: 920px;
}

.results-heading h1 {
  color: var(--ink);
  max-width: 11.5ch;
}

.results-heading .eyebrow {
  color: var(--accent-dark);
}

.results-summary-text {
  max-width: 840px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.78;
  font-size: 1.02rem;
}

.results-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
}

.results-quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.results-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(20, 33, 48, 0.12);
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.results-filter-chip:hover {
  transform: translateY(-1px);
}

.results-filter-chip.is-active {
  background: #152438;
  color: #f8f3ec;
  border-color: #152438;
}

.results-reset {
  flex-shrink: 0;
}

.results-listing {
  padding-top: 0;
}

.results-meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.results-meta-row .eyebrow {
  margin: 0;
}

.results-active-filters {
  margin: 0;
  max-width: 760px;
  color: var(--ink-soft);
  line-height: 1.7;
  text-align: right;
}

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

.results-offer-card .offer-card-image {
  min-height: 320px;
}

.results-offer-card .offer-card-title {
  font-size: 2.28rem;
}

body.voyage-detail-page main.detail-main {
  margin: 124px auto 42px;
  padding-top: 54px;
  color: var(--ink);
}

.detail-hero-section {
  padding-top: 8px;
}

.detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.detail-back-link::before {
  content: "";
  width: 18px;
  height: 18px;
  border-left: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg);
  margin-left: 5px;
}

.detail-hero-grid,
.detail-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.detail-hero-media,
.detail-booking-card,
.detail-panel,
.detail-empty-card {
  border-radius: 34px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.detail-hero-media {
  min-height: 620px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.detail-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 18, 29, 0.06) 0%, rgba(7, 18, 29, 0.72) 100%),
    linear-gradient(120deg, rgba(7, 18, 29, 0.1) 0%, rgba(7, 18, 29, 0) 42%);
}

.detail-hero-copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 42px;
  color: #f8f3ec;
}

.detail-hero-copy .eyebrow,
.detail-hero-copy h1,
.detail-hero-location,
.detail-hero-summary {
  color: inherit;
}

.detail-hero-copy .eyebrow {
  margin-bottom: 14px;
  color: rgba(248, 243, 236, 0.76);
}

.detail-hero-copy h1 {
  margin: 0;
  max-width: 10ch;
  line-height: 0.92;
}

.detail-hero-location {
  margin: 18px 0 0;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 243, 236, 0.82);
}

.detail-hero-summary {
  margin: 18px 0 0;
  max-width: 54ch;
  line-height: 1.75;
  color: rgba(248, 243, 236, 0.92);
}

.detail-hero-tags {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-hero-tags .offer-chip {
  background: rgba(248, 243, 236, 0.16);
  border-color: rgba(248, 243, 236, 0.24);
  color: #f8f3ec;
}

.detail-booking-card,
.detail-panel,
.detail-empty-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 242, 233, 0.92));
}

.detail-booking-card {
  padding: 34px;
  display: grid;
  gap: 24px;
  position: sticky;
  top: 152px;
  align-self: start;
}

.detail-booking-kicker {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.detail-booking-price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.7rem, 4vw, 3.5rem);
  line-height: 0.94;
  color: var(--ink);
}

.detail-booking-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.detail-booking-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(20, 33, 48, 0.08);
}

.detail-booking-list span {
  color: var(--muted);
}

.detail-booking-list strong {
  color: var(--ink);
  text-align: right;
}

.detail-booking-actions {
  display: grid;
  gap: 12px;
}

.detail-booking-actions .btn {
  width: 100%;
  justify-content: center;
}

.detail-booking-note {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(20, 33, 48, 0.05);
  border: 1px solid rgba(20, 33, 48, 0.08);
}

.detail-booking-note h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.detail-booking-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.detail-panel {
  padding: 34px;
}

.detail-story-panel p:last-child,
.detail-panel p:last-child {
  margin-bottom: 0;
}

.detail-information-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.detail-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.detail-bullet-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  line-height: 1.72;
}

.detail-bullet-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #dcc291 0%, #bb9558 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.detail-related-heading {
  max-width: 760px;
}

.detail-related-grid .offer-card-title {
  font-size: 1.92rem;
}

.detail-empty-state {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 240px);
}

.detail-empty-card {
  max-width: 680px;
  padding: 42px;
  text-align: center;
}

.detail-empty-card p {
  color: var(--muted);
}

.admin-body {
  min-height: 100vh;
  padding: 32px clamp(18px, 4vw, 40px) 56px;
}

.admin-shell {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.admin-hero,
.admin-card,
.admin-result-card,
.admin-hotel-card,
.admin-draft-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.admin-hero {
  padding: 28px;
  display: grid;
  gap: 24px;
}

.admin-hero-copy {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.admin-hero-copy h1,
.admin-card h2 {
  margin: 0;
}

.admin-hero-copy p:last-child,
.admin-placeholder {
  margin: 0;
  color: var(--muted);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.admin-card {
  padding: 24px;
  display: grid;
  gap: 18px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.admin-form-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-btn {
  min-height: 56px;
}

.admin-status {
  margin: 0;
  font-weight: 700;
  color: var(--teal);
}

.admin-results {
  display: grid;
  gap: 12px;
}

.admin-results-large {
  gap: 14px;
}

.admin-result-card,
.admin-hotel-card {
  width: 100%;
  padding: 16px 18px;
  color: var(--text);
  text-align: left;
}

.admin-result-card {
  cursor: pointer;
  display: grid;
  gap: 6px;
}

.admin-result-card span,
.admin-hotel-card span {
  color: var(--muted);
}

.admin-hotel-card {
  display: grid;
  gap: 14px;
}

.admin-hotel-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-draft {
  display: grid;
}

.admin-draft-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.admin-json-output {
  width: 100%;
  min-height: 220px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 19, 24, 0.7);
  color: var(--text);
  padding: 18px;
  font: inherit;
  resize: vertical;
}

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

.full-width {
  margin-top: 16px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.form-status {
  margin: 0;
  font-weight: 700;
  color: var(--accent-dark);
}

.footer {
  max-width: min(1320px, calc(100% - 40px));
  padding: 26px clamp(24px, 4vw, 56px) 30px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(244, 239, 228, 0.72);
  border-top: 1px solid rgba(244, 239, 228, 0.08);
}

.footer p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.footer span {
  color: rgba(244, 239, 228, 0.58);
}

input::placeholder,
textarea::placeholder {
  color: rgba(85, 97, 109, 0.86);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  background: rgba(9, 20, 31, 0.9);
  color: rgba(244, 239, 228, 0.92);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(220, 194, 145, 0.18);
  box-shadow: 0 18px 38px rgba(7, 18, 29, 0.2);
  backdrop-filter: blur(12px);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: rgba(10, 24, 37, 0.96);
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #dcc291 0%, #bb9558 100%);
  color: #142130;
  font-size: 0.92rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.whatsapp-icon svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 980px) {
  main,
  .footer,
  .topbar,
  .top-banner,
  .hero-content {
    max-width: calc(100% - 28px);
  }

  main {
    margin-top: -28px;
    padding-top: 34px;
    border-radius: 34px 34px 0 0;
  }

  .hero {
    padding-bottom: 88px;
  }

  .topbar,
  .hero-content {
    padding-left: 22px;
    padding-right: 22px;
  }

  .topbar {
    gap: 16px;
  }

  .hero-content,
  .quote-section,
  .reviews-header,
  .about-card,
  .cards-grid,
  .destination-grid,
  .reviews-grid,
  .process-grid,
  .guarantees-grid,
  .offers-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .offers-search-bar,
  .results-search-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-submit {
    grid-column: 1 / -1;
  }

  .results-toolbar,
  .results-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-hero-grid,
  .detail-overview-grid,
  .detail-information-grid {
    grid-template-columns: 1fr;
  }

  .detail-booking-card {
    position: static;
  }

  .results-active-filters {
    max-width: none;
    text-align: left;
  }

  .hero-card {
    min-height: 320px;
  }

  .quote-copy,
  .reviews-summary {
    max-width: none;
  }
}

@media (max-width: 700px) {
  body {
    overflow-x: hidden;
  }

  .hero {
    padding-top: 104px;
  }

  .topbar {
    position: fixed;
    top: 0;
    left: 10px;
    right: 10px;
    z-index: 60;
    width: auto;
    max-width: none;
    margin: 10px 0 0;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 12px;
    padding-bottom: 12px;
    border-radius: 24px;
    transform: none;
  }

  .topbar.topbar-scrolled {
    top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 20px;
  }

  .topbar.topbar-scrolled .brand-logo {
    width: 56px;
    height: 56px;
  }

  .topbar.topbar-scrolled .brand p {
    font-size: 1rem;
  }

  .topbar.topbar-scrolled .brand span {
    font-size: 0.8rem;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  body.voyages-page main.results-main {
    margin-top: 104px;
    padding-top: 30px;
  }

  body.voyage-detail-page main.detail-main {
    margin-top: 104px;
    padding-top: 30px;
  }

  .brand {
    width: calc(100% - 68px);
    gap: 12px;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
  }

  .brand p {
    font-size: 1.1rem;
  }

  .brand span {
    font-size: 0.9rem;
  }

  .detail-hero-media {
    min-height: 460px;
  }

  .detail-hero-copy {
    padding: 28px;
  }

  h1 {
    font-size: clamp(3.1rem, 13vw, 4.5rem);
    max-width: 100%;
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2.3rem, 9vw, 3.2rem);
    line-height: 1.05;
  }

  .hero-content {
    padding-top: 36px;
    gap: 28px;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
  }

  .hero-stats li {
    border-right: 0;
    padding-right: 0;
  }

  .hero-stats li:last-child {
    grid-column: 1 / -1;
  }

  .hero-card {
    min-height: 280px;
    padding: 24px;
    border-radius: 26px;
  }

  .hero-card h2 {
    font-size: 2.25rem;
  }

  .trip-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .section {
    padding: 28px 22px 58px;
  }

  .offers-search-bar,
  .results-search-bar {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 14px;
    border-radius: 26px;
  }

  .search-field input,
  .search-field .custom-select-trigger,
  .search-field .custom-date-trigger,
  .search-submit {
    min-height: 62px;
  }

  .results-toolbar {
    gap: 14px;
  }

  .results-quick-filters {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .results-filter-chip {
    white-space: nowrap;
  }

  .process-section,
  .guarantees-section,
  .faq-section,
  .destinations,
  .quote-section {
    padding-top: 34px;
    padding-bottom: 40px;
    border-radius: 26px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .info-card,
  .process-card,
  .guarantee-card,
  .review-card,
  .quote-form,
  .about-card {
    border-radius: 22px;
    padding: 22px;
  }

  .destination-card {
    min-height: 260px;
    border-radius: 22px;
    padding: 22px;
  }

  .reviews-summary strong {
    font-size: 2.7rem;
  }

  .faq-item summary {
    padding: 18px 20px;
    padding-right: 56px;
  }

  .faq-item summary::after {
    right: 20px;
  }

  .faq-item p {
    padding: 0 20px 20px;
  }

  .results-offer-card .offer-card-title {
    font-size: 2rem;
  }

  .quote-highlights {
    gap: 12px;
  }

  .quote-highlights div {
    padding: 16px 18px;
  }

  .detail-booking-card,
  .detail-panel,
  .detail-empty-card {
    border-radius: 24px;
    padding: 24px;
  }

  .detail-booking-price {
    font-size: 2.8rem;
  }

  .full-width {
    margin-top: 14px;
  }

  .form-footer {
    align-items: stretch;
  }

  .form-footer .btn {
    width: 100%;
  }

  .btn,
  .nav-links {
    width: 100%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-top: 18px;
  }

  .topbar.menu-open .nav-links {
    display: flex;
  }

  .nav-links a,
  .language-switcher,
  .nav-section-switcher {
    width: 100%;
  }

  .nav-links .btn,
  .nav-links a {
    justify-content: flex-start;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    width: 100%;
    max-width: none;
  }

  .nav-section-switcher .nav-dropdown-trigger {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .top-banner img {
    min-height: 170px;
    object-fit: cover;
    object-position: center;
  }

  .admin-grid,
  .admin-form-grid,
  .admin-form-grid-compact {
    grid-template-columns: 1fr;
  }

  .topbar.menu-open {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: 0 18px 40px rgba(20, 33, 48, 0.18);
  }

  .nav-dropdown-menu,
  .nav-dropdown-menu-right {
    position: static;
    min-width: 0;
    margin-top: 10px;
    border-radius: 20px;
  }

  .footer {
    max-width: calc(100% - 28px);
    padding: 18px 22px 96px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 8px 12px 8px 8px;
    gap: 8px;
    font-size: 0.76rem;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }

  .detail-booking-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-booking-list strong {
    text-align: left;
  }
}

@media (max-width: 480px) {
  main,
  .footer,
  .top-banner,
  .hero-content {
    max-width: calc(100% - 16px);
  }

  main {
    margin-top: -18px;
    padding-top: 24px;
    border-radius: 26px 26px 0 0;
  }

  .topbar,
  .hero-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .topbar {
    left: 8px;
    right: 8px;
  }

  .detail-hero-copy h1 {
    max-width: none;
  }

  .detail-hero-tags {
    gap: 8px;
  }

  .brand {
    align-items: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats li:last-child {
    grid-column: auto;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  input,
  select,
  textarea {
    padding: 13px 14px;
    border-radius: 18px;
  }

  .btn {
    padding: 13px 18px;
  }

  .top-banner img {
    min-height: 120px;
  }

  .custom-select-trigger {
    border-radius: 18px;
    padding: 13px 44px 13px 14px;
  }

  .custom-date-trigger {
    border-radius: 18px;
    padding: 13px 44px 13px 14px;
  }

  .travel-date-mode-switch {
    grid-template-columns: 1fr;
  }

  .flexible-dates-grid {
    grid-template-columns: 1fr;
  }

  .custom-date-trigger::before {
    right: 14px;
  }

  .custom-date-trigger::after {
    right: 18px;
  }

  .custom-date-menu {
    width: min(100%, 320px);
    border-radius: 18px;
    padding: 12px;
  }

  .custom-select-menu {
    border-radius: 18px;
  }
}

.admin-backoffice-shell {
  padding-top: 40px;
  padding-bottom: 80px;
}

.admin-body {
  color: var(--navy-strong);
}

.admin-body .admin-hero-copy h1 {
  color: var(--navy-deep);
  font-size: clamp(2.9rem, 4.9vw, 5rem);
  line-height: 0.96;
  max-width: 11.5ch;
  text-wrap: balance;
}

.admin-body .admin-hero-copy > p:last-child {
  color: var(--admin-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 72ch;
}

.admin-body h1,
.admin-body h2,
.admin-body h3,
.admin-body strong {
  color: var(--navy-strong);
}

.admin-body .admin-card h2,
.admin-body #adminEditorTitle,
.admin-body .admin-card-heading h2 {
  color: var(--navy-deep);
}

.admin-body .admin-backoffice-hero h1,
.admin-body .admin-card h2,
.admin-body .admin-ratehawk-card h2,
.admin-body .admin-catalog-card h2,
.admin-body .admin-editor-card h2,
.admin-body .admin-media-section h2,
.admin-body #adminEditorTitle {
  color: var(--navy-deep) !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.admin-body .admin-backoffice-hero .eyebrow,
.admin-body .admin-card .eyebrow,
.admin-body .admin-media-section .eyebrow {
  color: var(--accent-dark) !important;
  opacity: 1 !important;
}

.admin-body label {
  color: rgba(20, 33, 61, 0.92);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.admin-body label span,
.admin-body .eyebrow,
.admin-body .admin-updated-at {
  color: var(--admin-soft);
}

.admin-body input,
.admin-body textarea,
.admin-body select {
  color: var(--navy-strong);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(27, 38, 59, 0.16);
}

.admin-body input::placeholder,
.admin-body textarea::placeholder {
  color: rgba(84, 95, 117, 0.84);
  opacity: 1;
}

.admin-page .ratehawk-autocomplete-menu {
  border-radius: 22px;
  background: rgba(255, 251, 244, 0.99);
  border-color: rgba(187, 149, 88, 0.18);
  box-shadow: 0 16px 34px rgba(20, 33, 48, 0.12);
}

.admin-page .ratehawk-autocomplete-item:hover,
.admin-page .ratehawk-autocomplete-item.is-active {
  background: rgba(187, 149, 88, 0.1);
}

.admin-body input:read-only {
  color: rgba(57, 69, 92, 0.88);
  background: rgba(246, 241, 232, 0.94);
}

.admin-body .admin-placeholder {
  color: var(--admin-muted);
}

.admin-backoffice-hero {
  display: grid;
  gap: 24px;
  margin-bottom: 28px;
}

.admin-backoffice-hero .brand {
  align-self: flex-start;
}

.admin-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.admin-backoffice-grid {
  display: grid;
  grid-template-columns: minmax(320px, 390px) minmax(0, 1fr);
  gap: 26px;
}

.admin-sidebar-column,
.admin-editor-column {
  display: grid;
  gap: 24px;
  align-self: start;
}

.admin-card {
  background: rgba(255, 250, 241, 0.96);
  border: 1px solid rgba(27, 38, 59, 0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 26px 48px rgba(13, 27, 42, 0.08);
}

.admin-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.admin-card-heading h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--navy-strong);
}

.admin-counter {
  min-width: 46px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(27, 38, 59, 0.08);
  color: var(--navy-strong);
  font-weight: 800;
}

.admin-sidebar-filters,
.admin-grid-compact,
.admin-form-grid-editor,
.admin-media-actions,
.admin-form-actions {
  display: grid;
  gap: 16px;
}

.admin-sidebar-filters,
.admin-grid-compact,
.admin-form-grid-editor {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-list {
  display: grid;
  gap: 14px;
}

.admin-list-item {
  text-align: left;
  width: 100%;
  border: 1px solid rgba(27, 38, 59, 0.1);
  border-radius: 22px;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.76);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.admin-list-item:hover,
.admin-list-item.is-active {
  border-color: rgba(27, 38, 59, 0.2);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.admin-list-item-top,
.admin-list-item-meta,
.admin-editor-meta,
.admin-image-actions,
.admin-hotel-meta,
.admin-inline-field {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-list-item-top {
  justify-content: space-between;
  margin-bottom: 8px;
}

.admin-list-item p,
.admin-list-item-meta span,
.admin-status,
.admin-result-card span,
.admin-placeholder,
.admin-image-card-body span {
  color: rgba(56, 69, 93, 0.9);
}

.admin-list-item p {
  margin: 0 0 8px;
}

.admin-list-item strong {
  color: var(--navy-strong);
}

.admin-body .admin-image-card-body strong,
.admin-body .admin-list-item strong,
.admin-body .admin-result-card strong,
.admin-body .admin-hotel-card strong {
  color: var(--navy-deep);
}

.admin-body .admin-image-card-body strong,
.admin-body .admin-image-card-body span,
.admin-body .admin-list-item p,
.admin-body .admin-list-item-meta span,
.admin-body .admin-updated-at {
  opacity: 1 !important;
}

.admin-list-item-meta {
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.admin-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-status-badge.status-draft { background: rgba(27, 38, 59, 0.1); color: var(--navy-strong); }
.admin-status-badge.status-published { background: rgba(186, 146, 73, 0.18); color: #7c5a18; }
.admin-status-badge.status-scheduled { background: rgba(59, 130, 246, 0.12); color: #214f97; }
.admin-status-badge.status-expired { background: rgba(148, 163, 184, 0.18); color: #475569; }
.admin-status-badge.status-archived,
.admin-status-badge.status-hidden { background: rgba(120, 113, 108, 0.14); color: #57534e; }

.admin-updated-at,
.admin-status {
  font-size: 0.92rem;
}

.admin-updated-at {
  color: var(--admin-soft);
}

.admin-status[data-state="success"] { color: #20603d; }
.admin-status[data-state="error"] { color: #9f2d2d; }
.admin-status[data-state="loading"] { color: #6a5a2d; }

.admin-editor-form {
  display: grid;
  gap: 24px;
}

.admin-span-2 {
  grid-column: span 2;
}

.admin-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(27, 38, 59, 0.1);
}

.admin-checkbox input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
}

.admin-media-section {
  display: grid;
  gap: 18px;
}

.admin-media-actions {
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: end;
}

.admin-upload-btn {
  align-self: stretch;
}

.admin-manual-image {
  display: grid;
  gap: 10px;
}

.admin-inline-field input {
  flex: 1;
}

.admin-media-grid,
.admin-results {
  display: grid;
  gap: 16px;
}

.admin-media-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.admin-image-card,
.admin-result-card,
.admin-hotel-card {
  border-radius: 22px;
  border: 1px solid rgba(27, 38, 59, 0.1);
  background: rgba(255, 255, 255, 0.8);
}

.admin-image-card {
  overflow: hidden;
}

.admin-image-card.is-hero {
  border-color: rgba(186, 146, 73, 0.48);
  box-shadow: 0 18px 28px rgba(186, 146, 73, 0.14);
}

.admin-image-preview {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

.admin-image-card-body,
.admin-hotel-card,
.admin-result-card {
  padding: 14px 16px;
}

.admin-image-card-body {
  display: grid;
  gap: 6px;
}

.admin-image-actions {
  justify-content: space-between;
  padding: 0 16px 16px;
}

.admin-image-actions .btn {
  min-width: auto;
  padding: 10px 14px;
}

.admin-separator {
  height: 1px;
  background: rgba(27, 38, 59, 0.1);
  margin: 2px 0;
}

.admin-stack {
  display: grid;
  gap: 16px;
}

.admin-results-large {
  max-height: 420px;
  overflow: auto;
  padding-right: 4px;
}

.admin-result-card,
.admin-hotel-card {
  text-align: left;
  width: 100%;
}

.admin-result-card strong,
.admin-hotel-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-strong);
}

.admin-result-card p,
.admin-hotel-card p {
  color: rgba(56, 69, 93, 0.88);
}

.admin-body .admin-counter {
  color: var(--navy-deep);
}

.admin-body .admin-checkbox span {
  color: var(--navy-strong);
  font-weight: 700;
}

.admin-hotel-card {
  display: grid;
  gap: 12px;
}

.admin-hotel-meta {
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: rgba(27, 38, 59, 0.72);
}

.admin-prefill-btn,
.admin-btn {
  width: 100%;
}

.admin-form-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-form-actions-top {
  margin-bottom: -6px;
}

.admin-form-actions-top .btn {
  min-width: 0;
}

@media (max-width: 1180px) {
  .admin-backoffice-grid {
    grid-template-columns: 1fr;
  }

  .admin-sidebar-column {
    order: 2;
  }

  .admin-editor-column {
    order: 1;
  }
}

@media (max-width: 780px) {
  .admin-sidebar-filters,
  .admin-grid-compact,
  .admin-form-grid-editor,
  .admin-media-actions,
  .admin-form-actions {
    grid-template-columns: 1fr;
  }

  .admin-span-2 {
    grid-column: auto;
  }
}
