:root {
  --ink: #12323d;
  --ink-soft: #45636b;
  --ocean: #067f9b;
  --ocean-deep: #055d73;
  --aqua: #00a9a3;
  --mint: #def9f2;
  --sand: #fff3d5;
  --sun: #ffc43d;
  --coral: #ff6654;
  --white: #ffffff;
  --line: #cfe8e5;
  --shadow: 0 18px 48px rgba(7, 67, 82, 0.12);
  --shadow-soft: 0 10px 28px rgba(7, 67, 82, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfefd;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

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

img {
  background: #e7f2ef;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(255, 200, 87, 0.95);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ocean-deep);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 32px), 820px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(220, 235, 234, 0.9);
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 40px), 1460px);
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: transparent;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 13px;
}

.main-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.main-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #294b55;
  font-size: 16px;
  font-weight: 720;
  line-height: 1.2;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ocean-deep);
  background: linear-gradient(135deg, #d9faf1, #dcefff);
  box-shadow: 0 7px 18px rgba(6, 127, 155, 0.1);
}

.header-action {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--aqua), var(--ocean-deep));
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(5, 93, 115, 0.24);
}

.header-action img {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: var(--white);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ocean-deep);
  background: var(--white);
}

.menu-button svg {
  width: 22px;
  height: 22px;
}

.mobile-nav {
  display: none;
  padding: 4px 16px 18px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 12px 4px;
  border-bottom: 1px solid #edf4f2;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 34px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 196, 61, 0.4), transparent 31%),
    radial-gradient(circle at 85% 70%, rgba(0, 169, 163, 0.3), transparent 34%),
    linear-gradient(180deg, #eafbf7 0%, #fbfefd 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  border: 54px solid rgba(8, 127, 140, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 7px 11px;
  border: 1px solid rgba(8, 127, 140, 0.18);
  border-radius: 999px;
  color: var(--ocean-deep);
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 120, 104, 0.14);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5.8vw, 72px);
}

.hero h1 span {
  color: var(--ocean);
}

.hero-lead {
  max-width: 690px;
  margin: 0 0 25px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--aqua), var(--ocean-deep));
  box-shadow: 0 12px 28px rgba(5, 93, 115, 0.25);
}

.button-primary:hover {
  background: linear-gradient(135deg, #00b9ae, #064d61);
  box-shadow: 0 16px 32px rgba(5, 93, 115, 0.31);
}

.button-sun {
  color: #493607;
  background: var(--sun);
  box-shadow: 0 12px 28px rgba(255, 200, 87, 0.28);
}

.button-light {
  border-color: var(--line);
  color: var(--ocean-deep);
  background: var(--white);
}

.button-ghost {
  color: var(--ocean-deep);
  background: var(--mint);
}

.button-small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 14px;
}

