@charset "UTF-8";
:root {
  /* Base palette (from current project) */
  --bg: #111111;
  --surface: #0d131c;
  --text: #f4f1ea;
  --muted: #b6c0cd;
  --accent: #1db4ca;
  --border: rgba(255, 255, 255, 0.14);
  /* Tilda UI Kit palette */
  --kit-bg: #020305;
  --kit-bg-deep: #070b10;
  --kit-bg-soft: #0b1622;
  --kit-surface: #0d131c;
  --kit-surface-2: #20272f;
  --kit-text: #f2ebdd;
  --kit-text-muted: #8f918d;
  --kit-text-soft: #b9b3a8;
  --kit-gold: #d8b06a;
  --kit-gold-soft: #d8b06a;
  /* Global font stacks */
  --font-body: Arial, 'Manrope', 'Segoe UI', sans-serif;
  --font-heading: Arial, 'Manrope', 'Segoe UI', sans-serif;
  --font-weight-body: 300;
  /* Typography scale from UI kit */
  --fs-xs: 12px;
  --fs-base: 14px;
  --fs-sm: 14px;
  --fs-md: 16px;
  --fs-lg: 18px;
  --fs-xl: 26px;
  --fs-2xl: 34px;
  --fs-3xl: 40px;
  --fs-4xl: 56px;
  /* Radius scale */
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 18px;
  --radius-2xl: 20px;
  --radius-3xl: 24px;
}

