    :root {
      --bg: #f7f3ec;
      --bg-soft: #fffaf3;
      --panel: rgba(255, 255, 255, 0.74);
      --panel-strong: rgba(255, 255, 255, 0.92);
      --stroke: rgba(146, 118, 92, 0.14);
      --text: #241c17;
      --muted: #786b62;
      --primary: #d66d43;
      --primary-soft: #f7d9c8;
      --accent: #c9d9cc;
      --accent-strong: #7fa387;
      --shadow: 0 24px 80px rgba(79, 56, 35, 0.11);
      --radius-xl: 36px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --container: 1180px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: "Manrope", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(247, 217, 200, 0.75), transparent 30%),
        radial-gradient(circle at 85% 12%, rgba(201, 217, 204, 0.75), transparent 24%),
        linear-gradient(180deg, #fbf8f3 0%, #f7f3ec 52%, #f4efe6 100%);
      overflow-x: hidden;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      inset: auto;
      width: 440px;
      height: 440px;
      border-radius: 50%;
      filter: blur(70px);
      opacity: 0.38;
      z-index: -2;
      pointer-events: none;
    }

    body::before {
      top: -140px;
      right: -120px;
      background: rgba(244, 191, 160, 0.72);
    }

    body::after {
      bottom: -170px;
      left: -120px;
      background: rgba(188, 212, 194, 0.8);
    }

    a { color: inherit; }

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(18px);
      background: rgba(251, 248, 243, 0.72);
      border-bottom: 1px solid rgba(146, 118, 92, 0.08);
    }

    .site-header .wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 18px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .brand-mark {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background:
        linear-gradient(145deg, rgba(214, 109, 67, 0.18), rgba(255, 255, 255, 0.95));
      border: 1px solid rgba(214, 109, 67, 0.18);
      box-shadow: 0 12px 30px rgba(214, 109, 67, 0.14);
    }

    .brand-mark svg { width: 24px; height: 24px; }

    .brand small,
    .eyebrow,
    .metric-label,
    .section-label {
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      font-size: 0.74rem;
      font-weight: 700;
    }

    .brand strong {
      display: block;
      font-size: 1rem;
      font-weight: 800;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .pill,
    .ghost-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-decoration: none;
      border-radius: 999px;
      min-height: 48px;
      padding: 0 18px;
      font-weight: 700;
      transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
    }

    .pill {
      background: linear-gradient(135deg, var(--primary), #e98d5f);
      color: #fff;
      box-shadow: 0 16px 34px rgba(214, 109, 67, 0.22);
    }

    .ghost-link {
      background: rgba(255, 255, 255, 0.65);
      color: var(--text);
      border: 1px solid rgba(146, 118, 92, 0.12);
    }

    .pill:hover,
    .ghost-link:hover,
    .cta-card:hover,
    .feature:hover,
    .quote:hover,
    .gallery-card:hover,
    .info-card:hover {
      transform: translateY(-3px);
    }

    .hero {
      padding: 42px 0 26px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.95fr);
      gap: 22px;
      align-items: stretch;
    }

    .hero-main,
    .hero-side,
    .section-panel {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      border: 1px solid var(--stroke);
      background: var(--panel);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
    }

    .hero-main {
      padding: 34px;
      min-height: 580px;
      display: grid;
      grid-template-rows: auto auto 1fr auto;
      gap: 24px;
    }

    .hero-main::before,
    .hero-side::before,
    .section-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent 32%);
      pointer-events: none;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.66);
      border: 1px solid rgba(146, 118, 92, 0.1);
    }

    .eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), #f0a17a);
      box-shadow: 0 0 0 6px rgba(214, 109, 67, 0.1);
    }

    h1,
    h2,
    h3,
    p { margin: 0; }

    h1 {
      font-size: clamp(2.8rem, 6vw, 5.4rem);
      line-height: 0.92;
      letter-spacing: -0.05em;
      max-width: 9ch;
    }

    .hero-main h1 span {
      display: block;
      color: var(--primary);
    }

    .hero-highlight {
      margin-top: 18px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(214, 109, 67, 0.16);
      color: var(--primary);
      font-size: 1rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      box-shadow: 0 14px 30px rgba(214, 109, 67, 0.12);
    }

    .hero-highlight::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: currentColor;
      box-shadow: 0 0 0 7px rgba(214, 109, 67, 0.12);
      flex-shrink: 0;
    }

    .hero-copy {
      max-width: 62ch;
      color: var(--muted);
      font-size: 1.08rem;
      line-height: 1.7;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.68);
      border: 1px solid rgba(146, 118, 92, 0.1);
      font-weight: 600;
      color: #4c4038;
    }

    .hero-badge svg {
      width: 18px;
      height: 18px;
      color: var(--primary);
      flex-shrink: 0;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }

    .hero-note {
      font-size: 0.95rem;
      color: var(--muted);
    }

    .hero-split {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 18px;
      align-items: end;
    }

    .photo-card {
      position: relative;
      min-height: 240px;
      border-radius: 28px;
      overflow: hidden;
      background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
        url("assets/images/interior-main.jpg") center/cover;
    }

    .photo-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(36, 28, 23, 0.02), rgba(36, 28, 23, 0.34));
    }

    .float-card {
      position: relative;
      margin: 0 0 16px -34px;
      z-index: 1;
      padding: 18px;
      border-radius: 22px;
      background: var(--panel-strong);
      border: 1px solid rgba(146, 118, 92, 0.14);
      box-shadow: 0 18px 46px rgba(92, 69, 49, 0.14);
    }

    .float-card strong {
      display: block;
      font-size: 1.1rem;
      margin-bottom: 8px;
    }

    .float-card p {
      color: var(--muted);
      line-height: 1.55;
    }

    .hero-side {
      padding: 28px;
      display: grid;
      gap: 18px;
      align-content: start;
    }

    .section-label {
      margin-bottom: 6px;
    }

    .info-card {
      padding: 20px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(146, 118, 92, 0.1);
      transition: transform 0.24s ease, box-shadow 0.24s ease;
    }

    .info-card strong,
    .metric-value {
      display: block;
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 8px;
    }

    .info-card p,
    .metric-label {
      color: var(--muted);
      line-height: 1.6;
    }

    .metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin: 22px 0 0;
    }

    .metric {
      padding: 18px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.64);
      border: 1px solid rgba(146, 118, 92, 0.1);
    }

    .sections {
      padding: 10px 0 48px;
      display: grid;
      gap: 22px;
    }

    .section-panel {
      padding: 30px;
    }

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

    .section-head h2 {
      font-size: clamp(1.9rem, 3vw, 3rem);
      line-height: 1;
      letter-spacing: -0.04em;
      max-width: 12ch;
    }

    .section-head p {
      max-width: 42ch;
      color: var(--muted);
      line-height: 1.7;
    }

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

    .feature,
    .quote,
    .gallery-card,
    .cta-card {
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(146, 118, 92, 0.1);
      transition: transform 0.24s ease, box-shadow 0.24s ease;
    }

    .feature {
      padding: 22px;
      box-shadow: 0 16px 40px rgba(79, 56, 35, 0.06);
    }

    .feature-icon {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      margin-bottom: 16px;
      background: linear-gradient(135deg, rgba(214, 109, 67, 0.18), rgba(201, 217, 204, 0.32));
    }

    .feature-icon svg {
      width: 22px;
      height: 22px;
      color: var(--primary);
    }

    .feature h3,
    .quote strong,
    .cta-card h2,
    .gallery-card h3 {
      margin-bottom: 10px;
      font-size: 1.2rem;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .feature p,
    .quote p,
    .cta-card p,
    .gallery-card p {
      color: var(--muted);
      line-height: 1.65;
    }

    .process {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 18px;
      align-items: stretch;
    }

    .steps {
      display: grid;
      gap: 14px;
    }

    .step {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 16px;
      align-items: start;
      padding: 18px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(146, 118, 92, 0.1);
    }

    .step-index {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      background: linear-gradient(145deg, rgba(214, 109, 67, 0.22), rgba(255, 255, 255, 0.96));
      font-weight: 800;
      color: var(--primary);
      font-size: 1.1rem;
    }

    .quotes {
      display: grid;
      gap: 14px;
    }

    .quote {
      padding: 22px;
      box-shadow: 0 16px 36px rgba(79, 56, 35, 0.05);
    }

    .quote small {
      display: block;
      margin-top: 14px;
      color: #907c70;
      font-weight: 700;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 18px;
    }

    .gallery-mosaic {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 14px;
      min-height: 380px;
    }

    .gallery-stack {
      display: grid;
      gap: 14px;
    }

    .gallery-photo {
      border-radius: 26px;
      overflow: hidden;
      min-height: 183px;
      box-shadow: 0 16px 36px rgba(79, 56, 35, 0.08);
    }

    .gallery-photo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }

    .gallery-photo:hover img {
      transform: scale(1.05);
    }

    .gallery-card {
      padding: 26px;
      display: grid;
      align-content: space-between;
      gap: 18px;
    }

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

    .gallery-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(247, 243, 236, 0.82);
    }

    .gallery-item span {
      width: 32px;
      height: 32px;
      display: grid;
      place-items: center;
      border-radius: 10px;
      background: #fff;
      color: var(--primary);
      font-weight: 800;
      flex-shrink: 0;
    }

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

    .locations-accordion {
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.62);
      border: 1px solid rgba(146, 118, 92, 0.1);
      overflow: hidden;
    }

    .locations-accordion summary {
      list-style: none;
      cursor: pointer;
      padding: 20px 24px;
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .locations-accordion summary::-webkit-details-marker {
      display: none;
    }

    .locations-accordion summary::after {
      content: "+";
      width: 32px;
      height: 32px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(214, 109, 67, 0.1);
      color: var(--primary);
      font-size: 1.25rem;
      line-height: 1;
      flex-shrink: 0;
    }

    .locations-accordion[open] summary::after {
      content: "−";
    }

    .locations-accordion .locations-grid {
      padding: 0 20px 20px;
    }

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

    .hostel-photo {
      border-radius: 24px;
      overflow: hidden;
      min-height: 220px;
      background: rgba(255, 255, 255, 0.7);
      box-shadow: 0 16px 36px rgba(79, 56, 35, 0.08);
      border: 1px solid rgba(146, 118, 92, 0.08);
    }

    .hostel-photo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }

    .hostel-photo:hover img {
      transform: scale(1.04);
    }

    .location-card {
      display: grid;
      gap: 10px;
      padding: 20px;
      border-radius: 22px;
      text-decoration: none;
      background: rgba(255, 255, 255, 0.74);
      border: 1px solid rgba(146, 118, 92, 0.1);
      box-shadow: 0 16px 36px rgba(79, 56, 35, 0.05);
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    }

    .location-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 44px rgba(79, 56, 35, 0.09);
      border-color: rgba(214, 109, 67, 0.22);
    }

    .location-card strong {
      font-size: 1.04rem;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .location-card span {
      color: var(--muted);
      line-height: 1.55;
      font-size: 0.95rem;
    }

    .related-grid {
      position: relative;
    }

    .related-card {
      position: relative;
      padding-top: 48px;
    }

    .related-card::before {
      position: absolute;
      top: 16px;
      left: 18px;
      min-height: 26px;
      padding: 0 10px;
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      box-sizing: border-box;
    }

    .related-card--article {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 244, 235, 0.92));
    }

    .related-card--article::before {
      content: "Статья";
      background: rgba(214, 109, 67, 0.1);
      color: var(--primary);
    }

    .related-card--city {
      background:
        radial-gradient(circle at top right, rgba(201, 217, 204, 0.26), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(242, 247, 243, 0.92));
    }

    .related-card--city::before {
      content: "Город";
      background: rgba(111, 143, 121, 0.13);
      color: #55715c;
    }

    .related-card.is-active {
      border-color: rgba(214, 109, 67, 0.34);
      box-shadow: 0 24px 48px rgba(214, 109, 67, 0.14);
      transform: translateY(-2px);
      pointer-events: none;
      cursor: default;
    }

    .related-card.is-active::before {
      content: "Вы здесь";
      background: linear-gradient(135deg, var(--primary), #e58f63);
      color: #fff;
    }

    .cta-card {
      padding: 30px;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 20px;
      align-items: center;
      background:
        radial-gradient(circle at top right, rgba(214, 109, 67, 0.18), transparent 28%),
        radial-gradient(circle at left bottom, rgba(201, 217, 204, 0.25), transparent 30%),
        rgba(255, 255, 255, 0.78);
      box-shadow: 0 22px 52px rgba(79, 56, 35, 0.08);
    }

    .cta-boxes {
      display: grid;
      gap: 12px;
    }

    .cta-mini {
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.86);
      border: 1px solid rgba(146, 118, 92, 0.1);
    }

    .breadcrumbs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      margin: 20px 0 14px;
      padding: 10px 14px;
      border-radius: 999px;
      width: fit-content;
      max-width: 100%;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(146, 118, 92, 0.12);
      box-shadow: 0 12px 28px rgba(79, 56, 35, 0.05);
      color: var(--muted);
      font-size: 0.93rem;
      backdrop-filter: blur(18px);
    }

    .breadcrumbs::before {
      content: "⌂";
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(214, 109, 67, 0.1);
      color: var(--primary);
      font-size: 1rem;
      flex-shrink: 0;
    }

    .breadcrumbs a {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      background: rgba(214, 109, 67, 0.08);
      text-decoration: none;
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .breadcrumbs a:hover {
      background: rgba(214, 109, 67, 0.14);
      color: var(--ink);
      transform: translateY(-1px);
    }

    .breadcrumbs span[aria-hidden="true"] {
      opacity: 0.45;
    }

    .breadcrumbs-current {
      font-weight: 700;
      color: var(--ink);
    }

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

    .faq-item {
      border-radius: 22px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 244, 236, 0.88));
      border: 1px solid rgba(146, 118, 92, 0.1);
      overflow: hidden;
      box-shadow: 0 18px 38px rgba(79, 56, 35, 0.06);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .faq-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 44px rgba(79, 56, 35, 0.08);
      border-color: rgba(214, 109, 67, 0.18);
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 20px 22px;
      font-weight: 800;
      letter-spacing: -0.02em;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      transition: color 0.2s ease;
    }

    .faq-item summary::before {
      content: "?";
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 10px;
      background: rgba(214, 109, 67, 0.1);
      color: var(--primary);
      font-size: 0.98rem;
      line-height: 1;
      flex-shrink: 0;
    }

    .faq-item summary:hover {
      color: var(--primary);
    }

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

    .faq-item summary::after {
      content: "+";
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(214, 109, 67, 0.1);
      color: var(--primary);
      font-size: 1.2rem;
      line-height: 1;
      flex-shrink: 0;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .faq-item[open] summary::after {
      content: "−";
      transform: rotate(180deg);
      background: rgba(214, 109, 67, 0.16);
    }

    .faq-answer {
      padding: 0 22px 22px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 60ch;
    }

    footer {
      padding: 6px 0 34px;
      color: var(--muted);
      text-align: center;
      font-size: 0.95rem;
    }

    @media (max-width: 1100px) {
      .hero-grid,
      .process,
      .gallery-grid,
      .cta-card,
      .hero-split,
      .features,
      .locations-grid,
      .hostel-grid {
        grid-template-columns: 1fr;
      }

      .float-card {
        margin: -28px 0 0;
      }

      .breadcrumbs {
        width: 100%;
        border-radius: 20px;
      }

      .related-card {
        padding-top: 50px;
      }
    }

    @media (max-width: 820px) {
      .site-header .wrap,
      .section-head {
        flex-direction: column;
        align-items: flex-start;
      }

      .hero-main,
      .hero-side,
      .section-panel,
      .cta-card {
        padding: 22px;
      }

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

      .gallery-mosaic {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .header-actions {
        width: 100%;
        justify-content: flex-start;
      }
    }

    @media (max-width: 560px) {
      .wrap {
        width: min(var(--container), calc(100% - 20px));
      }

      h1 {
        font-size: 2.55rem;
      }

      .hero-main {
        min-height: auto;
      }

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

      .pill,
      .ghost-link {
        width: 100%;
      }

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