.quick-search {
  max-width: 660px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 26px;
  padding: 8px;
  border: 1px solid rgba(8, 127, 140, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.quick-search input {
  min-width: 0;
  border: 0;
  padding: 10px 12px;
  color: var(--ink);
  background: transparent;
  outline: 0;
}

.quick-search button {
  border: 0;
}

.hero-visual {
  position: relative;
  padding: 13px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-visual picture {
  overflow: hidden;
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  background: #e7f2ef;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  left: -28px;
  bottom: 36px;
  max-width: 230px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  transform: rotate(-1.2deg);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  font-size: 24px;
}

.hero-note span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 13px;
}

.trust-strip {
  padding: 18px 0;
  border-top: 1px solid rgba(220, 235, 234, 0.7);
  border-bottom: 1px solid rgba(220, 235, 234, 0.9);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-item {
  padding: 8px 12px;
  text-align: center;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 20px;
  color: var(--ocean-deep);
}

.trust-item span {
  color: var(--ink-soft);
  font-size: 13px;
}

.section {
  padding: 78px 0;
}

.section-tight {
  padding: 54px 0;
}

.section-mint {
  background: var(--mint);
}

.section-sand {
  background: var(--sand);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(28, 166, 162, 0.36), transparent 34%),
    linear-gradient(135deg, #064859, #07323f);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
}

.section-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.section-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-topline .section-heading {
  margin-bottom: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.category-card {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(6, 127, 155, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 169, 163, 0.42);
  box-shadow: var(--shadow-soft);
}

.category-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #d4fbef, #dcefff);
  font-size: 22px;
}

.category-card h3 {
  margin: 24px 0 5px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.category-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tour-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(7, 67, 82, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.tour-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 169, 163, 0.4);
  box-shadow: var(--shadow-soft);
}

.tour-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 2.65;
  background: linear-gradient(135deg, #dff3ee, #b9e0de);
}

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

.tour-card:hover .tour-image img {
  transform: scale(1.035);
}

.badge-row {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 50, 63, 0.88);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.02em;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.badge-top {
  color: #4d3500;
  background: rgba(255, 200, 87, 0.94);
}

.badge-coral {
  background: rgba(235, 91, 75, 0.92);
}

.tour-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.tour-section {
  margin: 0 0 7px;
  color: var(--ocean);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.tour-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.tour-facts {
  display: grid;
  gap: 6px;
  margin: auto 0 14px;
  color: var(--ink-soft);
  font-size: 13px;
}

.tour-fact {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.tour-price {
  color: var(--ocean-deep);
  font-size: 18px;
  font-weight: 850;
}

.tour-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.tour-actions .button {
  min-height: 40px;
  padding: 9px 12px;
  font-size: 13px;
}

.tour-open {
  border: 0;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ocean-deep);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
}

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

.plan-card,
.guide-card,
.info-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(7, 67, 82, 0.06);
}

.guide-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.guide-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 169, 163, 0.42);
  box-shadow: var(--shadow-soft);
}

.plan-card,
.info-card {
  padding: 24px;
}

.plan-card .kicker {
  color: var(--coral);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.plan-card h3,
.guide-card h2,
.guide-card h3,
.info-card h3 {
  margin: 10px 0 10px;
  font-size: 22px;
}

.plan-card p,
.guide-card p,
.info-card p {
  margin: 0;
  color: var(--ink-soft);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--ocean-deep);
  font-size: 14px;
  font-weight: 850;
}

.card-link::after {
  content: "→";
  transition: transform 0.18s ease;
}

.card-link:hover::after {
  transform: translateX(4px);
}

.guide-card:hover .card-link::after {
  transform: translateX(4px);
}

.guide-card img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}

.guide-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.guide-card-body p {
  flex: 1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 26px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 12px;
  color: #493607;
  background: var(--sun);
  font-weight: 900;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 200, 87, 0.4), transparent 30%),
    linear-gradient(135deg, #e8f8f4, #fef8e8);
}

.cta-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 44px);
}

.cta-panel p {
  max-width: 700px;
  margin: 0;
  color: var(--ink-soft);
}

.page-hero {
  padding: 58px 0 46px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 25%, rgba(0, 169, 163, 0.26), transparent 30%),
    radial-gradient(circle at 12% 10%, rgba(255, 196, 61, 0.22), transparent 23%),
    linear-gradient(180deg, #eafbf7, #fbfefd);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 13px;
}

.breadcrumbs a:hover {
  color: var(--ocean-deep);
  text-decoration: underline;
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 16px;
  font-size: clamp(36px, 5.5vw, 64px);
}

.page-lead {
  max-width: 820px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 750;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

.filter-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, #f3fffb);
  box-shadow: 0 10px 28px rgba(6, 127, 155, 0.08);
}

.filter-group {
  display: grid;
  gap: 8px;
}

.filter-group label,
.filter-label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.search-input,
.filter-select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--ink);
  background: #ffffff;
}

.search-input:focus,
.filter-select:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(0, 169, 163, 0.12);
  outline: 0;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 14px;
}

.filter-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--ocean);
}

.filter-reset {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ocean-deep);
  background: var(--mint);
  font-weight: 800;
}