@layer generic, components, layouts, pages;
@layer generic {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  html,
  body {
    margin: 0;
    padding: 0;
    overflow-x: clip;
  }
  body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: var(--font-weight-body);
    line-height: 1.5;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  h3 {
    font-size: var(--fs-xl);
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  img {
    display: block;
    max-width: 100%;
  }
  ul,
  ol {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  h1 {
    margin: 0 0 20px;
    font-size: var(--fs-4xl);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--kit-text);
  }
  h2 {
    margin: 0 0 26px;
    font-size: var(--fs-3xl);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--kit-text);
  }
  h3 {
    margin: 0 0 12px;
    font-size: var(--fs-xl);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--kit-text);
  }
  h4 {
    margin: 0 0 8px;
    font-size: var(--fs-md);
    line-height: 1.3;
    font-weight: 600;
    color: var(--kit-text);
  }
  .eyebrow {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--kit-gold);
  }
  .lead {
    font-size: var(--fs-lg);
    line-height: 1.6;
    color: var(--kit-text-soft);
  }
  .text-readable {
    font-size: clamp(17px, 1.15vw, 20px);
    line-height: 1.78;
    letter-spacing: 0.005em;
    color: var(--kit-text-soft);
    text-wrap: pretty;
  }
  .text-readable > * + * {
    margin-top: 1.05em;
  }
  .text-readable h2,
  .text-readable h3,
  .text-readable h4 {
    line-height: 1.22;
    letter-spacing: -0.01em;
    text-wrap: balance;
    margin-top: 1.5em;
  }
  .text-readable h2 {
    font-size: clamp(30px, 2.2vw, 42px);
  }
  .text-readable h3 {
    font-size: clamp(24px, 1.7vw, 32px);
  }
  .text-readable h4 {
    font-size: clamp(20px, 1.35vw, 24px);
  }
  .text-readable a {
    color: var(--kit-gold);
    text-decoration-color: color-mix(in srgb, var(--kit-gold) 60%, transparent);
    text-underline-offset: 0.14em;
  }
  .text-readable ul,
  .text-readable ol {
    padding-left: 1.3em;
  }
  .text-readable li + li {
    margin-top: 0.35em;
  }
}
@layer components {
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 30px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 16px;
  }
  .btn--primary {
    background: #d8b06a;
    color: #111;
  }
  .btn--ghost {
    border-color: rgba(255, 255, 255, 0.36);
    color: #f4f1ea;
    background: rgba(10, 24, 40, 0.35);
  }
  .routes__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
  }
  .route-card {
    position: relative;
    min-height: 0;
    border: 1px solid #263241;
    border-radius: 16px;
    background: #08111c;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }
  .route-card img {
    position: relative;
    width: 100%;
    height: 170px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 16px 16px 0 0;
  }
  .route-card::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    width: 100%;
    height: 250px;
    transform: translateY(-1px);
    background: linear-gradient(180deg, rgba(4, 10, 20, 0.08) 10%, rgba(4, 10, 20, 0.6) 64%, rgba(8, 17, 28, 0) 100%);
    pointer-events: none;
  }
  .route-card__content {
    position: relative;
    z-index: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1 1 auto;
    padding: 14px 16px 16px;
    gap: 0;
  }
  .route-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--kit-text);
  }
  .route-card p {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.5;
    color: #c7c3bb;
    min-height: 84px;
  }
  .route-card a {
    margin-top: auto;
    color: var(--kit-gold);
    font-size: 14px;
    line-height: 1;
  }
  /**
   * Readable prose styles for post/page content across all post types.
   */
  .text-readable blockquote {
    margin: 1.5em 0;
    padding: 0.7em 1em;
    border-left: 3px solid var(--kit-gold);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--kit-text);
  }
  .text-readable img {
    display: block;
    border-radius: var(--radius-md);
  }
  /**
   * Blog card component styles.
   *
   * @see /template-parts/components/blog-card.php
   */
  .blog-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: #0c1420;
    overflow: hidden;
    min-height: 420px;
  }
  .blog-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .blog-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 8, 13, 0.05) 0%, rgba(5, 8, 13, 0.35) 48%, rgba(3, 8, 15, 0.9) 78%, rgba(2, 6, 12, 0.98) 100%), linear-gradient(0deg, rgba(2, 6, 12, 0.98) 0%, rgba(2, 6, 12, 0) 42%);
  }
  .blog-card__link {
    position: absolute;
    inset: 0;
    z-index: 2;
  }
  .blog-card__top,
  .blog-card__body,
  .blog-card__bottom {
    position: relative;
    z-index: 3;
    padding-inline: 20px;
    pointer-events: none;
  }
  .blog-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    color: #d9e1ee;
    font-size: 14px;
  }
  .blog-card__tag {
    background: rgba(17, 22, 29, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: #d9d5ca;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 10px;
  }
  .blog-card__body {
    margin-top: 214px;
  }
  .blog-card__body h3 {
    margin: 0 0 10px;
    font-size: clamp(28px, 2.5vw, 34px);
    line-height: 1.08;
    color: var(--kit-text);
  }
  .blog-card__body p {
    margin: 0;
    color: rgba(232, 237, 245, 0.9);
    font-size: 15px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .blog-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 16px;
  }
  .blog-card__bottom span {
    color: var(--kit-gold);
    font-weight: 600;
  }
  .blog-card__stats {
    display: flex;
    gap: 12px;
    color: #d9e1ee;
    font-size: 14px;
  }
  /**
   * Tour filters component styles.
   *
   * @see /template-parts/components/tour-filters.php
   */
  .tour-filters {
    padding: 0;
    margin-bottom: 26px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: rgba(8, 11, 16, 0.9);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  }
  .tour-filters__tabs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-bottom: 1px solid var(--border);
  }
  .tour-filters__tabs button {
    min-height: 106px;
    border: 0;
    background: transparent;
    color: var(--kit-text-soft);
    font-size: var(--fs-md);
    line-height: 1.35;
    padding: 12px 18px 14px;
    cursor: pointer;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    text-align: left;
  }
  .tour-filters__tabs button.is-active {
    color: var(--kit-gold);
    box-shadow: inset 0 -2px 0 var(--kit-gold);
  }
  .tour-filters__ico {
    color: var(--kit-gold);
    opacity: 0.95;
    transform: translateY(2px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
  }
  .tour-filters__ico img {
    width: 22px;
    height: 22px;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
    filter: brightness(0) saturate(100%) invert(75%) sepia(29%) saturate(636%) hue-rotate(356deg) brightness(91%) contrast(89%);
  }
  .tour-filters__controls {
    display: grid;
    grid-template-columns: 140px repeat(3, 1fr) 160px;
    gap: 12px;
    padding: 16px 18px;
  }
  .tour-filters__controls button,
  .tour-filters__controls a {
    min-height: 48px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(7, 10, 15, 0.84);
    color: var(--kit-text-soft);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    gap: 10px;
  }
  .tour-filters__dropdown {
    position: relative;
  }
  .tour-filters__dropdown-toggle {
    width: 100%;
  }
  .tour-filters__dropdown select {
    display: none;
  }
  .tour-filters__dropdown-menu {
    margin: 6px 0 0;
    padding: 6px;
    list-style: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 20;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(7, 10, 15, 0.98);
    display: none;
  }
  .tour-filters__dropdown.is-open .tour-filters__dropdown-menu {
    display: block;
  }
  .tour-filters__dropdown-item button {
    width: 100%;
    min-height: 38px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--kit-text-soft);
    text-align: left;
    padding: 0 10px;
    cursor: pointer;
  }
  .tour-filters__dropdown-item button:hover,
  .tour-filters__dropdown-item.is-active button {
    background: rgba(255, 255, 255, 0.08);
    color: var(--kit-gold);
  }
  .tour-filters__controls a {
    background: transparent;
    border-color: transparent;
    color: var(--kit-text-muted);
    justify-content: flex-start;
    padding: 0 2px 0 4px;
    min-height: 48px;
  }
  .tour-filters__caret,
  .tour-filters__burger,
  .tour-filters__reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .tour-filters__caret {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
  }
  .tour-filters__burger,
  .tour-filters__reset {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
  }
  .tour-filters__caret img {
    width: 12px;
    height: 12px;
  }
  .tour-filters__burger img,
  .tour-filters__reset img {
    width: 14px;
    height: 14px;
  }
  .tour-filters__caret img,
  .tour-filters__burger img,
  .tour-filters__reset img {
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
    filter: brightness(0) saturate(100%) invert(75%) sepia(29%) saturate(636%) hue-rotate(356deg) brightness(91%) contrast(89%);
  }
  @media (max-width: 1200px) {
    .tour-filters__tabs {
      grid-template-columns: repeat(3, 1fr);
    }
    .tour-filters__controls {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  /**
   * Tour card component styles.
   *
   * @see /template-parts/components/tour-card.php
   */
  .tour-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding-bottom: 2rem;
  }
  .tour-card {
    min-height: 430px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: var(--kit-bg-soft);
  }
  .tour-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .tour-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 3, 5, 0.12) 0%, rgba(2, 3, 5, 0.86) 100%);
  }
  .tour-card__link {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .tour-card__body {
    position: relative;
    z-index: 2;
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    pointer-events: none;
  }
  .tour-card__tag {
    align-self: flex-start;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 11px;
    text-transform: uppercase;
    background: rgba(18, 24, 34, 0.72);
    color: var(--kit-text);
  }
  .tour-card__fav {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    border: 0;
    background: transparent;
    color: var(--kit-text);
    font-size: 26px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    pointer-events: auto;
  }
  .tour-card__content {
    margin-top: auto;
    min-height: 156px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .tour-card h3 {
    margin: 0 0 10px;
    font-size: var(--fs-xl);
    line-height: 1.16;
    font-weight: 500;
    color: var(--kit-text);
    max-width: 14ch;
  }
  .tour-card p {
    margin: 0 0 12px;
    color: var(--kit-text-soft);
    font-size: var(--fs-base);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .tour-card__meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    color: #c3b9a7;
    font-size: 13px;
  }
  .tour-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .tour-card__meta-icon {
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 14px;
  }
  .tour-card__meta-icon img {
    width: 14px;
    height: 14px;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
    filter: brightness(0) saturate(100%) invert(75%) sepia(29%) saturate(636%) hue-rotate(356deg) brightness(91%) contrast(89%);
  }
  .tour-card__meta strong {
    margin-left: auto;
    color: var(--kit-gold);
    font-size: var(--fs-md);
  }
  @media (max-width: 1200px) {
    .tour-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 800px) {
    .tour-cards {
      grid-template-columns: 1fr;
    }
  }
  .back-to-top {
    position: fixed;
    right: clamp(14px, 2vw, 24px);
    bottom: clamp(14px, 2.2vw, 26px);
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(216, 176, 106, 0.45);
    background: rgba(7, 15, 24, 0.88);
    color: var(--kit-gold);
    display: grid;
    place-items: center;
    font-size: 22px;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background-color 0.2s ease;
    pointer-events: none;
    z-index: 80;
  }
  .back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .back-to-top:hover {
    background: rgba(18, 30, 45, 0.95);
  }
  .back-to-top:disabled {
    pointer-events: none;
  }
}
@layer layouts {
  .container {
    width: min(1200px, 100% - 64px);
    margin-inline: auto;
  }
  .site-main {
    padding: 0;
  }
  /* Use on templates rendered below fixed/sticky header. */
  .site-main--header-offset {
    padding-top: 108px;
  }
  @media (max-width: 768px) {
    .site-main--header-offset {
      padding-top: 88px;
    }
  }
  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 40;
    background: linear-gradient(180deg, #111111 0%, rgba(17, 17, 17, 0) 100%);
    backdrop-filter: blur(0);
    transition: background-color 0.7s ease, backdrop-filter 0.7s ease, box-shadow 0.7s ease;
  }
  .site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
  }
  .site-header--stuck {
    position: fixed;
    background: none;
    background-color: #111111;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  }
  .site-header--stuck::after {
    opacity: 1;
  }
  body.admin-bar .site-header {
    top: 32px;
  }
  @media (max-width: 782px) {
    body.admin-bar .site-header {
      top: 31px;
    }
  }
  @media (max-width: 900px) {
    body.admin-bar .site-header {
      top: 46px;
    }
  }
  .site-header__row {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: nowrap;
  }
  @media (max-width: 980px) {
    .site-header__row {
      min-height: 78px;
      gap: 12px;
    }
  }
  .site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .site-brand__logo {
    width: 64px;
    height: auto;
  }
  .site-brand__text {
    display: inline-flex;
    flex-direction: column;
    line-height: 0.95;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.03em;
    color: #f2ebdd;
  }
  @media (max-width: 980px) {
    .site-brand__text {
      display: none;
    }
  }
  .primary-nav {
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 980px) {
    .primary-nav {
      margin-right: 0;
      position: relative;
    }
  }
  .primary-nav__list {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 16px;
  }
  @media (max-width: 1150px) {
    .primary-nav__list {
      gap: 18px;
      font-size: 15px;
    }
  }
  @media (max-width: 980px) {
    .primary-nav__list {
      display: none;
      position: absolute;
      right: 0;
      top: calc(100% + 12px);
      width: 240px;
      padding: 14px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: #091a2d;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  }
  .primary-nav__list a {
    color: #e6dfd2;
  }
  .site-header__actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }
  .site-header__socials {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  @media (max-width: 980px) {
    .site-header__socials {
      display: none;
    }
  }
  .site-header__socials a {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid #d8b06a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #f2ebdd;
  }
  .site-header__socials img {
    width: 16px;
    height: 16px;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
    filter: brightness(0) saturate(100%) invert(75%) sepia(29%) saturate(636%) hue-rotate(356deg) brightness(91%) contrast(89%);
  }
  .site-header__cta {
    min-height: 48px;
    min-width: 210px;
    padding-inline: 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
  }
  @media (max-width: 1150px) {
    .site-header__cta {
      min-width: 180px;
      font-size: 14px;
    }
  }
  @media (max-width: 980px) {
    .site-header__cta {
      display: none;
    }
  }
  .primary-nav__toggle {
    display: none;
  }
  @media (max-width: 980px) {
    .primary-nav__toggle {
      display: inline-flex;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 8px;
      background: transparent;
      color: #fff;
      align-items: center;
      justify-content: center;
    }
  }
  @media (max-width: 980px) {
    .primary-nav.is-open .primary-nav__list {
      display: flex;
    }
  }
  .site-footer {
    padding: 28px 0 22px;
    background: #111111;
  }
  .site-footer__top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 0.9fr;
    gap: 34px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .site-footer__brand {
    max-width: 270px;
  }
  .site-footer__logo img {
    width: 44px;
    height: 44px;
  }
  .site-footer__brand-title {
    margin: 10px 0 16px;
    font-size: 30px;
    line-height: 0.94;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #f2ebdd;
  }
  .site-footer__brand p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #d2cbc0;
  }
  .site-footer__nav h3,
  .site-footer__socials h3 {
    margin: 8px 0 14px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #f2ebdd;
  }
  .site-footer__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .site-footer__nav a {
    font-size: 14px;
    line-height: 1.35;
    color: #d2cbc0;
  }
  .site-footer__social-list {
    display: flex;
    gap: 10px;
  }
  .site-footer__social-list a {
    width: 36px;
    height: 36px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #d8b06a;
    color: #d8b06a;
  }
  .site-footer__social-list img {
    width: 22px;
    height: 22px;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
    filter: brightness(0) saturate(100%) invert(75%) sepia(29%) saturate(636%) hue-rotate(356deg) brightness(91%) contrast(89%);
  }
  .site-footer__bottom {
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .site-footer__bottom p {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: #c8c1b4;
  }
  .site-footer__legal {
    display: flex;
    gap: 28px;
  }
  .site-footer__legal a {
    font-size: 12px;
    line-height: 1.4;
    color: #c8c1b4;
  }
  @media (max-width: 860px) {
    .site-footer {
      padding: 24px 0 18px;
    }
    .site-footer__top {
      grid-template-columns: 1fr;
      gap: 18px;
      padding-bottom: 18px;
    }
    .site-footer__brand-title {
      font-size: 36px;
    }
    .site-footer__brand p,
    .site-footer__nav a {
      font-size: 14px;
    }
    .site-footer__nav h3,
    .site-footer__socials h3 {
      margin: 0 0 8px;
      font-size: 18px;
    }
    .site-footer__bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
    .site-footer__legal {
      gap: 14px;
      flex-wrap: wrap;
    }
  }
}
@layer pages {
  .home .guides {
    background: var(--kit-bg) linear-gradient(0turn, var(--kit-bg) 0%, #111111 100%);
    padding-bottom: 76px;
  }
  .home .routes-map {
    background: var(--kit-bg);
  }
  .home .routes-criteria {
    background-image: linear-gradient(0turn, var(--kit-bg-deep) 0%, var(--kit-bg) 100%);
  }
  .home .routes-catalog,
  .home .media,
  .home .final {
    background: var(--kit-bg-deep);
  }
  .home .shops {
    background: linear-gradient(180deg, var(--kit-bg-deep) 0%, var(--kit-bg-deep) 72%, #111111 100%);
    padding-bottom: 28px;
  }
  .home .guides,
  .home .routes-map,
  .home .routes-catalog,
  .home .media,
  .home .shops {
    padding-top: 76px;
  }
  .home .person-card,
  .home .route-card,
  .home .glass-card,
  .home .shop-card,
  .home .final__contact {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(14, 28, 46, 0.55);
    overflow: hidden;
  }
  @media (max-width: 900px) {
    .home .container {
      width: min(1240px, 100% - 32px);
    }
  }
  .home .hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 96px;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
  }
  @media (max-width: 1200px) {
    .home .hero {
      padding-top: 88px;
    }
  }
  @media (max-width: 900px) {
    .home .hero {
      min-height: 100vh;
      min-height: 100svh;
      padding-top: 82px;
    }
  }
  @media (max-width: 620px) {
    .home .hero {
      padding-top: 74px;
    }
  }
  .home .hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    filter: brightness(0.6);
  }
  .home .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 3, 5, 0.74) 0%, rgba(2, 3, 5, 0.38) 22%, rgba(2, 3, 5, 0.06) 45%, rgba(2, 3, 5, 0) 62%), linear-gradient(180deg, rgba(2, 3, 5, 0.18) 52%, rgba(2, 3, 5, 0.72) 78%, #101010 94%, #111111 100%);
  }
  .home .hero__content,
  .home .hero__features {
    position: relative;
    z-index: 1;
  }
  .home .hero__content {
    padding: clamp(30px, 5.5vh, 64px) 0;
    margin: 0 auto;
    text-align: left;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(18px, 2.8vh, 34px);
  }
  @media (max-width: 1200px) {
    .home .hero__content {
      min-height: clamp(340px, 45vh, 460px);
      padding: 26px 0 20px;
    }
  }
  @media (max-width: 900px) {
    .home .hero__content {
      min-height: auto;
      padding: 20px 0 14px;
      gap: 18px;
    }
  }
  @media (max-width: 620px) {
    .home .hero__content {
      padding: 18px 0 12px;
      gap: 14px;
    }
  }
  .home .hero__eyebrow {
    margin: 0 0 4px;
    color: #d8b06a;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .home .hero h1 {
    margin: 0;
    font-size: clamp(56px, 6.6vw, 96px);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #f2ebdd;
    max-width: 11.5ch;
    text-wrap: balance;
  }
  @media (max-width: 1200px) {
    .home .hero h1 {
      font-size: clamp(48px, 7vw, 68px);
    }
  }
  @media (max-width: 900px) {
    .home .hero h1 {
      font-size: clamp(40px, 9.5vw, 52px);
      line-height: 0.98;
    }
  }
  @media (max-width: 620px) {
    .home .hero h1 {
      font-size: clamp(32px, 11.5vw, 40px);
    }
  }
  .home .hero__title-break {
    display: block;
  }
  .home .hero__lead {
    margin: 0;
    font-size: clamp(19px, 1.8vw, 22px);
    line-height: 1.55;
    max-width: 46ch;
    color: #cfd6df;
  }
  @media (max-width: 1200px) {
    .home .hero__lead {
      font-size: clamp(18px, 2vw, 21px);
      max-width: 46ch;
    }
  }
  @media (max-width: 900px) {
    .home .hero__lead {
      font-size: 16px;
      line-height: 1.5;
      max-width: 30ch;
    }
  }
  @media (max-width: 620px) {
    .home .hero__lead {
      font-size: 15px;
      max-width: 28ch;
    }
  }
  .home .hero__actions {
    margin-top: 0;
    display: flex;
    gap: 14px;
  }
  @media (max-width: 900px) {
    .home .hero__actions {
      flex-direction: column;
      gap: 10px;
    }
  }
  .home .hero__actions .btn {
    min-height: 54px;
    min-width: 252px;
    padding: 0 28px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
  }
  @media (max-width: 1200px) {
    .home .hero__actions .btn {
      min-width: 220px;
      font-size: 16px;
    }
  }
  @media (max-width: 900px) {
    .home .hero__actions .btn {
      width: 100%;
      min-width: 0;
      min-height: 46px;
      font-size: 16px;
    }
  }
  .home .hero__actions .btn--primary {
    background: #d2aa71;
    border-color: #cfa566;
    color: #2b1f11;
    box-shadow: 0 8px 20px rgba(3, 2, 1, 0.26);
  }
  .home .hero__actions .btn--ghost {
    border-color: rgba(216, 176, 106, 0.85);
    color: #f2ebdd;
    background: rgba(8, 17, 28, 0.22);
    backdrop-filter: blur(4px);
  }
  .home .hero__features {
    display: flex;
    flex-wrap: nowrap;
    background: linear-gradient(90deg, rgba(216, 176, 106, 0) 0%, rgba(216, 176, 106, 0.38) 50%, rgba(216, 176, 106, 0) 100%) top/100% 1px no-repeat, linear-gradient(90deg, rgba(216, 176, 106, 0) 0%, rgba(216, 176, 106, 0.38) 50%, rgba(216, 176, 106, 0) 100%) bottom/100% 1px no-repeat;
  }
  @media (max-width: 900px) {
    .home .hero__features {
      display: flex;
      flex-wrap: wrap;
    }
  }
  .home .chip {
    flex: 0 0 25%;
    padding: 16px 18px;
    font-size: 18px;
    color: #e0ddd5;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.3;
  }
  @media (max-width: 900px) {
    .home .chip {
      flex: 0 0 50%;
      padding: 14px 12px;
      font-size: 14px;
      gap: 10px;
    }
  }
  @media (max-width: 620px) {
    .home .chip {
      flex-basis: 100%;
      padding: 12px 10px;
      font-size: 13px;
      gap: 9px;
    }
  }
  .home .chip__icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }
  @media (max-width: 900px) {
    .home .chip__icon {
      width: 24px;
      height: 24px;
    }
  }
  @media (max-width: 620px) {
    .home .chip__icon {
      width: 22px;
      height: 22px;
    }
  }
  .home .guides > .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
  }
  @media (max-width: 1200px) {
    .home .guides > .container {
      grid-template-columns: 1fr;
    }
  }
  .home .guides__lead {
    height: 100%;
  }
  .home .guides__eyebrow {
    margin: 0 0 5px;
    color: var(--kit-gold) !important;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.035em;
    text-transform: uppercase;
  }
  @media (max-width: 620px) {
    .home .guides__eyebrow {
      font-size: 16px;
    }
  }
  .home .guides__lead p {
    margin: 0 0 22px;
    color: #d4cec1;
    font-size: 18px;
    line-height: 1.7;
    max-width: 710px;
  }
  @media (max-width: 1200px) {
    .home .guides__lead p {
      font-size: 16px;
      line-height: 1.6;
    }
  }
  @media (max-width: 620px) {
    .home .guides__lead p {
      font-size: 14px;
    }
  }
  .home .guides__lead p:last-child {
    margin-bottom: 0;
  }
  .home .guides__cards {
    display: grid;
    gap: 14px;
  }
  .home .person-card {
    position: relative;
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 24px;
    height: 240px;
    align-items: stretch;
  }
  @media (max-width: 1200px) {
    .home .person-card {
      grid-template-columns: 190px 1fr;
    }
  }
  @media (max-width: 900px) {
    .home .person-card {
      grid-template-columns: 1fr;
      height: auto;
    }
  }
  .home .person-card--wide {
    border: 1px solid #263241;
    border-radius: 16px;
    background: #0d131c;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    overflow: hidden;
  }
  .home .person-card img {
    width: 100%;
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center 24%;
       object-position: center 24%;
    border-radius: 16px 0 0 16px;
    margin: 0;
  }
  @media (max-width: 900px) {
    .home .person-card img {
      margin: 0;
      height: 220px;
      border-radius: 20px 20px 0 0;
    }
  }
  .home .person-card > div {
    padding: 8px 8px 8px 0;
    align-self: center;
  }
  @media (max-width: 900px) {
    .home .person-card > div {
      padding: 14px 16px 16px;
    }
  }
  .home .person-card h3 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.12;
    color: #f2ebdd;
  }
  @media (max-width: 1200px) {
    .home .person-card h3 {
      font-size: 26px;
    }
  }
  .home .person-card__role {
    margin: 0 0 8px;
    color: var(--kit-gold) !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-transform: uppercase;
  }
  @media (max-width: 1200px) {
    .home .person-card__role {
      font-size: 12px;
    }
  }
  .home .guides .guides__eyebrow,
  .home .guides .person-card__role {
    color: #d8b06a !important;
  }
  .home .person-card p {
    margin: 0;
    color: #d4cec1;
    font-size: 14px;
    line-height: 1.6;
  }
  @media (max-width: 1200px) {
    .home .person-card p {
      font-size: 14px;
    }
  }
  @media (max-width: 620px) {
    .home .person-card p {
      font-size: 14px;
    }
  }
  .home .routes-map {
    position: relative;
    z-index: 0;
    isolation: isolate;
    overflow-x: clip;
    background: var(--kit-bg);
  }
  .home .routes-map > * {
    position: relative;
    z-index: 1;
  }
  .home .routes-map::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 100vw;
    height: 140px;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, var(--kit-bg) 0%, rgba(2, 3, 5, 0) 100%);
  }
  .home .routes-map::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100vw;
    height: 170px;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(2, 3, 5, 0) 0%, var(--kit-bg) 100%);
  }
  .home .routes__grid {
    margin-top: 28px;
  }
  @media (max-width: 1200px) {
    .home .routes__grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  @media (max-width: 900px) {
    .home .routes__grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 620px) {
    .home .routes__grid {
      grid-template-columns: 1fr;
    }
  }
  .home .routes__all {
    margin-top: 44px;
    text-align: center;
  }
  .home .routes__lead {
    margin: 0;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.5;
    color: #ded6c9;
  }
  .home .route-map-parent-all {
    margin-top: 34px;
    position: relative !important;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    isolation: isolate;
    margin-bottom: -1px;
  }
  .home .route-map-parent-all::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image: radial-gradient(circle at center, rgba(2, 3, 5, 0) 40%, rgba(2, 3, 5, 0.5) 76%, rgba(2, 3, 5, 0.96) 100%);
  }
  .home .route-map-image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .home .route-criteria {
    position: relative;
    margin-top: -2px;
    padding: 28px 0 54px;
    background: transparent;
    border-top: 0;
  }
  .home .route-criteria__note {
    margin: -42px 0 26px;
    padding-left: 4px;
    position: relative;
    z-index: 4;
    font-size: 16px;
    line-height: 1.4;
    color: rgba(185, 179, 168, 0.9);
  }
  .home .route-criteria__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding-top: 40px;
  }
  .home .route-criteria__col h3 {
    margin: 0 0 22px;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 700;
    color: #f2ebdd;
  }
  .home .route-criteria__col ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 18px;
  }
  .home .route-criteria__col li {
    position: relative;
    margin: 0;
    padding-left: 28px;
    font-size: 16px;
    line-height: 1.65;
    color: #d2cbc0;
  }
  .home .route-criteria__col li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    color: #d8b06a;
    font-size: 24px;
    line-height: 1;
  }
  .home .route-criteria__col--negative li::before {
    content: "×";
    top: 0;
    font-size: 34px;
  }
  .home .route-map-copy {
    position: absolute;
    top: 58px;
    left: 24px;
    z-index: 4;
    max-width: 600px;
  }
  .home .route-map-copy--mobile {
    display: none;
    position: static;
    inset: auto;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .home .route-map-copy--desktop {
    display: block;
  }
  .home .route-map-copy h3 {
    margin: 0 0 18px;
    font-size: 1.7vw !important;
    line-height: 1.2;
    font-weight: 600;
    color: #f2ebdd;
  }
  .home .route-map-copy p {
    margin: 0;
    font-size: clamp(12px, 0.9vw, 16px);
    line-height: 1.6;
    color: #c7c3bb;
  }
  .home .route-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
  }
  .home .route-point {
    position: absolute;
    width: 27px !important;
    height: 27px !important;
    min-width: 27px !important;
    min-height: 27px !important;
    max-width: 27px !important;
    max-height: 27px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1.5px solid #d8b06a !important;
    border-radius: 50% !important;
    background: rgba(216, 176, 106, 0.14) !important;
    box-shadow: 0 0 18px rgba(216, 176, 106, 0.65);
    cursor: pointer;
    transform: translate(-50%, -50%);
    z-index: 5;
    pointer-events: auto;
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
  }
  .home .route-point span {
    position: absolute;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50%;
    background: #d8b06a;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .home .route-point::after {
    content: "";
    position: absolute;
    inset: -9px;
    border: 1px solid rgba(216, 176, 106, 0.35);
    border-radius: 50%;
    animation: route-pulse 2.2s infinite ease-out;
  }
  .home .point-1 {
    left: 20%;
    top: 66.6%;
  }
  .home .point-2 {
    left: 35.6%;
    top: 45.9%;
  }
  .home .point-3 {
    left: 42.4%;
    top: 67.7%;
  }
  .home .point-4 {
    left: 50.9%;
    top: 56.2%;
  }
  .home .point-5 {
    left: 51.3%;
    top: 28.5%;
  }
  .home .point-6 {
    left: 82.4%;
    top: 70.3%;
  }
  .home .route-tooltip {
    position: absolute;
    width: 280px;
    background: rgba(13, 19, 28, 0.96);
    border: 1px solid rgba(216, 176, 106, 0.45);
    border-radius: 18px;
    padding: 12px;
    display: none;
    gap: 12px;
    z-index: 20;
    pointer-events: none;
  }
  .home .route-tooltip.is-visible {
    display: flex;
  }
  .home .route-tooltip img {
    width: 92px;
    height: 84px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 12px;
  }
  .home .route-tooltip h4 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #f2ebdd;
  }
  .home .route-tooltip p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #b9b3a8;
  }
  @media (max-width: 900px) {
    .home .route-card {
      min-height: 360px;
    }
  }
  @media (max-width: 900px) {
    .home .route-map-parent-all .route-map-copy {
      display: none !important;
    }
    .home .route-map-copy--desktop {
      display: none !important;
    }
    .home .route-map-copy--mobile {
      display: block !important;
      max-width: 100%;
      margin: 0 0 12px;
    }
    .home .route-map-copy--mobile h3 {
      margin: 0 0 12px;
      font-size: clamp(18px, 5.8vw, 26px);
      line-height: 1.16;
      font-weight: 600;
      color: #f2ebdd;
      overflow-wrap: anywhere;
    }
    .home .route-map-copy--mobile p {
      margin: 0;
      font-size: 13px;
      line-height: 1.5;
      color: #c7c3bb;
      overflow-wrap: anywhere;
    }
    .home .route-map-parent-all {
      margin-top: 0;
    }
    .home .route-point {
      width: 21px !important;
      height: 21px !important;
      min-width: 21px !important;
      min-height: 21px !important;
      max-width: 21px !important;
      max-height: 21px !important;
    }
    .home .route-point span {
      width: 6px !important;
      height: 6px !important;
    }
    .home .route-point::after {
      inset: -6px;
    }
    .home .point-1 {
      left: 20.6%;
      top: 69%;
    }
    .home .point-2 {
      left: 37.1%;
      top: 45.5%;
    }
    .home .point-3 {
      left: 43.8%;
      top: 70%;
    }
    .home .point-4 {
      left: 52.1%;
      top: 58%;
    }
    .home .point-5 {
      left: 52.4%;
      top: 30%;
    }
    .home .point-6 {
      left: 82%;
      top: 72%;
    }
    .home .route-criteria__note {
      margin-top: -28px;
      margin-bottom: 20px;
      font-size: 13px;
    }
    .home .route-criteria {
      padding: 20px 0 40px;
    }
    .home .route-criteria__grid {
      grid-template-columns: 1fr;
      gap: 34px;
      padding-top: 24px;
    }
    .home .route-criteria__col h3 {
      font-size: 30px;
    }
  }
  @keyframes route-pulse {
    0% {
      opacity: 0.8;
      transform: scale(0.8);
    }
    100% {
      opacity: 0;
      transform: scale(1.8);
    }
  }
  .home .media > .container {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 16px;
  }
  @media (max-width: 900px) {
    .home .media > .container {
      grid-template-columns: 1fr;
    }
  }
  .home .glass-card {
    padding: 34px 32px 30px;
    border: 1px solid #263241;
    border-radius: 16px;
    background: #0d131c;
  }
  .home .media__title {
    font-size: 32px;
  }
  .home .media p {
    color: #d2cbc0;
    font-size: 14px;
    line-height: 1.45;
  }
  .home .media__blog {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 148px;
    gap: 28px;
    align-items: stretch;
  }
  .home .media__blog-content {
    display: flex;
    flex-direction: column;
  }
  .home .media__blog-content p {
    margin: 0 0 20px;
    max-width: 360px;
  }
  .home .media__blog-link {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
    color: #d8b06a;
  }
  .home .media__telegram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 10px;
    background: #27aae1;
    color: #03131f;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
    margin-top: auto;
  }
  .home .media__telegram-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
  }
  .home .media__author {
    width: 148px;
    height: 208px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 999px;
    align-self: center;
    margin-top: 0;
    transform: none;
  }
  .home .media__courses {
    display: flex;
    flex-direction: column;
  }
  .home .mini-courses {
    margin: 20px 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
  }
  @media (max-width: 620px) {
    .home .mini-courses {
      grid-template-columns: 1fr;
    }
  }
  .home .mini-course {
    display: grid;
    grid-template-columns: 134px 1fr;
    border: 1px solid #263241;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(8, 18, 30, 0.88);
    min-height: 128px;
    height: 100%;
  }
  @media (max-width: 620px) {
    .home .mini-course {
      grid-template-columns: 1fr;
    }
  }
  .home .mini-course img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .home .mini-course > div {
    padding: 8px 12px 10px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
  .home .mini-course h3 {
    margin: 0 0 4px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: #f2ebdd;
  }
  .home .mini-course p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.45;
    color: #d2cbc0;
  }
  .home .mini-course a {
    margin-top: auto;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
    color: #d8b06a;
  }
  .home .media__courses-btn {
    min-width: 200px;
    min-height: 46px;
    align-self: center;
    margin-top: auto;
  }
  .home .shops__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  @media (max-width: 900px) {
    .home .shops__grid {
      grid-template-columns: 1fr;
    }
  }
  .home .shop-card {
    min-height: 260px;
    background-size: cover;
    background-position: center bottom;
    position: relative;
    border: 1px solid #2c3949;
  }
  .home .shop-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #111111 0%, rgba(17, 17, 17, 0.72) 40%, rgba(17, 17, 17, 0) 100%);
  }
  .home .shop-card > div {
    position: relative;
    z-index: 1;
    max-width: 52%;
    padding: 26px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }
  @media (max-width: 620px) {
    .home .shop-card > div {
      max-width: 100%;
    }
  }
  .home .shop__title {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #f2ebdd;
  }
  .home .shop-card p {
    margin: 0 0 14px;
    color: #d2cbc0;
    font-size: 14px;
    line-height: 1.45;
  }
  .home .shop-card a {
    margin-top: auto;
    color: #d8b06a;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
  }
  .home .final {
    margin-top: 24px;
    padding: 5% 0 54px;
    background-size: cover;
    background-position: center top 20%;
    position: relative;
  }
  .home .final::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.6);
    pointer-events: none;
  }
  .home .final__row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 20px;
    align-items: center;
  }
  @media (max-width: 900px) {
    .home .final__row {
      grid-template-columns: 1fr;
    }
  }
  .home .final__title {
    font-size: 32px;
  }
  .home .final > .container > div > p {
    margin: 0;
    max-width: 690px;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(242, 235, 221, 0.9);
  }
  .home .final__contact {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    justify-self: end;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .home .final__contact .btn {
    min-height: 46px;
    min-width: 180px;
    padding: 0 22px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
  }
  .home .final__contact p {
    margin: 0 0 6px;
    font-size: 14px;
    line-height: 1.35;
    color: #d9d0c0;
  }
  @media (max-width: 900px) {
    .home .final > .container > div > p {
      font-size: 14px;
    }
  }
  .page-template-page-blog {
    background: linear-gradient(180deg, #070b10 0%, #020305 100%);
  }
  .page-template-page-blog .hero {
    padding: 96px 0 32px;
  }
  .page-template-page-blog .hero__inner {
    max-width: 900px;
  }
  .page-template-page-blog .hero__eyebrow {
    margin: 0 0 10px;
    color: var(--kit-gold);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .page-template-page-blog .hero h1 {
    margin: 0 0 18px;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.04;
  }
  .page-template-page-blog .hero__lead {
    margin: 0;
    max-width: 760px;
    color: #c3ccda;
    font-size: clamp(16px, 2.1vw, 20px);
    line-height: 1.6;
  }
  .page-template-page-blog .tabs {
    padding: 0 0 28px;
  }
  .page-template-page-blog .tabs__panel {
    align-items: center;
    background: #111317;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    gap: 14px;
    min-height: 54px;
    padding: 6px 10px;
  }
  .page-template-page-blog .tabs__list {
    align-items: center;
    display: flex;
    flex: 1;
    gap: 6px;
    min-width: 0;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .page-template-page-blog .tabs__list::-webkit-scrollbar {
    height: 4px;
  }
  .page-template-page-blog .tabs__list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
  }
  .page-template-page-blog .tabs__item {
    border-bottom: 2px solid transparent;
    color: rgba(242, 235, 221, 0.72);
    display: inline-flex;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 12px 14px;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
  }
  .page-template-page-blog .tabs__item:hover,
  .page-template-page-blog .tabs__item:focus-visible {
    color: #f2ebdd;
  }
  .page-template-page-blog .tabs__item.is-active {
    border-bottom-color: #d8b06a;
    color: #f2ebdd;
  }
  .page-template-page-blog .tabs__search {
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex: 0 0 320px;
    min-width: 260px;
    padding-left: 14px;
  }
  .page-template-page-blog .tabs__search-input {
    background: transparent;
    border: 0;
    color: #f2ebdd;
    flex: 1;
    font-size: 16px;
    line-height: 1.2;
    outline: none;
    padding: 8px 0;
  }
  .page-template-page-blog .tabs__search-input::-moz-placeholder {
    color: rgba(242, 235, 221, 0.42);
  }
  .page-template-page-blog .tabs__search-input::placeholder {
    color: rgba(242, 235, 221, 0.42);
  }
  .page-template-page-blog .tabs__search-button {
    align-items: center;
    background: transparent;
    border: 0;
    color: rgba(242, 235, 221, 0.62);
    cursor: pointer;
    display: inline-flex;
    font-size: 20px;
    justify-content: center;
    min-height: 40px;
    min-width: 40px;
    padding: 0;
  }
  .page-template-page-blog .tabs__search-button:hover,
  .page-template-page-blog .tabs__search-button:focus-visible {
    color: #f2ebdd;
  }
  @media (max-width: 900px) {
    .page-template-page-blog .tabs__panel {
      align-items: stretch;
      flex-direction: column;
      gap: 8px;
      padding: 10px;
    }
    .page-template-page-blog .tabs__search {
      border-left: 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      flex: initial;
      min-width: 0;
      padding-left: 0;
      padding-top: 8px;
      width: 100%;
    }
  }
  .page-template-page-blog .content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    padding-bottom: 56px;
    align-items: start;
  }
  .page-template-page-blog .blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
  }
  .page-template-page-blog .sidebar {
    display: grid;
    gap: 18px;
    align-content: start;
  }
  .page-template-page-blog .widget {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(12, 20, 32, 0.82);
    padding: 20px;
  }
  .page-template-page-blog .widget h3 {
    margin: 0 0 12px;
    font-size: 22px;
  }
  .page-template-page-blog .widget p {
    margin: 0 0 14px;
    color: #c3ccda;
  }
  .page-template-page-blog .widget input {
    width: 100%;
    min-height: 46px;
    margin-bottom: 12px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 10px;
    background: rgba(6, 10, 16, 0.7);
    color: #f2ebdd;
  }
  .page-template-page-blog .widget__about {
    width: 100%;
    border-radius: 12px;
    display: block;
  }
  .page-template-page-blog .btn--full {
    width: 100%;
  }
  .page-template-page-blog .blog-pagination {
    grid-column: 1;
  }
  .page-template-page-blog .blog-pagination .page-numbers {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
  }
  .page-template-page-blog .blog-pagination a,
  .page-template-page-blog .blog-pagination span {
    min-width: 38px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #f2ebdd;
    background: rgba(255, 255, 255, 0.02);
  }
  .page-template-page-blog .blog-pagination .current {
    background: #d8b06a;
    color: #111;
    border-color: #d8b06a;
  }
  .page-template-page-blog .cta {
    margin-bottom: 72px;
    border: 1px solid rgba(216, 176, 106, 0.3);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(216, 176, 106, 0.14) 0%, rgba(12, 20, 32, 0.95) 100%);
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }
  .page-template-page-blog .cta h2 {
    max-width: 760px;
  }
  @media (max-width: 1024px) {
    .page-template-page-blog .content {
      grid-template-columns: 1fr;
    }
    .page-template-page-blog .blog-cards-grid {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 768px) {
    .page-template-page-blog .hero {
      padding-top: 76px;
    }
    .page-template-page-blog .cta {
      flex-direction: column;
      align-items: flex-start;
    }
    .page-template-page-blog .blog-card {
      min-height: 540px;
    }
    .page-template-page-blog .blog-card__body {
      margin-top: 250px;
    }
  }
  .page-template-page-about {
    background: linear-gradient(180deg, #070b10 0%, #020305 100%);
  }
  .page-template-page-about .hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .page-template-page-about .hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
  }
  .page-template-page-about .hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 6, 12, 0.94) 0%, rgba(3, 6, 12, 0.72) 48%, rgba(3, 6, 12, 0.2) 100%);
    z-index: 1;
  }
  .page-template-page-about .hero__content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 88px;
    max-width: 680px;
  }
  .page-template-page-about .hero__eyebrow {
    margin: 0 0 20px;
    color: var(--kit-gold);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .page-template-page-about .hero h1 {
    margin: 0 0 22px;
    font-size: clamp(36px, 5.5vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.02em;
  }
  .page-template-page-about .hero__lead {
    margin: 0 0 36px;
    max-width: 540px;
    color: #c3ccda;
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.65;
  }
  .page-template-page-about .hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }
  .page-template-page-about .hero__video {
    gap: 8px;
  }
  .page-template-page-about .founders {
    padding: 72px 0;
  }
  .page-template-page-about .founders > .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .page-template-page-about .founder-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    background: #0d131c;
    overflow: hidden;
  }
  .page-template-page-about .founder-card__photo-wrap {
    height: 300px;
    overflow: hidden;
  }
  .page-template-page-about .founder-card__photo {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center 20%;
       object-position: center 20%;
    display: block;
    transition: transform 0.5s ease;
  }
  .page-template-page-about .founder-card:hover .founder-card__photo {
    transform: scale(1.04);
  }
  .page-template-page-about .founder-card__body {
    padding: 24px 28px 30px;
  }
  .page-template-page-about .founder-card__name {
    margin: 0 0 6px;
    font-size: 26px;
    font-weight: 800;
    color: #f2ebdd;
    line-height: 1.1;
  }
  .page-template-page-about .founder-card__role {
    margin: 0 0 14px;
    color: var(--kit-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .page-template-page-about .founder-card__bio {
    margin: 0 0 18px;
    color: #c3ccda;
    font-size: 14px;
    line-height: 1.65;
  }
  .page-template-page-about .founder-card__facts {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 9px;
  }
  .page-template-page-about .founder-card__facts li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #d4cec1;
    font-size: 13px;
    line-height: 1.5;
  }
  .page-template-page-about .founder-card__facts li::before {
    content: "";
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 1px;
    border-radius: 50%;
    background-color: rgba(216, 176, 106, 0.12);
    border: 1px solid rgba(216, 176, 106, 0.38);
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3l2 2 4-4' stroke='%23d8b06a' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
  }
  .page-template-page-about .founder-card__link {
    color: var(--kit-gold);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .page-template-page-about .founder-card__link:hover {
    opacity: 0.72;
  }
  .page-template-page-about .values {
    padding: 56px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .page-template-page-about .values__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
  }
  .page-template-page-about .value {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .page-template-page-about .value__icon {
    color: var(--kit-gold);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }
  .page-template-page-about .value__title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #f2ebdd;
    line-height: 1.3;
  }
  .page-template-page-about .value__text {
    margin: 0;
    color: #8f918d;
    font-size: 13px;
    line-height: 1.6;
  }
  .page-template-page-about .philosophy {
    padding: 80px 0;
  }
  .page-template-page-about .philosophy__inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
  }
  .page-template-page-about .philosophy__eyebrow {
    margin: 0 0 14px;
  }
  .page-template-page-about .philosophy__text p {
    margin: 0 0 18px;
    color: #c3ccda;
    font-size: 15px;
    line-height: 1.7;
  }
  .page-template-page-about .philosophy__text .btn {
    margin-top: 10px;
  }
  .page-template-page-about .stats {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .page-template-page-about .stat {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }
  .page-template-page-about .stat:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }
  .page-template-page-about .stat__num {
    flex-shrink: 0;
    min-width: 80px;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    color: var(--kit-gold);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .page-template-page-about .stat__label {
    color: #c3ccda;
    font-size: 14px;
    line-height: 1.45;
  }
  .page-template-page-about .team {
    padding: 72px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
  .page-template-page-about .team__head {
    margin-bottom: 40px;
  }
  .page-template-page-about .team__eyebrow {
    margin: 0 0 12px;
  }
  .page-template-page-about .team__head h2 {
    max-width: 560px;
  }
  .page-template-page-about .team__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }
  .page-template-page-about .team-card {
    display: flex;
    flex-direction: column;
  }
  .page-template-page-about .team-card__photo-wrap {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 14px;
  }
  .page-template-page-about .team-card__photo {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  .page-template-page-about .team-card:hover .team-card__photo {
    transform: scale(1.06);
  }
  .page-template-page-about .team-card__name {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 700;
    color: #f2ebdd;
  }
  .page-template-page-about .team-card__role {
    margin: 0;
    color: var(--kit-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .page-template-page-about .team__more {
    margin-top: 36px;
    text-align: center;
  }
  .page-template-page-about .cta {
    margin-bottom: 80px;
  }
  .page-template-page-about .cta__inner {
    border: 1px solid rgba(216, 176, 106, 0.28);
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, rgba(216, 176, 106, 0.1) 0%, rgba(10, 16, 26, 0.95) 100%);
    padding: 44px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
  }
  .page-template-page-about .cta__inner h2 {
    max-width: 580px;
  }
  .page-template-page-about .cta__contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    flex-shrink: 0;
  }
  .page-template-page-about .cta__contact {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #c3ccda;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
  }
  .page-template-page-about .cta__contact:hover {
    color: #f2ebdd;
  }
  .page-template-page-about .cta__contact svg {
    flex-shrink: 0;
    color: var(--kit-gold);
  }
  .page-template-page-about .cta__contacts .btn {
    margin-top: 4px;
    width: 100%;
  }
  @media (max-width: 1100px) {
    .page-template-page-about .philosophy__inner {
      grid-template-columns: 1fr 320px;
      gap: 48px;
    }
  }
  @media (max-width: 1024px) {
    .page-template-page-about .founders > .container {
      grid-template-columns: 1fr;
      max-width: 640px;
      margin-inline: auto;
    }
    .page-template-page-about .values__list {
      grid-template-columns: repeat(3, 1fr);
    }
    .page-template-page-about .philosophy__inner {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .page-template-page-about .team__list {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 768px) {
    .page-template-page-about .hero__content {
      padding-top: 96px;
      padding-bottom: 64px;
    }
    .page-template-page-about .hero__overlay {
      background: rgba(3, 6, 12, 0.78);
    }
    .page-template-page-about .values__list {
      grid-template-columns: repeat(2, 1fr);
    }
    .page-template-page-about .team__list {
      grid-template-columns: repeat(2, 1fr);
    }
    .page-template-page-about .cta__inner {
      flex-direction: column;
      align-items: flex-start;
      padding: 32px 28px;
    }
  }
  @media (max-width: 480px) {
    .page-template-page-about .values__list {
      grid-template-columns: 1fr;
    }
    .page-template-page-about .hero__actions {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  .page-template-page-tour .tour-page {
    background: #020305;
  }
  .page-template-page-tour .tour-hero {
    min-height: 720px;
    padding: 110px 0 36px;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .page-template-page-tour .tour-hero__content {
    position: relative;
    z-index: 1;
  }
  .page-template-page-tour .tour-hero__eyebrow {
    margin: 0 0 14px;
    color: #d8b06a;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .page-template-page-tour .tour-hero h1 {
    margin: 0 0 18px;
    font-size: 72px;
    line-height: 0.98;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #f2ebdd;
    max-width: 700px;
  }
  .page-template-page-tour .tour-hero__lead {
    margin: 0 0 26px;
    max-width: 560px;
    font-size: 36px;
    line-height: 1.45;
    color: #d2cbc0;
  }
  .page-template-page-tour .tour-hero__video {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #f2ebdd;
    font-size: 16px;
    line-height: 1.3;
    text-transform: uppercase;
  }
  .page-template-page-tour .tour-hero__video-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d8b06a;
    font-size: 14px;
  }
  .page-template-page-tour .tour-hero__video-icon img {
    width: 44px;
    height: 44px;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
    filter: brightness(0) saturate(100%) invert(75%) sepia(29%) saturate(636%) hue-rotate(356deg) brightness(91%) contrast(89%);
  }
  .page-template-page-tour .tour-catalog {
    margin-top: -72px;
    padding: 0 0 90px;
    position: relative;
    z-index: 2;
  }
  .page-template-page-tour .tour-catalog__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }
  .page-template-page-tour .tour-catalog__head h2 {
    margin: 0;
  }
  .page-template-page-tour .tour-catalog__head p {
    margin: 0;
    color: var(--kit-text-soft);
    font-size: var(--fs-sm);
  }
  .page-template-page-tour .tour-benefits {
    padding: 0;
    margin-bottom: 12px;
    display: grid;
    grid-template-columns: 1.08fr 3fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(9, 14, 22, 0.72);
  }
  .page-template-page-tour .tour-benefits h3 {
    margin: 0;
    padding: 34px 30px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--kit-text);
  }
  .page-template-page-tour .tour-benefits ul {
    list-style: none;
    padding: 0 10px;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .page-template-page-tour .tour-benefits li {
    padding: 26px 18px 18px;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 8px 14px;
  }
  .page-template-page-tour .tour-benefits__icon {
    grid-row: 1/span 2;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .page-template-page-tour .tour-benefits__icon img {
    display: block;
    width: 26px;
    height: 26px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .page-template-page-tour .tour-benefits strong {
    font-size: 15px;
    line-height: 1.25;
    color: var(--kit-text);
    min-height: 2.5em;
  }
  .page-template-page-tour .tour-benefits span {
    color: #c4bcae;
    font-size: 12px;
    line-height: 1.4;
  }
  @media (max-width: 1200px) {
    .page-template-page-tour .tour-benefits {
      grid-template-columns: 1fr;
    }
    .page-template-page-tour .tour-benefits ul {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 800px) {
    .page-template-page-tour .tour-hero {
      min-height: 560px;
      padding: 92px 0 36px;
    }
    .page-template-page-tour .tour-hero h1 {
      font-size: 52px;
    }
  }
  .page-template-page-tour .tour-final {
    margin-top: 0;
    padding: 0;
    min-height: 180px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
  }
  .page-template-page-tour .tour-final::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 10, 16, 0.88) 0%, rgba(7, 10, 16, 0.62) 42%, rgba(7, 10, 16, 0.22) 100%);
    pointer-events: none;
  }
  .page-template-page-tour .tour-final .final__row {
    min-height: 180px;
    padding: 28px 0;
    align-items: center;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 20px;
  }
  .page-template-page-tour .tour-final .final__title {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.12;
    color: var(--kit-text);
  }
  .page-template-page-tour .tour-final .final__row p {
    margin: 0;
    max-width: 560px;
    font-size: var(--fs-base);
    color: var(--kit-text-soft);
    line-height: 1.45;
  }
  .page-template-page-tour .tour-final .final__contact {
    justify-self: end;
    text-align: right;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .page-template-page-tour .tour-final .final__contact .btn {
    min-height: 46px;
    min-width: 320px;
    margin: 0;
  }
  .single-expedition {
    background: radial-gradient(circle at 18% 0%, rgba(202, 153, 88, 0.16), transparent 38%), radial-gradient(circle at 82% 0%, rgba(35, 72, 118, 0.2), transparent 44%), #060a12;
    padding-bottom: 48px;
  }
  .single-expedition.site-main--header-offset {
    padding-top: 0;
  }
  .single-expedition__article {
    display: block;
  }
  .single-expedition__content {
    display: block;
  }
  .expedition-block {
    margin: 0 0 28px;
  }
  /* First editor text block after hero: remove top stripe and normalize typography */
  .single-expedition__content > .expedition-hero + .wp-block-group {
    margin-top: 0;
    padding-top: 0;
    border-top: 0 !important;
  }
  .single-expedition__content > .expedition-hero + .wp-block-separator,
  .single-expedition__content > .expedition-hero + * .wp-block-separator:first-child,
  .single-expedition__content > .expedition-hero + * [style*=border-top] {
    display: none !important;
    border: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .single-expedition__content > .expedition-hero + .wp-block-group h1,
  .single-expedition__content > .expedition-hero + .wp-block-group h2,
  .single-expedition__content > .expedition-hero + .wp-block-group h3,
  .single-expedition__content > .expedition-hero + .wp-block-group h4,
  .single-expedition__content > .expedition-hero + .wp-block-group p,
  .single-expedition__content > .expedition-hero + .wp-block-group li,
  .single-expedition__content > .expedition-hero + .wp-block-group a {
    font-family: inherit;
  }
  .single-expedition__content > .expedition-hero + * .wp-block-buttons,
  .single-expedition__content > .expedition-hero + * .wp-block-button {
    display: none !important;
  }
  .expedition-block__title {
    margin: 0 0 18px;
    color: var(--kit-text);
  }
  .expedition-hero {
    position: relative;
    min-height: 100svh;
    margin-bottom: 28px;
    border-radius: 0;
    overflow: hidden;
    border: 0;
  }
  .expedition-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .expedition-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #111 0%, rgba(17, 17, 17, 0.78) 14%, rgba(17, 17, 17, 0) 34%), radial-gradient(circle at 80% 20%, rgba(255, 192, 120, 0.16), transparent 40%), linear-gradient(90deg, rgba(5, 9, 16, 0.9) 0%, rgba(5, 9, 16, 0.55) 45%, rgba(5, 9, 16, 0.78) 100%);
  }
  .expedition-hero__content {
    position: relative;
    z-index: 1;
    min-height: 100svh;
    padding-top: 122px;
    padding-bottom: 32px;
    display: flex;
    flex-direction: column;
  }
  .expedition-hero__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.65fr;
    gap: 18px;
    align-items: start;
  }
  .expedition-hero__main {
    max-width: 760px;
  }
  .expedition-hero__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    font-size: 0.85rem;
    color: rgba(234, 230, 220, 0.72);
  }
  .expedition-hero__breadcrumbs a {
    color: rgba(234, 230, 220, 0.82);
    text-decoration: none;
  }
  .expedition-hero__breadcrumbs a:hover {
    color: var(--kit-gold);
  }
  .expedition-hero__breadcrumbs-sep {
    color: rgba(234, 230, 220, 0.45);
  }
  .expedition-hero__breadcrumbs [aria-current=page] {
    color: var(--kit-gold);
  }
  .expedition-hero__subtitle {
    margin: 0 0 18px;
    color: var(--kit-text-soft);
    max-width: 56ch;
    font-size: 1.12rem;
  }
  .expedition-hero__lead {
    margin: 0 0 16px;
    max-width: 62ch;
    color: #e8dcc7;
    font-size: 1.02rem;
    line-height: 1.65;
  }
  .expedition-hero__facts {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px;
  }
  .expedition-hero__facts-row {
    margin-top: 18px;
    padding-top: 16px;
  }
  .expedition-hero__fact-card {
    border: 1px solid rgba(181, 136, 78, 0.3);
    border-radius: 10px;
    background: linear-gradient(150deg, rgba(12, 18, 30, 0.88) 0%, rgba(8, 13, 23, 0.72) 100%);
    padding: 10px 12px;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    align-items: start;
    min-height: 88px;
    height: 100%;
  }
  .expedition-hero__fact-icon {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 1px solid rgba(196, 147, 86, 0.55);
    position: relative;
    margin-top: 2px;
  }
  .expedition-hero__fact-icon::before,
  .expedition-hero__fact-icon::after {
    content: "";
    position: absolute;
    background: #d8ae72;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .expedition-hero__fact-icon::before {
    width: 8px;
    height: 1.5px;
  }
  .expedition-hero__fact-icon::after {
    width: 1.5px;
    height: 8px;
  }
  .expedition-hero__fact-content {
    display: grid;
    gap: 2px;
  }
  .expedition-hero__fact-content strong {
    color: #f3e7d4;
    font-size: 0.9rem;
    line-height: 1.3;
  }
  .expedition-hero__fact-content span {
    color: #bfb6a8;
    font-size: 0.78rem;
    line-height: 1.35;
  }
  .expedition-hero__title {
    margin: 0 0 14px;
    color: var(--kit-text);
    font-size: clamp(2.3rem, 4.6vw, 4.25rem);
    line-height: 1.03;
    max-width: 10ch;
  }
  .expedition-hero__intro {
    margin: 0 0 20px;
    padding: 0;
    display: grid;
    gap: 12px;
    align-items: start;
  }
  .expedition-hero__intro-pane {
    border: 1px solid rgba(181, 136, 78, 0.28);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(6, 10, 17, 0.88) 0%, rgba(6, 10, 17, 0.72) 100%);
    padding: 16px 18px;
  }
  .expedition-hero__intro-title {
    margin: 0 0 10px;
    color: var(--kit-gold);
    font-size: 1.05rem;
  }
  .expedition-hero__intro-pane--note {
    position: relative;
    overflow: hidden;
  }
  .expedition-hero__intro-note {
    margin: 0 0 8px;
    color: #d8d0c2;
    font-size: 1rem;
    line-height: 1.55;
    max-width: 42ch;
  }
  .expedition-hero__intro-author {
    margin: 0;
    color: var(--kit-gold);
    font-weight: 600;
  }
  .expedition-hero__intro-copy {
    display: grid;
    gap: 14px;
    align-content: start;
  }
  .expedition-hero__intro-text {
    margin: 0;
    color: #e2ddd2;
    font-size: 1.09rem;
    line-height: 1.7;
    max-width: 68ch;
  }
  .expedition-hero__intro-media {
    margin: 0;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: min(34%, 220px);
    opacity: 0.18;
    pointer-events: none;
  }
  .expedition-hero__intro-media img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.3));
  }
  .expedition-hero__cta--intro {
    justify-self: start;
  }
  .expedition-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--kit-text-soft);
  }
  .expedition-hero__meta span,
  .expedition-hero__meta strong {
    border: 1px solid rgba(181, 136, 78, 0.4);
    border-radius: 999px;
    padding: 7px 11px;
    background: rgba(181, 136, 78, 0.08);
  }
  .expedition-hero__meta strong {
    color: var(--kit-gold);
  }
  .expedition-hero__meta-start {
    flex-basis: 100%;
  }
  .expedition-hero__meta-start span {
    display: inline-block;
  }
  .expedition-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
  }
  .expedition-hero__program {
    border: 1px solid rgba(181, 136, 78, 0.32);
    border-radius: var(--radius-md);
    padding: 14px;
    background: rgba(6, 10, 17, 0.78);
    backdrop-filter: blur(2px);
  }
  .expedition-hero__program h2 {
    margin: 0 0 10px;
    font-size: 1rem;
    color: var(--kit-text);
  }
  .expedition-hero__program ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
  }
  .expedition-hero__quick-links {
    margin-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 8px;
  }
  .expedition-hero__quick-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0;
  }
  .expedition-hero__quick-links li {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .expedition-hero__quick-links li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .expedition-hero__quick-links a {
    display: inline-block;
    color: var(--kit-gold);
    text-decoration: none;
    line-height: 1.25;
  }
  .expedition-hero__quick-links a:hover {
    color: #f4ddb5;
  }
  .expedition-hero__program li {
    display: block;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .expedition-hero__program li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .expedition-hero__program a {
    display: grid;
    grid-template-columns: auto 1fr;
    -moz-column-gap: 8px;
         column-gap: 8px;
    row-gap: 3px;
    text-decoration: none;
  }
  .expedition-hero__program-day {
    color: var(--kit-gold);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
  .expedition-hero__program-inline {
    color: var(--kit-gold);
    line-height: 1.25;
  }
  .expedition-hero__program-text {
    color: var(--kit-text-soft);
    line-height: 1.3;
    grid-column: 1/-1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .expedition-days__list {
    display: grid;
    gap: 16px;
  }
  .expedition-days__item {
    border: 1px solid rgba(181, 136, 78, 0.32);
    border-radius: var(--radius-lg);
    padding: 16px;
    background: linear-gradient(160deg, rgba(8, 13, 22, 0.95) 0%, rgba(8, 13, 22, 0.74) 100%);
    display: grid;
    gap: 16px;
  }
  .expedition-days__day-label {
    margin: 0 0 6px;
    color: var(--kit-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.82rem;
  }
  .expedition-days__day-title {
    margin: 0 0 10px;
  }
  .expedition-days__theme {
    color: var(--kit-gold);
  }
  .expedition-days__meanings {
    margin: 14px 0 0;
    padding: 14px 16px;
    border-left: 3px solid rgba(181, 136, 78, 0.85);
    background: linear-gradient(160deg, rgba(181, 136, 78, 0.14) 0%, rgba(181, 136, 78, 0.06) 100%);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    display: grid;
    gap: 8px;
  }
  .expedition-days__meanings-title {
    margin: 0;
    color: rgba(212, 206, 193, 0.85);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .expedition-days__meaning {
    margin: 0;
    color: #f3debf;
    font-style: italic;
    font-weight: 500;
    line-height: 1.45;
    border: 0;
    padding: 0;
    position: relative;
  }
  .expedition-days__meaning::before {
    content: "“";
    display: inline-block;
    margin-right: 4px;
    color: rgba(181, 136, 78, 0.95);
    font-size: 1.45em;
    line-height: 0;
    transform: translateY(7px);
  }
  .expedition-days__meaning,
  .expedition-days__meaning p,
  .expedition-days__meaning li,
  .expedition-days__meaning strong,
  .expedition-days__meaning em,
  .expedition-days__meaning span,
  .expedition-days__meaning a {
    color: #f3debf;
  }
  .expedition-days__meaning p {
    margin: 0 0 6px;
  }
  .expedition-days__meaning p:last-child {
    margin-bottom: 8px;
  }
  .expedition-days__meaning-author {
    display: block;
    margin-top: 4px;
    color: var(--kit-gold);
    font-style: normal;
    font-size: 0.9rem;
  }
  .expedition-days__logistics {
    --track-axis-x: 10px;
    --dot-size: 12px;
    --dot-ring-size: 18px;
    margin: 14px 0 0;
    padding: 12px 0 4px 0;
    list-style: none;
    display: grid;
    gap: 10px;
    position: relative;
  }
  .expedition-days__logistics::before {
    content: "";
    position: absolute;
    left: calc(var(--track-axis-x) - 1px);
    top: 4px;
    bottom: 10px;
    width: 2px;
    background-image: repeating-linear-gradient(to bottom, rgba(181, 136, 78, 0.75) 0 6px, rgba(181, 136, 78, 0.2) 6px 12px);
  }
  .expedition-days__logistics li {
    position: relative;
    margin: 0;
    padding-left: 42px;
    color: #e1dbcf;
    line-height: 1.5;
  }
  .expedition-days__logistics li::before {
    content: "";
    position: absolute;
    left: calc(var(--track-axis-x) - var(--dot-size) / 2);
    top: 0.52em;
    width: var(--dot-size);
    height: var(--dot-size);
    border-radius: 999px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 248, 235, 0.92) 0 32%, rgba(255, 248, 235, 0) 33%), radial-gradient(circle at 50% 50%, #ffe8c9 0 58%, #c58f4e 59% 100%);
    border: 1px solid rgba(245, 211, 163, 0.68);
    box-shadow: 0 0 0 3px rgba(197, 143, 78, 0.2), 0 0 12px rgba(197, 143, 78, 0.35), inset 0 -1px 2px rgba(64, 34, 8, 0.45);
  }
  .expedition-days__logistics li::after {
    content: "";
    position: absolute;
    left: calc(var(--track-axis-x) - var(--dot-ring-size) / 2);
    top: calc(0.52em - (var(--dot-ring-size) - var(--dot-size)) / 2);
    width: var(--dot-ring-size);
    height: var(--dot-ring-size);
    border-radius: 999px;
    border: 1px solid rgba(245, 211, 163, 0.25);
    background: radial-gradient(circle, rgba(255, 230, 192, 0.18) 0%, rgba(255, 230, 192, 0) 72%);
  }
  .expedition-days__logistics li.is-type-hotel::before {
    background: radial-gradient(circle at 50% 50%, rgba(255, 248, 235, 0.92) 0 32%, rgba(255, 248, 235, 0) 33%), radial-gradient(circle at 50% 50%, #ffe3bb 0 58%, #b98543 59% 100%);
  }
  .expedition-days__logistics li.is-type-transfer::before {
    background: radial-gradient(circle at 50% 50%, rgba(244, 251, 255, 0.92) 0 32%, rgba(244, 251, 255, 0) 33%), radial-gradient(circle at 50% 50%, #d9edff 0 58%, #4f86c8 59% 100%);
    box-shadow: 0 0 0 3px rgba(79, 134, 200, 0.2), 0 0 12px rgba(79, 134, 200, 0.32), inset 0 -1px 2px rgba(11, 34, 63, 0.45);
  }
  .expedition-days__logistics li.is-type-trek::before {
    background: radial-gradient(circle at 50% 50%, rgba(244, 255, 242, 0.92) 0 32%, rgba(244, 255, 242, 0) 33%), radial-gradient(circle at 50% 50%, #d9f0d2 0 58%, #62965b 59% 100%);
    box-shadow: 0 0 0 3px rgba(98, 150, 91, 0.2), 0 0 12px rgba(98, 150, 91, 0.32), inset 0 -1px 2px rgba(23, 52, 20, 0.45);
  }
  .expedition-days__logistics li.is-type-sea::before {
    background: radial-gradient(circle at 50% 50%, rgba(244, 253, 255, 0.92) 0 32%, rgba(244, 253, 255, 0) 33%), radial-gradient(circle at 50% 50%, #d3f6ff 0 58%, #3b9eb5 59% 100%);
    box-shadow: 0 0 0 3px rgba(59, 158, 181, 0.2), 0 0 12px rgba(59, 158, 181, 0.32), inset 0 -1px 2px rgba(8, 46, 57, 0.45);
  }
  .expedition-days__logistics li.is-type-food::before {
    background: radial-gradient(circle at 50% 50%, rgba(255, 248, 238, 0.92) 0 32%, rgba(255, 248, 238, 0) 33%), radial-gradient(circle at 50% 50%, #ffe9cf 0 58%, #c86f2b 59% 100%);
    box-shadow: 0 0 0 3px rgba(200, 111, 43, 0.2), 0 0 12px rgba(200, 111, 43, 0.32), inset 0 -1px 2px rgba(72, 34, 9, 0.45);
  }
  .expedition-days__note {
    margin: 14px 0 0;
    color: #ffe8ca;
    border: 1px solid rgba(194, 145, 82, 0.38);
    background: linear-gradient(145deg, rgba(194, 145, 82, 0.2) 0%, rgba(194, 145, 82, 0.07) 100%);
    border-radius: var(--radius-md);
    padding: 12px 14px 12px 42px;
    position: relative;
  }
  .expedition-days__note::before {
    content: "!";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #2a1804;
    background: #f0bb79;
  }
  .expedition-days__media {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: hidden;
  }
  .expedition-days__media-link {
    display: block;
  }
  .expedition-days__media-link--featured {
    grid-column: 1/-1;
  }
  .expedition-days__media img {
    width: 100%;
    height: 100%;
    min-height: 120px;
    max-height: 220px;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    border-radius: var(--radius-md);
  }
  .expedition-days__media-link--featured img {
    min-height: 220px;
    max-height: 320px;
  }
  .expedition-days__visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100%;
    justify-content: flex-start;
  }
  .expedition-days__media-toggle {
    align-self: start;
    border: 1px solid rgba(181, 136, 78, 0.5);
    border-radius: 999px;
    padding: 8px 14px;
    color: #f3c686;
    background: rgba(181, 136, 78, 0.1);
    font-size: 0.85rem;
    line-height: 1;
    cursor: pointer;
  }
  .expedition-days__media-toggle:hover {
    background: rgba(181, 136, 78, 0.18);
  }
  .included-excluded__grid {
    display: grid;
    gap: 16px;
  }
  .included-excluded__card {
    border: 1px solid rgba(181, 136, 78, 0.28);
    border-radius: var(--radius-lg);
    padding: 20px;
    background: linear-gradient(160deg, rgba(10, 16, 27, 0.9) 0%, rgba(7, 12, 21, 0.86) 100%), radial-gradient(circle at 0% 0%, rgba(181, 136, 78, 0.08), transparent 45%);
    box-shadow: inset 0 1px 0 rgba(255, 236, 206, 0.06), 0 20px 50px rgba(0, 0, 0, 0.24);
  }
  .included-excluded__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0;
  }
  .included-excluded__item {
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #e5dfd3;
    font-weight: 500;
    letter-spacing: 0.005em;
    display: grid;
    grid-template-columns: 26px 1fr;
    -moz-column-gap: 14px;
         column-gap: 14px;
    align-items: start;
    line-height: 1.58;
    position: relative;
  }
  .included-excluded__item:last-child {
    border-bottom: 0;
  }
  .included-excluded__card--included .expedition-block__title,
  .included-excluded__card--excluded .expedition-block__title {
    margin-bottom: 14px;
  }
  .included-excluded__card--included .expedition-block__title {
    color: #f4e6cc;
  }
  .included-excluded__card--excluded .expedition-block__title {
    color: #f1e0d5;
  }
  .included-excluded__item::before {
    position: static;
    width: 26px;
    height: 1.58em;
    display: grid;
    place-items: center;
    align-self: start;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
    transform: translateY(0.02em);
  }
  .included-excluded__card--included .included-excluded__item::before {
    content: "+";
    color: #87d49b;
    text-shadow: 0 0 12px rgba(135, 212, 155, 0.35);
  }
  .included-excluded__card--excluded .included-excluded__item::before {
    content: "−";
    color: #ef9e8f;
    text-shadow: 0 0 12px rgba(239, 158, 143, 0.35);
  }
  .included-excluded__card--included {
    position: relative;
  }
  .included-excluded__card--excluded {
    position: relative;
  }
  .included-excluded__card--included::after,
  .included-excluded__card--excluded::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.03);
  }
  .included-excluded__card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 35%, rgba(255, 230, 192, 0.07) 50%, transparent 65%);
    transform: translateX(-120%);
    opacity: 0;
  }
  .included-excluded__card:hover::before {
    animation: includedShimmer 1.1s ease;
    opacity: 1;
  }
  @keyframes includedShimmer {
    0% {
      transform: translateX(-120%);
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
    100% {
      transform: translateX(120%);
      opacity: 0;
    }
  }
  .price-card__inner,
  .cta-banner__inner {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    background: rgba(9, 14, 22, 0.72);
  }
  .cta-banner__inner {
    display: grid;
    gap: 18px;
    align-items: start;
  }
  .cta-banner__copy {
    display: grid;
    gap: 14px;
    align-content: start;
  }
  .cta-banner__text {
    margin: 0;
    color: #ddd6c8;
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: none;
  }
  .price-card__value {
    margin: 0 0 8px;
    font-size: 2rem;
    color: var(--kit-gold);
  }
  .price-card__note {
    margin: 0 0 16px;
    color: var(--kit-text-soft);
  }
  .departure-schedule__table-wrap {
    border: 1px solid rgba(181, 136, 78, 0.3);
    border-radius: var(--radius-lg);
    background: linear-gradient(165deg, rgba(8, 13, 22, 0.95) 0%, rgba(8, 13, 22, 0.72) 100%);
    overflow: auto;
  }
  .departure-schedule__layout {
    display: grid;
    gap: 16px;
  }
  .departure-schedule__table {
    width: 100%;
    border-collapse: collapse;
  }
  .departure-schedule__table th,
  .departure-schedule__table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px;
    text-align: left;
  }
  .departure-schedule__table tr:last-child td {
    border-bottom: 0;
  }
  .departure-schedule__table th {
    color: var(--kit-text);
  }
  .departure-schedule__table td {
    color: var(--kit-text-soft);
  }
  .departure-schedule__status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    line-height: 1.2;
  }
  .departure-schedule__status.is-open {
    color: #8ee1a1;
    border-color: rgba(142, 225, 161, 0.45);
    background: rgba(74, 143, 89, 0.16);
  }
  .departure-schedule__status.is-full {
    color: #ffaba0;
    border-color: rgba(255, 171, 160, 0.45);
    background: rgba(151, 65, 55, 0.18);
  }
  .departure-schedule__status.is-waiting {
    color: #ffd08a;
    border-color: rgba(255, 208, 138, 0.45);
    background: rgba(158, 113, 53, 0.18);
  }
  .departure-schedule__cta {
    border: 1px solid rgba(181, 136, 78, 0.34);
    border-radius: var(--radius-lg);
    padding: 18px;
    background: linear-gradient(160deg, rgba(9, 14, 24, 0.92) 0%, rgba(9, 14, 24, 0.7) 100%);
    display: grid;
    gap: 12px;
    align-content: start;
  }
  .departure-schedule__cta h3 {
    margin: 0;
    color: var(--kit-text);
    font-size: 1.18rem;
  }
  .departure-schedule__cta p {
    margin: 0;
    color: var(--kit-text-soft);
  }
  .departure-schedule__cta .btn {
    justify-self: start;
  }
  .info-accordion__list {
    display: grid;
    gap: 10px;
  }
  .info-accordion__item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    background: rgba(9, 14, 22, 0.72);
  }
  .info-accordion__item summary {
    cursor: pointer;
    font-weight: 600;
  }
  .expedition-tail-info .container {
    display: grid;
    gap: 16px;
  }
  .expedition-tail-info__card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px;
    background: rgba(9, 14, 22, 0.72);
  }
  .expedition-tail-info__list {
    display: grid;
    gap: 10px;
  }
  .expedition-tail-info__item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 12px;
    background: rgba(9, 14, 22, 0.45);
  }
  .expedition-tail-info__item summary {
    display: flex;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
  }
  .expedition-tail-info__index {
    color: var(--kit-gold);
    min-width: 24px;
  }
  .expedition-tail-info__body {
    margin-top: 8px;
  }
  .single-expedition .expedition-block p,
  .single-expedition .expedition-block li,
  .single-expedition .expedition-block td,
  .single-expedition .expedition-block th,
  .single-expedition .expedition-block .text-readable,
  .single-expedition .expedition-block .text-readable p,
  .single-expedition .expedition-block .text-readable li {
    color: #d4cec1;
    font-size: 16px;
    line-height: 1.6;
  }
  @media (min-width: 768px) {
    .expedition-hero__facts {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .expedition-hero__intro {
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .expedition-days__item {
      grid-template-columns: 1.25fr 1fr;
      align-items: start;
    }
    .expedition-days__item.has-collapsible-gallery .expedition-days__media {
      max-height: var(--gallery-max-height, none);
    }
    .included-excluded__grid {
      grid-template-columns: 1fr 1fr;
    }
    .departure-schedule__layout {
      grid-template-columns: 1.6fr minmax(260px, 0.75fr);
      align-items: stretch;
    }
  }
  @media (max-width: 900px) {
    .expedition-hero {
      min-height: 100svh;
    }
    .expedition-hero__content {
      min-height: 100svh;
      padding-top: 96px;
    }
    .expedition-hero__inner {
      grid-template-columns: 1fr;
    }
    .expedition-hero__program {
      max-width: 460px;
    }
    .expedition-hero__intro-text {
      font-size: 1rem;
      line-height: 1.65;
    }
    .expedition-hero__intro-media {
      width: min(40%, 170px);
      opacity: 0.14;
    }
    .expedition-hero__facts {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (min-width: 1200px) {
    .expedition-hero__content {
      justify-content: center;
      padding-top: 104px;
      padding-bottom: 24px;
    }
    .expedition-hero__main {
      padding-top: 12px;
    }
    .expedition-hero__actions {
      margin-bottom: 26px;
    }
    .expedition-hero__facts-row {
      margin-top: 24px;
      padding-top: 0;
    }
  }
  .cta-banner__text {
    font-size: 1rem;
    line-height: 1.6;
  }
  .page-template-page-shop {
    background: #020305;
  }
  .page-template-page-shop .shop-hero {
    min-height: 760px;
    padding: 110px 0 38px;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .page-template-page-shop .shop-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 3, 5, 0.86) 0%, rgba(2, 3, 5, 0.42) 38%, rgba(2, 3, 5, 0.82) 100%), linear-gradient(90deg, rgba(2, 3, 5, 0.8) 0%, rgba(2, 3, 5, 0.25) 48%, rgba(2, 3, 5, 0.1) 100%);
  }
  .page-template-page-shop .shop-hero > .container {
    position: relative;
    z-index: 1;
  }
  .page-template-page-shop .shop-hero__eyebrow {
    margin: 0 0 16px;
    color: #d8b06a;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .page-template-page-shop .shop-hero h1 {
    margin: 0 0 18px;
    max-width: 760px;
    font-size: 68px;
    line-height: 0.98;
    font-weight: 500;
  }
  .page-template-page-shop .shop-hero__lead {
    margin: 0 0 32px;
    max-width: 620px;
    color: #d2cbc0;
    font-size: 14px;
    line-height: 1.45;
  }
  .page-template-page-shop .shop-hero__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .page-template-page-shop .shop-hero-card {
    min-height: 290px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 24px;
    background-color: rgba(7, 11, 18, 0.62);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
  }
  .page-template-page-shop .shop-hero-card--seafood {
    background-position: center bottom;
  }
  .page-template-page-shop .shop-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 11, 18, 0.88) 0%, rgba(7, 11, 18, 0.58) 45%, rgba(7, 11, 18, 0.32) 100%);
    pointer-events: none;
  }
  .page-template-page-shop .shop-hero-card > * {
    position: relative;
    z-index: 1;
  }
  .page-template-page-shop .shop-hero-card h3 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
  }
  .page-template-page-shop .shop-hero-card p {
    margin: 0 0 18px;
    max-width: 360px;
    color: #d2cbc0;
    font-size: 14px;
  }
  .page-template-page-shop .shop-hero-card .btn {
    min-height: 46px;
    margin-top: auto;
  }
  .page-template-page-shop .shop-catalog {
    padding: 20px 0 64px;
  }
  .page-template-page-shop .shop-catalog__section {
    scroll-margin-top: 100px;
  }
  .page-template-page-shop .shop-catalog__section + .shop-catalog__section {
    margin-top: 48px;
  }
  .page-template-page-shop .shop-catalog__empty {
    margin: 18px 0 48px;
    color: #c4bcaf;
  }
  .page-template-page-shop .shop-section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 0 0 10px;
  }
  .page-template-page-shop .shop-section-head h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1.1;
  }
  .page-template-page-shop .shop-section-head a {
    color: #d8b06a;
    font-size: 14px;
  }
  .page-template-page-shop .shop-section-head span {
    color: #c4bcaf;
    font-size: 14px;
  }
  .page-template-page-shop .shop-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }
  .page-template-page-shop .shop-tabs a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(8, 12, 18, 0.75);
    color: #cfc7b8;
    font-size: 13px;
    padding: 0 12px;
  }
  .page-template-page-shop .shop-tabs a:hover,
  .page-template-page-shop .shop-tabs a:focus-visible {
    border-color: #d8b06a;
    color: #d8b06a;
  }
  .page-template-page-shop .shop-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 22px;
  }
  .page-template-page-shop .shop-item {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(8, 12, 18, 0.78);
    display: flex;
    flex-direction: column;
  }
  .page-template-page-shop .shop-item__media {
    display: block;
    background: #f3f5f5;
  }
  .page-template-page-shop .shop-item__media img {
    width: 100%;
    height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .page-template-page-shop .shop-item__body {
    padding: 14px;
    display: grid;
    gap: 8px;
    height: 100%;
  }
  .page-template-page-shop .shop-item__body h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
  }
  .page-template-page-shop .shop-item__body h3 a {
    color: inherit;
  }
  .page-template-page-shop .shop-item__body p {
    margin: 0;
    color: #c4bcaf;
    font-size: 13px;
    line-height: 1.35;
  }
  .page-template-page-shop .shop-item__price {
    color: #f2ebdd;
    font-size: 22px;
    line-height: 1.2;
  }
  .page-template-page-shop .shop-item__button {
    align-self: start;
    margin-top: auto;
  }
  @media (max-width: 1200px) {
    .page-template-page-shop .shop-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 900px) {
    .page-template-page-shop .shop-hero__cards {
      grid-template-columns: 1fr;
    }
    .page-template-page-shop .shop-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 600px) {
    .page-template-page-shop .shop-hero h1 {
      font-size: 44px;
    }
    .page-template-page-shop .shop-grid {
      grid-template-columns: 1fr;
    }
    .page-template-page-shop .shop-section-head {
      display: grid;
      gap: 8px;
    }
  }
  /* WooCommerce primary buttons */
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .woocommerce a.button.alt,
  .woocommerce button.button.alt,
  .woocommerce div.product form.cart .button {
    background-color: #00778b !important;
    color: #fff !important;
    border-color: #00778b !important;
  }
  /* WooCommerce primary buttons: hover */
  .woocommerce a.button:hover,
  .woocommerce button.button:hover,
  .woocommerce input.button:hover,
  .woocommerce a.button.alt:hover,
  .woocommerce button.button.alt:hover,
  .woocommerce div.product form.cart .button:hover {
    background-color: #005f70 !important;
    color: #fff !important;
    border-color: #005f70 !important;
  }
  .page-template-page-courses {
    background: #020305;
  }
  .page-template-page-courses .courses-hero {
    min-height: 760px;
    padding: 110px 0 24px;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .page-template-page-courses .courses-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 3, 5, 0.82) 0%, rgba(2, 3, 5, 0.38) 38%, rgba(2, 3, 5, 0.78) 100%), linear-gradient(90deg, rgba(2, 3, 5, 0.86) 0%, rgba(2, 3, 5, 0.38) 44%, rgba(2, 3, 5, 0.1) 100%);
  }
  .page-template-page-courses .courses-hero__content {
    position: relative;
    z-index: 1;
  }
  .page-template-page-courses .courses-hero__eyebrow {
    margin: 0 0 14px;
    color: #d8b06a;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .page-template-page-courses .courses-hero h1 {
    margin: 0 0 18px;
    max-width: 760px;
    font-size: 72px;
    line-height: 0.98;
    font-weight: 500;
    color: #f2ebdd;
  }
  .page-template-page-courses .courses-hero__lead {
    margin: 0 0 28px;
    max-width: 610px;
    color: #d2cbc0;
    font-size: 14px;
    line-height: 1.45;
  }
  .page-template-page-courses .courses-hero__feature {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(216, 176, 106, 0.45);
    background: rgba(2, 3, 5, 0.44);
  }
  .page-template-page-courses .courses-hero__feature-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .page-template-page-courses .courses-hero__feature-icon img {
    width: 22px;
    height: 22px;
    -o-object-fit: contain;
       object-fit: contain;
    filter: brightness(0) saturate(100%) invert(75%) sepia(29%) saturate(636%) hue-rotate(356deg) brightness(91%) contrast(89%);
  }
  .page-template-page-courses .courses-hero__feature strong {
    display: block;
    font-size: 14px;
    color: #f2ebdd;
    line-height: 1.2;
  }
  .page-template-page-courses .courses-hero__feature span {
    font-size: 13px;
    color: #d2cbc0;
  }
  .page-template-page-courses .courses-content {
    padding: 0 0 54px;
    margin-top: -12px;
    position: relative;
    z-index: 2;
  }
  .page-template-page-courses .courses-benefits {
    margin-bottom: 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(8, 11, 16, 0.88);
    overflow: hidden;
  }
  .page-template-page-courses .courses-benefits ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .page-template-page-courses .courses-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 18px;
    color: #d2cbc0;
    font-size: 14px;
    line-height: 1.35;
  }
  .page-template-page-courses .courses-benefits__icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .page-template-page-courses .courses-benefits__icon img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
       object-fit: contain;
    filter: brightness(0) saturate(100%) invert(75%) sepia(29%) saturate(636%) hue-rotate(356deg) brightness(91%) contrast(89%);
  }
  .page-template-page-courses .courses-list h2 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: 52px;
    line-height: 1;
    font-weight: 500;
    color: #f2ebdd;
  }
  .page-template-page-courses .courses-list__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 16px;
  }
  .page-template-page-courses .course-card {
    position: relative;
    min-height: 570px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    overflow: hidden;
    padding: 18px 20px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .page-template-page-courses .course-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 10, 16, 0.24) 8%, rgba(7, 10, 16, 0.88) 100%);
  }
  .page-template-page-courses .course-card > * {
    position: relative;
    z-index: 1;
  }
  .page-template-page-courses .course-card__tag {
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 6px;
    background: rgba(72, 93, 51, 0.78);
    color: #f2ebdd;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1;
  }
  .page-template-page-courses .course-card h3 {
    margin: 0 0 14px;
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1.05;
    font-weight: 500;
    color: #f2ebdd;
  }
  .page-template-page-courses .course-card p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.45;
    color: #d2cbc0;
    max-width: 420px;
  }
  .page-template-page-courses .course-card__checks {
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
  }
  .page-template-page-courses .course-card__checks li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.4;
    color: #d2cbc0;
  }
  .page-template-page-courses .course-card__checks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #d8b06a;
  }
  .page-template-page-courses .course-card__meta {
    margin-top: auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #d2cbc0;
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 12px;
  }
  .page-template-page-courses .course-card__meta strong {
    margin-left: auto;
    color: #d8b06a;
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
  }
  .page-template-page-courses .course-card .btn {
    min-height: 46px;
  }
  .page-template-page-courses .courses-note,
  .page-template-page-courses .courses-steps,
  .page-template-page-courses .courses-cta {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(8, 11, 16, 0.85);
  }
  .page-template-page-courses .courses-note {
    margin-bottom: 14px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    overflow: hidden;
  }
  .page-template-page-courses .courses-note__text {
    padding: 22px 24px;
  }
  .page-template-page-courses .courses-note h3,
  .page-template-page-courses .courses-steps h3,
  .page-template-page-courses .courses-cta h3 {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-size: 46px;
    line-height: 1.06;
    font-weight: 500;
    color: #f2ebdd;
  }
  .page-template-page-courses .courses-note p,
  .page-template-page-courses .courses-steps__hint,
  .page-template-page-courses .courses-cta p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #d2cbc0;
  }
  .page-template-page-courses .courses-note__image {
    min-height: 170px;
    background-size: cover;
    background-position: center;
  }
  .page-template-page-courses .courses-steps {
    margin-bottom: 14px;
    padding: 22px 24px;
  }
  .page-template-page-courses .courses-steps ol {
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
  .page-template-page-courses .courses-steps li {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 12px;
  }
  .page-template-page-courses .courses-steps li:first-child {
    border-left: 0;
    padding-left: 0;
  }
  .page-template-page-courses .courses-steps li span {
    display: inline-block;
    color: #d8b06a;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 6px;
  }
  .page-template-page-courses .courses-steps li p {
    margin: 0;
    color: #f2ebdd;
    font-size: 14px;
    line-height: 1.4;
  }
  .page-template-page-courses .courses-steps .btn {
    margin-top: 16px;
    min-height: 46px;
    min-width: 240px;
  }
  .page-template-page-courses .courses-cta {
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 24px;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  .page-template-page-courses .courses-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 10, 16, 0.88) 0%, rgba(7, 10, 16, 0.6) 45%, rgba(7, 10, 16, 0.2) 100%);
  }
  .page-template-page-courses .courses-cta > * {
    position: relative;
    z-index: 1;
  }
  .page-template-page-courses .courses-cta .btn {
    min-height: 46px;
    min-width: 230px;
  }
  .page-template-page-courses .courses-cta__socials {
    display: inline-flex;
    gap: 10px;
  }
  .page-template-page-courses .courses-cta__socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.46);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 11, 16, 0.5);
  }
  .page-template-page-courses .courses-cta__socials img {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
       object-fit: contain;
    filter: brightness(0) saturate(100%) invert(75%) sepia(29%) saturate(636%) hue-rotate(356deg) brightness(91%) contrast(89%);
  }
  @media (max-width: 1200px) {
    .page-template-page-courses .courses-benefits ul,
    .page-template-page-courses .courses-steps ol {
      grid-template-columns: repeat(2, 1fr);
    }
    .page-template-page-courses .courses-list__grid,
    .page-template-page-courses .courses-note {
      grid-template-columns: 1fr;
    }
    .page-template-page-courses .course-card {
      min-height: 500px;
    }
    .page-template-page-courses .courses-cta {
      grid-template-columns: 1fr;
      justify-items: start;
    }
  }
  @media (max-width: 980px) {
    .page-template-page-courses .courses-hero h1 {
      font-size: 52px;
    }
    .page-template-page-courses .courses-list h2,
    .page-template-page-courses .course-card h3,
    .page-template-page-courses .courses-note h3,
    .page-template-page-courses .courses-steps h3,
    .page-template-page-courses .courses-cta h3 {
      font-size: 36px;
    }
    .page-template-page-courses .courses-benefits ul,
    .page-template-page-courses .courses-steps ol {
      grid-template-columns: 1fr;
    }
    .page-template-page-courses .course-card__meta {
      flex-wrap: wrap;
      gap: 8px 14px;
    }
    .page-template-page-courses .course-card__meta strong {
      margin-left: 0;
      width: 100%;
    }
  }
  .page-template-page-contacts {
    background: #020305;
  }
  .page-template-page-contacts .contacts-hero {
    min-height: 620px;
    padding: 110px 0 34px;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .page-template-page-contacts .contacts-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 3, 5, 0.84) 0%, rgba(2, 3, 5, 0.36) 50%, rgba(2, 3, 5, 0.18) 100%);
  }
  .page-template-page-contacts .contacts-hero__content {
    position: relative;
    z-index: 1;
  }
  .page-template-page-contacts .contacts-hero__eyebrow {
    margin: 0 0 14px;
    color: #d8b06a;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 14px;
  }
  .page-template-page-contacts .contacts-hero h1 {
    margin: 0 0 14px;
    max-width: 640px;
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 0.98;
    font-weight: 500;
  }
  .page-template-page-contacts .contacts-hero__lead {
    margin: 0 0 24px;
    max-width: 520px;
    font-size: 14px;
    line-height: 1.45;
    color: #d2cbc0;
  }
  .page-template-page-contacts .contacts-hero__actions {
    display: flex;
    gap: 12px;
  }
  .page-template-page-contacts .contacts-hero__actions .btn {
    min-height: 46px;
  }
  .page-template-page-contacts .contacts-content {
    padding: 0 0 60px;
    margin-top: -8px;
    position: relative;
    z-index: 2;
  }
  .page-template-page-contacts .contacts-block, .page-template-page-contacts .contacts-split, .page-template-page-contacts .contacts-road, .page-template-page-contacts .contacts-bottom {
    margin-bottom: 14px;
  }
  .page-template-page-contacts .contacts-content h2 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: 52px;
    line-height: 1.02;
    font-weight: 500;
  }
  .page-template-page-contacts .contacts-grid {
    display: grid;
    gap: 12px;
  }
  .page-template-page-contacts .contacts-grid--5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .page-template-page-contacts .contacts-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-template-page-contacts .contact-card, .page-template-page-contacts .road-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(8, 11, 16, 0.8);
    padding: 20px 16px;
    min-height: 170px;
  }
  .page-template-page-contacts .contact-card h3, .page-template-page-contacts .road-card h3 {
    margin: 0 0 10px;
    font-size: 32px;
    line-height: 1.08;
    font-family: var(--font-heading);
    font-weight: 500;
  }
  .page-template-page-contacts .contact-card p, .page-template-page-contacts .road-card p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.45;
    color: #f2ebdd;
  }
  .page-template-page-contacts .contact-card span {
    color: #d2cbc0;
    font-size: 13px;
    line-height: 1.4;
  }
  .page-template-page-contacts .contacts-split {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 14px;
  }
  .page-template-page-contacts .contacts-form, .page-template-page-contacts .contacts-map, .page-template-page-contacts .contacts-faq, .page-template-page-contacts .contacts-social {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(8, 11, 16, 0.8);
    padding: 18px;
  }
  .page-template-page-contacts .contacts-form p {
    margin: 0 0 12px;
    font-size: 14px;
    color: #d2cbc0;
  }
  .page-template-page-contacts .contacts-form form {
    display: grid;
    gap: 10px;
  }
  .page-template-page-contacts .contacts-form input, .page-template-page-contacts .contacts-form textarea {
    width: 100%;
    min-height: 44px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(2, 3, 5, 0.35);
    color: #f2ebdd;
    padding: 10px 12px;
  }
  .page-template-page-contacts .contacts-form textarea {
    min-height: 110px;
    resize: vertical;
  }
  .page-template-page-contacts .contacts-form label {
    font-size: 13px;
    color: #bdb5a8;
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .page-template-page-contacts .contacts-form .btn {
    min-height: 46px;
  }
  .page-template-page-contacts .contacts-map__view {
    min-height: 390px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1a202a 0%, #0f141c 70%);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }
  .page-template-page-contacts .contacts-faq ul {
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
  }
  .page-template-page-contacts .contacts-faq li {
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: #d2cbc0;
    font-size: 14px;
  }
  .page-template-page-contacts .contacts-faq a {
    color: #d8b06a;
    font-size: 14px;
  }
  .page-template-page-contacts .contacts-social {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  .page-template-page-contacts .contacts-social::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 11, 16, 0.88) 0%, rgba(8, 11, 16, 0.55) 55%, rgba(8, 11, 16, 0.25) 100%);
  }
  .page-template-page-contacts .contacts-social > * {
    position: relative;
    z-index: 1;
  }
  .page-template-page-contacts .contacts-social p {
    margin: 0 0 14px;
    font-size: 14px;
    color: #d2cbc0;
    max-width: 430px;
  }
  .page-template-page-contacts .contacts-social__icons {
    display: flex;
    gap: 10px;
  }
  .page-template-page-contacts .contacts-social__icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 3, 5, 0.4);
  }
  .page-template-page-contacts .contacts-social__icons img {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
       object-fit: contain;
    filter: brightness(0) saturate(100%) invert(75%) sepia(29%) saturate(636%) hue-rotate(356deg) brightness(91%) contrast(89%);
  }
  @media (max-width: 1200px) {
    .page-template-page-contacts .contacts-grid--5 {
      grid-template-columns: repeat(3, 1fr);
    }
    .page-template-page-contacts .contacts-grid--4 {
      grid-template-columns: repeat(2, 1fr);
    }
    .page-template-page-contacts .contacts-split {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 980px) {
    .page-template-page-contacts .contacts-hero h1, .page-template-page-contacts .contacts-content h2, .page-template-page-contacts .contact-card h3, .page-template-page-contacts .road-card h3 {
      font-size: 38px;
    }
    .page-template-page-contacts .contacts-grid--5, .page-template-page-contacts .contacts-grid--4 {
      grid-template-columns: 1fr;
    }
    .page-template-page-contacts .contacts-hero__actions {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  .search {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
  }
  .search .site-main {
    flex: 1 0 auto;
  }
  .search .search-page {
    background: var(--kit-bg);
  }
  .search .search-results {
    padding: 38px 0 64px;
  }
  @media (max-width: 900px) {
    .search .search-results {
      padding: 28px 0 48px;
    }
  }
  .search .search-results__controls {
    margin: 0 0 24px;
  }
  .search .search-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 14px;
  }
  .search .search-chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--kit-text-soft);
    background: rgba(9, 14, 22, 0.72);
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
  }
  @media (max-width: 900px) {
    .search .search-chip {
      min-height: 34px;
      padding: 0 12px;
      font-size: 13px;
    }
  }
  .search .search-chip.is-active {
    border-color: rgba(216, 176, 106, 0.85);
    color: var(--kit-text);
    background: rgba(216, 176, 106, 0.18);
  }
  .search .search-results__input {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0 16px;
    font-size: 16px;
    color: var(--kit-text);
    background: rgba(9, 14, 22, 0.72);
  }
  @media (max-width: 900px) {
    .search .search-results__input {
      min-height: 46px;
      font-size: 15px;
    }
  }
  .search .search-results__input::-moz-placeholder {
    color: var(--kit-text-soft);
  }
  .search .search-results__input::placeholder {
    color: var(--kit-text-soft);
  }
  .search .search-results__head {
    margin: 0 0 28px;
  }
  .search .search-results__eyebrow {
    margin: 0 0 10px;
    color: var(--kit-gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 13px;
  }
  .search .search-results__title {
    margin: 0;
    color: var(--kit-text);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.04;
  }
  .search .search-results__title span {
    color: var(--kit-gold);
  }
  .search .search-results__list {
    display: grid;
    gap: 14px;
  }
  .search .search-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 20px;
    background: rgba(9, 14, 22, 0.72);
  }
  .search .search-card__title {
    margin: 0 0 8px;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.14;
  }
  .search .search-card__title a {
    color: var(--kit-text);
  }
  .search .search-card__excerpt {
    color: var(--kit-text-soft);
    font-size: 15px;
    line-height: 1.6;
  }
  .search .search-empty {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    background: rgba(9, 14, 22, 0.72);
  }
  @media (max-width: 900px) {
    .search .search-empty {
      padding: 20px 18px;
    }
  }
  .search .search-empty__decor {
    width: 80px;
    height: 80px;
    margin: 0 0 16px;
    border-radius: 50%;
    border: 1px solid rgba(216, 176, 106, 0.45);
    background: radial-gradient(circle at center, rgba(216, 176, 106, 0.24) 0%, rgba(216, 176, 106, 0) 60%), conic-gradient(from 180deg, rgba(216, 176, 106, 0.6), rgba(216, 176, 106, 0.08), rgba(216, 176, 106, 0.6));
    position: relative;
  }
  .search .search-empty__decor::before,
  .search .search-empty__decor::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #d8b06a;
    transform: translate(-50%, -50%);
  }
  .search .search-empty__decor::before {
    width: 26px;
    height: 2px;
  }
  .search .search-empty__decor::after {
    width: 2px;
    height: 26px;
  }
  .search .search-empty__title {
    margin: 0 0 10px;
    font-size: clamp(24px, 3vw, 34px);
    color: var(--kit-text);
  }
  .search .search-empty__text {
    margin: 0;
    max-width: 56ch;
    color: var(--kit-text-soft);
    line-height: 1.6;
  }
}
/*# sourceMappingURL=main.css.map */