.catalog-main {
  min-width: 0;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.catalog-count {
  margin: 0;
  color: var(--ink-soft);
}

.catalog-count strong {
  color: var(--ocean-deep);
}

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

.catalog-card[hidden] {
  display: none !important;
}

.empty-state {
  padding: 40px 24px;
  border: 1px dashed #b9d8d5;
  border-radius: var(--radius-md);
  text-align: center;
  background: var(--mint);
}

.empty-state h2 {
  margin-bottom: 8px;
}

.empty-state p {
  margin: 0 0 18px;
  color: var(--ink-soft);
}

.load-more-wrap {
  margin-top: 26px;
  text-align: center;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 44px;
}

.article {
  min-width: 0;
}

.article h2 {
  margin: 48px 0 14px;
  font-size: clamp(27px, 3.5vw, 38px);
}

.article h2:first-child {
  margin-top: 0;
}

.article p,
.article li {
  color: #34545e;
  font-size: 17px;
}

.article p {
  margin: 0 0 16px;
}

.article ul,
.article ol {
  margin: 0 0 22px;
  padding-left: 24px;
}

.article li + li {
  margin-top: 8px;
}

.aside-card {
  position: sticky;
  top: 98px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.aside-card h2,
.aside-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.aside-card p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 14px;
}

.aside-card .button {
  width: 100%;
}

.plan-timeline {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.plan-day {
  display: grid;
  grid-template-columns: 82px 240px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.plan-day-label {
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-day-media {
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 240px;
  aspect-ratio: 16 / 10;
  border-radius: 13px;
  background: linear-gradient(135deg, #f4fffc, #e8f7f5);
}

.plan-day-image {
  width: 100%;
  height: 100%;
  background: transparent;
  object-fit: contain;
  object-position: center;
}

.plan-day h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.plan-day p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.plan-day .card-link {
  margin-top: 9px;
}

.tip-box,
.notice-box {
  margin-top: 28px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--sand);
}

.tip-box h2,
.notice-box h2 {
  margin: 0 0 12px;
  font-size: 23px;
}

.tip-box ul {
  margin: 0;
  padding-left: 20px;
}

.details-list {
  display: grid;
  gap: 12px;
}

.details-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.details-list summary {
  padding: 17px 20px;
  font-weight: 850;
  cursor: pointer;
}

.details-list details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--ink-soft);
}

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

.contact-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-card .contact-icon {
  font-size: 28px;
}

.contact-card h2 {
  margin: 18px 0 6px;
  font-size: 22px;
}

.contact-card p {
  margin: 0;
  color: var(--ink-soft);
}

.contact-card .card-link {
  margin-top: auto;
  padding-top: 18px;
}

.tour-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 58px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 196, 61, 0.35), transparent 25%),
    radial-gradient(circle at 88% 70%, rgba(0, 169, 163, 0.28), transparent 31%),
    linear-gradient(150deg, #effcf8 0%, #fffaf0 100%);
}

.tour-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 42px;
}

.tour-detail-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5.2vw, 66px);
}

.tour-detail-copy .hero-actions {
  margin-top: 26px;
}

.pill-coral {
  border-color: rgba(255, 102, 84, 0.3);
  color: #8a2f23;
  background: #fff0ed;
}

.tour-detail-visual {
  position: relative;
  padding: 12px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  transform: rotate(0.8deg);
}

.tour-detail-media {
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 23px;
  background: linear-gradient(135deg, #f4fffc, #e8f7f5);
}

.tour-detail-media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  object-position: center;
}

.tour-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tour-quick-grid article {
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(6, 127, 155, 0.06);
}

.tour-quick-grid article > span {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
}

.tour-quick-grid strong,
.tour-quick-grid p {
  display: block;
  margin: 0;
}

.tour-quick-grid p {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 14px;
}

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

.highlight-card {
  min-height: 218px;
  padding: 23px;
  border: 1px solid rgba(0, 169, 163, 0.2);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.highlight-card > span {
  font-size: 31px;
}

.highlight-card h3 {
  margin: 28px 0 8px;
  font-size: 20px;
}

.highlight-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.tour-program-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
}

.tour-program-layout .article > h2 {
  margin-top: 0;
}

.tour-timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 24px;
}

.tour-timeline::before {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 14px;
  width: 2px;
  background: linear-gradient(rgba(0, 169, 163, 0.55), rgba(6, 127, 155, 0.55));
}

.tour-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 13px;
  padding: 7px 0 17px;
}

.tour-timeline-item > span {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--aqua);
  border-radius: 50%;
  color: var(--ocean-deep);
  background: var(--white);
  box-shadow: 0 0 0 5px var(--white);
  font-size: 13px;
  font-weight: 900;
}

.tour-timeline-item h3 {
  margin: 1px 0 3px;
  font-size: 17px;
  line-height: 1.35;
}

.tour-timeline-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.program-note {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.price-table {
  overflow: hidden;
  display: grid;
  margin: 16px 0 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.price-table > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
  padding: 11px 12px;
  background: #f7fffc;
}

.price-table > div + div {
  border-top: 1px solid var(--line);
}

.price-table span {
  color: var(--ink-soft);
  font-size: 13px;
}

.price-table strong {
  flex: 0 0 auto;
  color: var(--ocean-deep);
}

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

.practical-card {
  padding: 24px;
  border: 1px solid rgba(255, 196, 61, 0.35);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
}

.practical-good {
  border-color: rgba(0, 169, 163, 0.28);
  background: #f2fffb;
}

.practical-check {
  border-color: rgba(255, 102, 84, 0.24);
  background: #fff8f5;
}

.practical-card h3 {
  margin-bottom: 13px;
  font-size: 21px;
}

.practical-card ul {
  margin: 0;
  padding-left: 21px;
  color: var(--ink-soft);
}

.practical-card li + li {
  margin-top: 7px;
}

.booking-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 196, 61, 0.3), transparent 27%),
    linear-gradient(135deg, #effcf7, #fffaf0);
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 52px;
}

.booking-intro {
  position: sticky;
  top: 118px;
  padding-top: 8px;
}

.booking-intro h2 {
  margin-bottom: 17px;
  font-size: clamp(34px, 4.7vw, 58px);
}

.booking-intro > p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.booking-benefits {
  display: grid;
  gap: 12px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.booking-benefits li {
  position: relative;
  padding-left: 28px;
  font-weight: 750;
}

.booking-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--aqua);
  font-weight: 950;
}

.booking-contact-note {
  color: var(--ink-soft);
  font-size: 14px;
}

.booking-contact-note a {
  color: var(--ocean-deep);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(6, 127, 155, 0.3);
  text-underline-offset: 3px;
}

.booking-card {
  padding: 30px;
  border: 1px solid rgba(6, 127, 155, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

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

.form-field {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field > span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.form-field small {
  color: var(--ink-soft);
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cfe0dd;
  border-radius: 13px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfefd;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.form-field textarea {
  min-height: 112px;
  resize: vertical;
}

.form-field input[readonly] {
  color: var(--ocean-deep);
  background: var(--mint);
  font-weight: 800;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--aqua);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 169, 163, 0.11);
  outline: 0;
}

.date-picker {
  position: relative;
  width: 100%;
}

.date-picker.is-open {
  z-index: 80;
}

.form-field .date-picker-input {
  padding-right: 54px;
  cursor: pointer;
}

.date-picker-trigger {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 10px;
  color: var(--ocean-deep);
  background: transparent;
  cursor: pointer;
}

.date-picker-trigger:hover,
.date-picker-trigger:focus-visible {
  background: var(--mint);
  outline: 0;
}

.date-picker-trigger svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.date-picker-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 100;
  width: min(360px, 100%);
  padding: 14px;
  border: 1px solid rgba(6, 127, 155, 0.2);
  border-radius: 18px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(3, 52, 65, 0.2);
}

.date-picker-popover[hidden] {
  display: none;
}

.date-picker-header {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.date-picker-header strong {
  text-align: center;
  font-size: 15px;
}

.date-picker-nav {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ocean-deep);
  background: var(--mint);
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}

.date-picker-nav:hover,
.date-picker-nav:focus-visible {
  color: #ffffff;
  background: var(--ocean);
  outline: 0;
}

.date-picker-nav:disabled {
  color: #a8b7b5;
  background: #f2f6f5;
  cursor: not-allowed;
}

.date-picker-weekdays,
.date-picker-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.date-picker-weekdays {
  margin-bottom: 4px;
  color: var(--ink-soft);
  text-align: center;
  font-size: 11px;
  font-weight: 800;
}

.date-picker-weekdays span {
  padding: 4px 0;
}

.date-picker-days button,
.date-picker-blank {
  width: 100%;
  aspect-ratio: 1;
}

.date-picker-days button {
  display: grid;
  min-width: 0;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.date-picker-days button:hover,
.date-picker-days button:focus-visible {
  border-color: var(--aqua);
  background: var(--mint);
  outline: 0;
}

.date-picker-days button.is-today {
  border-color: rgba(0, 169, 163, 0.55);
}

.date-picker-days button.is-selected,
.date-picker-days button.is-selected:hover {
  border-color: var(--ocean);
  color: #ffffff;
  background: linear-gradient(135deg, var(--aqua), var(--ocean-deep));
  box-shadow: 0 5px 12px rgba(6, 127, 155, 0.23);
}

.date-picker-days button:disabled {
  border-color: transparent;
  color: #bdc8c6;
  background: transparent;
  cursor: not-allowed;
}

.date-picker-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 9px;
  padding-top: 10px;
  border-top: 1px solid #e3eeec;
}

.date-picker-footer button {
  min-height: 36px;
  padding: 7px 10px;
  border: 0;
  border-radius: 9px;
  color: var(--ocean-deep);
  background: transparent;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.date-picker-footer button:hover,
.date-picker-footer button:focus-visible {
  background: var(--mint);
  outline: 0;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 13px;
}

.form-consent input {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin-top: 1px;
  accent-color: var(--ocean);
}

.form-consent a {
  color: var(--ocean-deep);
  text-decoration: underline;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.form-contact-actions .button {
  width: 100%;
  min-height: 54px;
  padding-inline: 14px;
  line-height: 1.25;
}

.form-status {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 13px;
}

.booking-form.has-error .form-status {
  color: #a23d31;
}

.button-whatsapp {
  color: #ffffff;
  background: #159447;
}

.button-telegram {
  color: #ffffff;
  background: #229ed9;
}

.form-contact-hint {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.45;
}

.site-footer {
  padding: 52px 0 24px;
  color: rgba(255, 255, 255, 0.8);
  background: #062f3b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.8fr);
  gap: 34px;
}

.footer-brand .brand-copy strong {
  color: var(--white);
}

.footer-brand .brand-copy span {
  color: rgba(255, 255, 255, 0.62);
}

.footer-about {
  max-width: 340px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-column h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  font-size: 14px;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.assistant-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 17px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--aqua), var(--ocean-deep));
  box-shadow: 0 16px 38px rgba(5, 93, 115, 0.34);
  font-size: 14px;
  font-weight: 850;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.assistant-fab img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: var(--white);
  object-fit: contain;
}

.assistant-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(5, 93, 115, 0.4);
}

.tour-dialog {
  width: min(calc(100% - 28px), 640px);
  max-height: min(780px, calc(100vh - 40px));
  overflow: auto;
  padding: 0;
  border: 0;
  border-radius: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(3, 35, 45, 0.34);
}

.tour-dialog::backdrop {
  background: rgba(3, 35, 45, 0.66);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.dialog-image {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  font-size: 22px;
}

.dialog-body {
  padding: 24px;
}

.dialog-body h2 {
  margin-bottom: 8px;
  font-size: 29px;
}

.dialog-subtitle {
  margin: 0 0 18px;
  color: var(--ink-soft);
}

.price-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--mint);
}

.price-row span {
  color: var(--ink-soft);
  font-size: 13px;
}

.price-row strong {
  flex: 0 0 auto;
  color: var(--ocean-deep);
}

.dialog-note {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.no-js {
  padding: 12px 16px;
  color: #583d00;
  background: #fff0bd;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1180px) {
  .main-nav,
  .header-action {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1fr 400px;
    gap: 28px;
  }

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

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

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

@media (max-width: 820px) {
  .hero {
    padding-top: 28px;
  }

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

  .hero-visual {
    width: min(100%, 560px);
    margin-inline: auto;
    transform: none;
  }

  .hero-visual picture {
    aspect-ratio: 16 / 10;
  }

  .hero-note {
    left: 24px;
    bottom: 24px;
    transform: none;
  }

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

  .plan-grid,
  .guide-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .catalog-layout,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .tour-detail-hero-grid,
  .booking-shell {
    grid-template-columns: 1fr;
  }

  .tour-detail-visual {
    width: min(100%, 660px);
    margin-inline: auto;
    transform: none;
  }

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

  .booking-intro {
    position: static;
  }

  .filter-panel,
  .aside-card {
    position: static;
  }

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

  .filter-reset {
    align-self: end;
  }

  .plan-day {
    grid-template-columns: 72px 200px minmax(0, 1fr);
    gap: 12px;
  }

  .plan-day-media {
    width: 200px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container,
  .narrow {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-copy span {
    display: none;
  }

  h1 {
    font-size: 40px;
  }

  .hero-lead,
  .page-lead {
    font-size: 17px;
  }

  .quick-search {
    grid-template-columns: 1fr;
  }

  .quick-search button {
    width: 100%;
  }

  .hero-visual {
    padding: 8px;
    border-radius: 24px;
  }

  .hero-visual picture {
    border-radius: 18px;
  }

  .hero-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .section,
  .section-tight {
    padding: 52px 0;
  }

  .section-tight {
    padding: 28px 0;
  }

  .section-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-grid,
  .tour-grid,
  .catalog-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .tour-detail-hero {
    padding: 24px 0 40px;
  }

  .tour-detail-copy h1 {
    font-size: 38px;
  }

  .tour-detail-hero-grid {
    gap: 24px;
  }

  .tour-detail-visual {
    padding: 8px;
    border-radius: 23px;
  }

  .tour-detail-media {
    aspect-ratio: 16 / 10;
    border-radius: 17px;
  }

  .tour-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .tour-timeline-item {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 11px;
    padding-bottom: 14px;
  }

  .tour-timeline-item > span {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .tour-timeline::before {
    left: 13px;
  }

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

  .tour-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .tour-quick-grid article {
    padding: 15px;
  }

  .tour-quick-grid article > span {
    margin-bottom: 8px;
    font-size: 21px;
  }

  .highlight-card {
    min-height: 0;
  }

  .booking-shell {
    gap: 30px;
  }

  .booking-card {
    padding: 20px;
    border-radius: 20px;
  }

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

  .category-card {
    min-height: 150px;
  }

  .tour-image {
    aspect-ratio: 16 / 10;
  }

  .filter-panel {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .plan-day {
    grid-template-columns: 1fr;
  }

  .plan-day-media {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .cta-panel {
    padding: 24px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .assistant-fab {
    right: 12px;
    bottom: 12px;
    padding-right: 12px;
  }

  .assistant-fab span:last-child {
    display: none;
  }

  .dialog-body {
    padding: 20px;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .assistant-fab,
  .filter-panel,
  .button,
  .tour-actions {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .page-hero {
    padding: 20px 0;
  }

  .tour-card,
  .plan-day,
  .guide-card {
    break-inside: avoid;
    box-shadow: none;
  }
}
