  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --cream: #F1EDE2;
    --paper: #FAF7EE;
    --surface: #FFFFFF;
    --ink: #1A2238;
    --ink-soft: #2A3247;
    --muted: #6B6759;
    --border: #E0DBC9;
    --accent: #1F3A6E;
    --accent-hover: #16294F;
    --on-photo: #FFFFFF;
  }

  html, body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Onest', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
  }

  body {
    font-variant-numeric: tabular-nums;
  }

  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  /* ============ HERO WRAPPER ============ */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--cream);
  }

  /* ============ PHOTO STAGE ============ */
  .photo-stage {
    position: relative;
    min-height: 68vh;
    width: 100%;
    overflow: hidden;
    background: #1A1410;
  }

  .photo-stage__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    filter: saturate(0.95) contrast(1.02);
  }

  .photo-stage__overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        180deg,
        rgba(15, 17, 28, 0.42) 0%,
        rgba(15, 17, 28, 0.18) 22%,
        rgba(15, 17, 28, 0.10) 45%,
        rgba(15, 17, 28, 0.55) 78%,
        rgba(15, 17, 28, 0.82) 100%
      );
  }

  .photo-stage__overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(15, 17, 28, 0.45) 0%,
      rgba(15, 17, 28, 0.12) 40%,
      transparent 70%
    );
    pointer-events: none;
  }

  /* ============ TOP NAV ============ */
  .nav {
    position: relative;
    z-index: 5;
    padding: 22px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--on-photo);
  }

  .nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .nav__logo {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--on-photo);
    color: var(--accent);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 16px;
  }

  .nav__center {
    display: flex;
    align-items: center;
    gap: 36px;
  }

  .nav__city {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    transition: background .18s ease;
    color: var(--on-photo);
  }

  .nav__city:hover { background: rgba(255, 255, 255, 0.13); }

  .nav__city .pin {
    width: 12px;
    height: 12px;
    color: var(--on-photo);
  }

  .nav__links {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .nav__links a {
    font-size: 14.5px;
    font-weight: 500;
    opacity: 0.88;
    transition: opacity .15s ease;
  }

  .nav__links a:hover { opacity: 1; }

  .nav__right {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .nav__login {
    font-size: 14.5px;
    font-weight: 500;
    opacity: 0.9;
  }

  .nav__signup {
    padding: 10px 18px;
    background: var(--on-photo);
    color: var(--ink);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: transform .15s ease, background .15s ease;
  }

  .nav__signup:hover {
    background: #F4F1E8;
    transform: translateY(-1px);
  }

  /* ============ MOBILE NAV (hamburger + drawer) ============ */
  .nav__toggle { display: none; }

  .nav__burger {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(6px);
    cursor: pointer;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    transition: background .18s ease;
  }

  .nav__burger:hover {
    background: rgba(255, 255, 255, 0.18);
  }

  .nav__burger-line {
    display: block;
    width: 16px;
    height: 1.6px;
    background: var(--on-photo);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
  }

  .nav__drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    transition: opacity .24s ease, visibility 0s linear .24s;
  }

  .nav__drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 17, 28, 0.62);
    backdrop-filter: blur(8px);
    cursor: pointer;
    display: block;
  }

  .nav__drawer-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 360px);
    background: var(--cream);
    color: var(--ink);
    padding: 88px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .28s cubic-bezier(.22,.61,.36,1);
    box-shadow: -24px 0 60px -20px rgba(0, 0, 0, 0.42);
  }

  .nav__drawer-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(26, 34, 56, 0.06);
    border: 1px solid rgba(26, 34, 56, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background .18s ease;
  }
  .nav__drawer-close:hover {
    background: rgba(26, 34, 56, 0.12);
  }
  .nav__drawer-close::before,
  .nav__drawer-close::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 1.8px;
    background: var(--ink);
    border-radius: 2px;
  }
  .nav__drawer-close::before { transform: rotate(45deg); }
  .nav__drawer-close::after { transform: rotate(-45deg); }

  .nav__drawer-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    padding: 14px 0;
    border-bottom: 1px solid rgba(26, 34, 56, 0.08);
    letter-spacing: -0.01em;
    transition: color .15s ease;
  }

  .nav__drawer-link:hover {
    color: var(--accent);
  }

  .nav__drawer-link--muted {
    color: var(--muted);
    font-weight: 500;
  }

  .nav__drawer-divider {
    height: 18px;
  }

  .nav__drawer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    background: var(--accent);
    color: var(--on-photo);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 8px;
    transition: background .18s ease;
  }

  .nav__drawer-cta:hover {
    background: var(--accent-hover);
  }

  .nav__toggle:checked ~ .nav__drawer {
    opacity: 1;
    visibility: visible;
    transition: opacity .24s ease, visibility 0s linear 0s;
  }

  .nav__toggle:checked ~ .nav__drawer .nav__drawer-inner {
    transform: translateX(0);
  }

  /* Burger → X */
  .nav__toggle:checked ~ .nav__burger {
    background: rgba(255, 255, 255, 0.22);
  }

  .nav__toggle:checked ~ .nav__burger .nav__burger-line:nth-child(1) {
    transform: translateY(5.6px) rotate(45deg);
  }

  .nav__toggle:checked ~ .nav__burger .nav__burger-line:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle:checked ~ .nav__burger .nav__burger-line:nth-child(3) {
    transform: translateY(-5.6px) rotate(-45deg);
  }

  /* ============ HERO CONTENT (ON PHOTO) ============ */
  .hero-content {
    position: relative;
    z-index: 4;
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding: 0 56px 64px;
    color: var(--on-photo);
  }

  .hero-content__inner {
    max-width: 880px;
    width: 100%;
  }

  .hero-content__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    margin-bottom: 22px;
  }

  .hero-content__eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #B8F0C8;
  }

  .hero-content__h1 {
    font-size: clamp(40px, 6.4vw, 84px);
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    max-width: 14ch;
  }

  .hero-content__h1 .accent-line {
    display: block;
    color: #FFFFFF;
  }

  .hero-content__sub {
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.45;
    font-weight: 400;
    opacity: 0.92;
    margin-bottom: 32px;
    max-width: 48ch;
  }

  .hero-content__sub strong {
    font-weight: 600;
  }

  /* ============ SEARCH BAR ============ */
  .search-bar {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--surface);
    padding: 8px;
    border-radius: 14px;
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.45),
                0 2px 8px rgba(0, 0, 0, 0.12);
    max-width: 620px;
    margin-bottom: 22px;
  }

  .search-bar__city {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px 12px 16px;
    border-right: 1px solid var(--border);
    color: var(--ink);
    flex: 0 0 auto;
  }

  .search-bar__city-label {
    display: block;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.01em;
    margin-bottom: 2px;
  }

  .search-bar__city-val {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
  }

  .search-bar__city-val svg {
    width: 12px;
    height: 12px;
    color: var(--muted);
  }

  .search-bar__rooms {
    padding: 12px 20px;
    color: var(--ink);
    flex: 1;
  }

  .search-bar__rooms-label {
    display: block;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 2px;
  }

  .search-bar__rooms-val {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
  }

  .search-bar__cta {
    background: var(--accent);
    color: var(--on-photo);
    padding: 14px 26px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .15s ease, transform .15s ease;
    white-space: nowrap;
  }

  .search-bar__cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
  }

  .search-bar__cta svg {
    width: 16px;
    height: 16px;
  }

  /* ============ TRUST LINE ============ */
  .trust-line {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    font-size: 13.5px;
    opacity: 0.85;
    font-weight: 400;
  }

  .trust-line__item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }

  .trust-line__check {
    width: 14px;
    height: 14px;
    color: #B8F0C8;
    flex-shrink: 0;
  }

  /* ============ LISTINGS STRIP ============ */
  .strip {
    background: var(--cream);
    padding: 36px 0 44px;
    flex-shrink: 0;
  }

  .strip__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0 56px 22px;
  }

  .strip__title {
    font-size: 19px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
  }

  .strip__title-sep {
    color: var(--muted);
    font-weight: 400;
    margin: 0 6px;
  }

  .strip__title-city {
    color: var(--muted);
    font-weight: 500;
  }

  .strip__viewall {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .15s ease;
  }

  .strip__viewall:hover { gap: 10px; }

  .strip__scroll-wrap {
    position: relative;
  }

  .strip__scroll {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    padding: 4px 56px 12px;
  }

  .strip__scroll-wrap::after { display: none; }

  .card {
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
    border: 1px solid var(--border);
  }

  .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px -8px rgba(26, 34, 56, 0.15);
  }

  .card__photo {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    background: var(--border);
  }

  .card__body {
    padding: 12px 14px 14px;
  }

  .card__price {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.1;
  }

  .card__price .cur {
    font-weight: 500;
    color: var(--muted);
    font-size: 14px;
  }

  .card__meta {
    margin-top: 4px;
    font-size: 13px;
    color: var(--ink-soft);
    font-weight: 500;
  }

  .card__meta .sep {
    color: var(--border);
    margin: 0 5px;
  }

  .card__tag {
    margin-top: 9px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: var(--muted);
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--paper);
    border: 1px solid var(--border);
    font-weight: 500;
  }

  .card__tag-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #6BA77A;
  }

  /* ============ RESPONSIVE GUARDS — HERO + STRIP ============ */

  /* --- Tablet large 1280 --- */
  @media (max-width: 1280px) {
    .nav { padding: 20px 40px; }
    .nav__links { gap: 22px; }
    .nav__center { gap: 28px; }
    .hero-content { padding: 0 40px 56px; }
    .strip__head { padding-left: 40px; padding-right: 40px; }
    .strip__scroll { padding-left: 40px; padding-right: 40px; }
    .strip__scroll { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  }

  /* --- Tablet small 1024 --- */
  @media (max-width: 1024px) {
    .nav { padding: 18px 28px; }
    .nav__links { gap: 18px; }
    .nav__links a { font-size: 13.5px; }
    .nav__center { gap: 18px; }
    .nav__right { gap: 12px; }
    .nav__login { font-size: 13.5px; }
    .nav__signup { padding: 9px 14px; font-size: 13.5px; }
    .hero-content { padding: 0 28px 48px; }
    .strip__head { padding-left: 28px; padding-right: 28px; }
    .strip__scroll { padding-left: 28px; padding-right: 28px; }
    .strip__scroll { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .photo-stage { min-height: 64vh; }
  }

  /* --- Mobile 768 --- */
  @media (max-width: 768px) {
    /* Hide desktop nav links + show burger */
    .nav { padding: 16px 20px; }
    .nav__center { display: none; }
    .nav__right { display: none; }
    .nav__burger { display: inline-flex; }
    .nav__drawer { display: block; }
    .nav__brand { font-size: 17px; }
    .nav__logo { width: 28px; height: 28px; font-size: 15px; }

    .photo-stage { min-height: 88vh; }
    .photo-stage__img { object-position: center 50%; }

    .hero-content { align-items: center; padding: 40px 20px; }
    .hero-content__h1 { font-size: clamp(34px, 9vw, 52px); margin-bottom: 16px; }
    .hero-content__sub { margin-bottom: 24px; font-size: 15.5px; }
    .hero-content__eyebrow { font-size: 12px; padding: 5px 12px; margin-bottom: 18px; }

    .search-bar {
      flex-direction: column;
      align-items: stretch;
      padding: 6px;
      border-radius: 12px;
      margin-bottom: 20px;
    }
    .search-bar__city,
    .search-bar__rooms {
      border-right: none !important;
      border-bottom: 1px solid var(--border);
      padding: 12px 14px;
      flex: 0 0 auto !important;
      align-items: stretch !important;
      min-width: 0;
    }
    .search-bar__rooms { border-bottom: none; }
    .search-bar__cta {
      justify-content: center;
      padding: 14px;
      width: 100%;
      margin-top: 6px;
    }

    .trust-line {
      gap: 10px 14px;
      font-size: 12.5px;
    }
    .trust-line__item { gap: 6px; }

    /* Strip → 2 cols, smaller cards */
    .strip { padding: 28px 0 36px; }
    .strip__head { padding: 0 20px 18px; flex-wrap: wrap; gap: 8px; }
    .strip__title { font-size: 17px; }
    .strip__viewall { font-size: 13px; }
    .strip__scroll {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      padding: 4px 20px 8px;
    }
    .card__photo { height: 120px; }
    .card__body { padding: 10px 12px 12px; }
    .card__price { font-size: 15.5px; }
    .card__price .cur { font-size: 13px; }
    .card__meta { font-size: 12px; }
    .card__tag { font-size: 11px; margin-top: 7px; }
  }

  /* --- Small mobile 480 --- */
  @media (max-width: 480px) {
    .nav { padding: 14px 16px; }
    .hero-content { align-items: center; padding: 32px 16px; }
    .hero-content__h1 { font-size: clamp(30px, 9vw, 42px); }
    .photo-stage { min-height: 92vh; }

    .strip__head { padding: 0 16px 14px; }
    .strip__scroll { padding: 4px 16px 8px; gap: 10px; }
    .card__photo { height: 108px; }
    .nav__drawer-inner { padding: 80px 24px 28px; width: min(92vw, 320px); }
  }

  /* ============ SHOWCASE (Apartment gallery, masonry/bento) ============ */
  .show {
    background: var(--cream);
    padding: clamp(90px, 12vw, 140px) 56px clamp(80px, 10vw, 120px);
    position: relative;
  }

  .show__inner {
    max-width: 1340px;
    margin: 0 auto;
  }

  .show__head {
    max-width: 920px;
    margin-bottom: clamp(48px, 5vw, 72px);
  }

  .show__eyebrow {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.005em;
    margin-bottom: 22px;
    display: inline-block;
  }

  .show__h2 {
    font-size: clamp(44px, 6.4vw, 72px);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -0.028em;
    color: var(--ink);
    margin-bottom: 22px;
    max-width: 16ch;
  }

  .show__sub {
    font-size: clamp(17px, 1.4vw, 19.5px);
    line-height: 1.5;
    font-weight: 400;
    color: var(--muted);
    max-width: 58ch;
  }

  /* Bento grid — clean asymmetric, 12 col × 3 row */
  .show__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, 220px);
    grid-template-areas:
      "f f f f f f a a a b b b"
      "f f f f f f a a a b b b"
      "c c c c d d d d e e e e";
    gap: 16px;
  }

  .show__card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--ink);
    display: block;
    isolation: isolate;
    transition: transform .35s cubic-bezier(.22,.61,.36,1),
                box-shadow .35s ease;
  }

  .show__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 50px -20px rgba(26, 34, 56, 0.32);
  }

  .show__card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(.22,.61,.36,1);
  }

  .show__card:hover .show__card-img {
    transform: scale(1.045);
  }

  .show__card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(15, 17, 28, 0) 0%,
      rgba(15, 17, 28, 0) 38%,
      rgba(15, 17, 28, 0.18) 60%,
      rgba(15, 17, 28, 0.78) 100%
    );
    pointer-events: none;
  }

  .show__card-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 22px 18px;
    color: var(--on-photo);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .show__card-price {
    font-size: clamp(20px, 1.7vw, 26px);
    font-weight: 700;
    letter-spacing: -0.018em;
    line-height: 1.05;
    transition: transform .3s cubic-bezier(.22,.61,.36,1);
    transform-origin: left bottom;
  }

  .show__card:hover .show__card-price {
    transform: scale(1.06);
  }

  .show__card-price .cur {
    font-weight: 500;
    opacity: 0.78;
    font-size: 0.74em;
    margin-left: 2px;
  }

  .show__card-loc {
    font-size: 13.5px;
    font-weight: 500;
    opacity: 0.92;
    letter-spacing: 0.002em;
    line-height: 1.35;
  }

  .show__card-loc .dotsep {
    opacity: 0.55;
    margin: 0 6px;
  }

  /* Featured (Печерськ — large) */
  .show__card--featured {
    grid-area: f;
  }

  .show__card--featured .show__card-price {
    font-size: clamp(26px, 2.2vw, 34px);
  }

  .show__card--featured .show__card-meta {
    padding: 26px 28px 24px;
  }

  /* Tall portrait */
  .show__card--tall {
    grid-area: a;
  }

  /* Wide landscape */
  .show__card--wide {
    grid-area: b;
  }

  /* Standard */
  .show__card--std {
    grid-area: c;
  }

  .show__card--std-sm {
    grid-area: d;
  }

  .show__card--mid {
    grid-area: e;
  }

  /* Footer line */
  .show__foot {
    margin-top: clamp(40px, 4vw, 56px);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .show__foot-link {
    font-size: clamp(17px, 1.35vw, 20px);
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.005em;
    transition: gap .2s ease, color .15s ease;
  }

  .show__foot-link:hover {
    gap: 14px;
    color: var(--accent-hover);
  }

  .show__foot-link .arr {
    transition: transform .2s ease;
  }

  .show__foot-link:hover .arr {
    transform: translateX(2px);
  }

  .show__foot-note {
    font-size: 14.5px;
    color: var(--muted);
    font-weight: 400;
  }

  .show__foot-note::before {
    content: "·";
    margin-right: 12px;
    opacity: 0.55;
  }

  @media (max-width: 1280px) {
    .show { padding-left: 40px; padding-right: 40px; }
    .show__grid { grid-template-rows: repeat(3, 200px); gap: 14px; }
  }

  @media (max-width: 1024px) {
    .show { padding-left: 28px; padding-right: 28px; }
    .show__grid {
      grid-template-columns: repeat(6, 1fr);
      grid-template-rows: none;
      grid-template-areas: none;
      grid-auto-rows: 180px;
    }
    .show__card--featured { grid-column: span 6; grid-row: span 2; }
    .show__card--tall { grid-column: span 3; grid-row: span 2; }
    .show__card--wide { grid-column: span 3; grid-row: span 2; }
    .show__card--std { grid-column: span 3; grid-row: span 2; }
    .show__card--std-sm { grid-column: span 3; grid-row: span 2; }
    .show__card--mid { grid-column: span 6; grid-row: span 2; }
  }

  @media (max-width: 768px) {
    .show { padding: 80px 20px 84px; }
    .show__head { margin-bottom: 44px; }
    .show__grid {
      grid-template-columns: 1fr;
      grid-template-areas: none;
      grid-auto-rows: 220px;
      gap: 12px;
    }
    .show__card--featured,
    .show__card--tall,
    .show__card--wide,
    .show__card--std,
    .show__card--std-sm,
    .show__card--mid {
      grid-column: span 1;
      grid-row: span 1;
    }
    .show__card--featured { grid-row: span 2; }
    .show__card-meta { padding: 16px 18px 14px; }
    .show__foot { margin-top: 32px; gap: 8px; }
    .show__foot-note::before { display: none; }
    .show__foot-note { width: 100%; }
  }

  @media (max-width: 480px) {
    .show { padding: 64px 16px 72px; }
    .show__grid { grid-auto-rows: 200px; }
    .show__card--featured { grid-row: span 2; }
    .show__card-price { font-size: 19px; }
    .show__card--featured .show__card-price { font-size: 24px; }
  }

  /* ============ STEPS (Photo storytelling) ============ */
  .steps {
    background: var(--paper);
    padding: clamp(90px, 12vw, 140px) 56px clamp(90px, 11vw, 130px);
    position: relative;
  }

  .steps__inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .steps__head {
    max-width: 760px;
    margin-bottom: clamp(64px, 7vw, 100px);
  }

  .steps__eyebrow {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.005em;
    margin-bottom: 22px;
    display: inline-block;
  }

  .steps__h2 {
    font-size: clamp(44px, 6.4vw, 72px);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -0.028em;
    color: var(--ink);
    margin-bottom: 22px;
    max-width: 12ch;
  }

  .steps__sub {
    font-size: clamp(17px, 1.4vw, 19.5px);
    line-height: 1.5;
    font-weight: 400;
    color: var(--muted);
    max-width: 52ch;
  }

  /* Stagger list */
  .steps__list {
    display: flex;
    flex-direction: column;
    gap: clamp(70px, 8vw, 120px);
  }

  /* One row: 50/50 split */
  .steps__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 84px);
    align-items: center;
  }

  .steps__row--reverse .steps__media {
    order: 2;
  }

  .steps__row--reverse .steps__text {
    order: 1;
  }

  /* Media side */
  .steps__media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--border);
    isolation: isolate;
  }

  .steps__media-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(.22,.61,.36,1);
  }

  .steps__row:hover .steps__media-img {
    transform: scale(1.035);
  }

  .steps__media-tone {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      160deg,
      rgba(15, 17, 28, 0.02) 0%,
      rgba(15, 17, 28, 0) 40%,
      rgba(15, 17, 28, 0.18) 100%
    );
    pointer-events: none;
  }

  /* Text side */
  .steps__text {
    max-width: 480px;
  }

  .steps__row--reverse .steps__text {
    margin-left: auto;
  }

  .steps__label {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.005em;
    margin-bottom: 18px;
    font-variant-numeric: tabular-nums;
  }

  .steps__label-num {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--accent);
  }

  .steps__label-bar {
    display: inline-block;
    width: 22px;
    height: 1.5px;
    background: var(--accent);
    opacity: 0.55;
    transform: translateY(-3px);
  }

  .steps__label-txt {
    font-weight: 600;
    color: var(--accent);
  }

  .steps__h3 {
    font-size: clamp(26px, 2.5vw, 34px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.022em;
    color: var(--ink);
    margin-bottom: 18px;
    max-width: 18ch;
  }

  .steps__body {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 22px;
    font-weight: 400;
  }

  .steps__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: -0.003em;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
    transition: gap .2s ease, color .15s ease, border-color .15s ease;
  }

  .steps__link:hover {
    gap: 12px;
    color: var(--accent-hover);
    border-bottom-color: var(--accent-hover);
  }

  .steps__link .arr {
    transition: transform .2s ease;
  }

  .steps__link:hover .arr {
    transform: translateX(2px);
  }

  @media (max-width: 1280px) {
    .steps { padding-left: 40px; padding-right: 40px; }
    .steps__row { gap: 48px; }
  }

  @media (max-width: 1024px) {
    .steps { padding-left: 28px; padding-right: 28px; }
    .steps__row { gap: 36px; }
    .steps__h3 { font-size: clamp(24px, 3vw, 30px); }
    .steps__body { font-size: 16px; }
  }

  /* Mobile — stack photo above text, kill alternation */
  @media (max-width: 768px) {
    .steps { padding: 80px 20px 88px; }
    .steps__head { margin-bottom: 52px; }
    .steps__list { gap: 60px; }
    .steps__row {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .steps__row--reverse .steps__media { order: 0; }
    .steps__row--reverse .steps__text { order: 1; margin-left: 0; }
    .steps__text { max-width: 100%; }
    .steps__media { aspect-ratio: 16 / 10; border-radius: 14px; }
    .steps__h3 { font-size: clamp(22px, 5.4vw, 28px); margin-bottom: 14px; }
    .steps__body { font-size: 15.5px; margin-bottom: 18px; }
    .steps__label { margin-bottom: 14px; }
  }

  @media (max-width: 480px) {
    .steps { padding: 64px 16px 72px; }
    .steps__list { gap: 48px; }
    .steps__media { aspect-ratio: 5 / 4; border-radius: 12px; }
    .steps__head { margin-bottom: 40px; }
    .steps__body { font-size: 15px; line-height: 1.55; }
  }

  /* ============ COVERAGE — clean grid (17 cities) ============ */
  .cov2-static{
    background: var(--paper);
    padding: clamp(80px, 9vw, 120px) 56px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .cov2-static__inner{
    max-width: 1180px;
    margin: 0 auto;
  }
  .cov2-static__head{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 44px;
    flex-wrap: wrap;
  }
  .cov2-static__head-left{
    max-width: 620px;
  }
  .cov2-static__eyebrow{
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 14px;
    display: inline-block;
  }
  .cov2-static__h2{
    font-size: clamp(32px, 3.6vw, 44px);
    line-height: 1.1;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.025em;
    margin: 0 0 12px;
  }
  .cov2-static__sub{
    font-size: 15.5px;
    color: var(--muted);
    margin: 0;
  }
  .cov2-static__total{
    text-align: right;
  }
  .cov2-static__total-num{
    font-size: 36px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: -0.025em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
  }
  .cov2-static__total-label{
    font-size: 13px;
    color: var(--muted);
    margin-top: 6px;
  }
  .cov2-static__grid{
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }
  .cov2-static__tile{
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: border-color .15s ease, transform .15s ease;
    text-decoration: none;
    color: inherit;
  }
  .cov2-static__tile:hover{
    border-color: var(--accent);
    transform: translateY(-1px);
  }
  .cov2-static__tile-name{
    font-size: 15.5px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.005em;
  }
  .cov2-static__tile-count{
    font-size: 13px;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
  }
  @media (max-width: 1280px){
    .cov2-static{ padding-left: 40px; padding-right: 40px; }
    .cov2-static__grid{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
  }
  @media (max-width: 1024px){
    .cov2-static{ padding-left: 28px; padding-right: 28px; }
    .cov2-static__grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .cov2-static__head{ margin-bottom: 36px; }
    .cov2-static__total-num { font-size: 32px; }
  }
  @media (max-width: 768px){
    .cov2-static{ padding: 72px 20px 80px; }
    .cov2-static__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .cov2-static__head{ margin-bottom: 28px; flex-direction: column; align-items: flex-start; gap: 18px; }
    .cov2-static__total{ text-align: left; }
    .cov2-static__total-num { font-size: 30px; }
    .cov2-static__tile{ padding: 14px 14px 13px; }
    .cov2-static__tile-name{ font-size: 14.5px; }
    .cov2-static__tile-count{ font-size: 12.5px; }
  }
  @media (max-width: 480px){
    .cov2-static{ padding: 60px 16px 70px; }
    .cov2-static__h2{ font-size: clamp(28px, 7vw, 36px); }
  }

  /* ============ COVERAGE — RIBBON (legacy, unused) ============ */
  .cov2 {
    background: var(--cream);
    padding: clamp(90px, 11vw, 130px) 0 clamp(90px, 11vw, 130px);
    position: relative;
    overflow: hidden;
  }

  .cov2__head {
    max-width: 760px;
    padding: 0 56px;
    margin-bottom: clamp(48px, 5vw, 72px);
  }

  .cov2__eyebrow {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.005em;
    margin-bottom: 22px;
    display: inline-block;
  }

  .cov2__h2 {
    font-size: clamp(40px, 5.4vw, 56px);
    line-height: 1.04;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 18px;
    max-width: 14ch;
  }

  .cov2__sub {
    font-size: clamp(16.5px, 1.35vw, 18.5px);
    line-height: 1.5;
    font-weight: 400;
    color: var(--muted);
    max-width: 52ch;
  }

  /* Ribbon wrapper — full bleed, with fade edges */
  .cov2__ribbon-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Gradient fade-out on both edges */
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%
    );
  }

  .cov2__track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: cov2-marquee 60s linear infinite;
    will-change: transform;
  }

  .cov2__ribbon-wrap:hover .cov2__track {
    animation-play-state: paused;
  }

  @keyframes cov2-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* Pills */
  .cov2__pill {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.005em;
    transition: transform .2s ease, box-shadow .2s ease;
    cursor: pointer;
    user-select: none;
  }

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

  .cov2__pill-name {
    font-weight: 600;
  }

  .cov2__pill-sep {
    opacity: 0.55;
    margin: 0 1px;
  }

  .cov2__pill-count {
    font-weight: 500;
    font-size: 14.5px;
    opacity: 0.85;
  }

  /* High-count pills — solid navy bg */
  .cov2__pill--solid {
    background: var(--accent);
    color: var(--on-photo);
    padding: 16px 26px;
    font-size: 17px;
  }

  .cov2__pill--solid:hover {
    background: var(--accent-hover);
    box-shadow: 0 8px 20px -6px rgba(31, 58, 110, 0.35);
  }

  .cov2__pill--solid .cov2__pill-count {
    opacity: 0.78;
  }

  /* Low-count pills — outline navy */
  .cov2__pill--outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
  }

  .cov2__pill--outline:hover {
    background: rgba(31, 58, 110, 0.06);
  }

  .cov2__pill--outline .cov2__pill-count {
    color: var(--muted);
    opacity: 1;
  }

  /* Medium pills — soft surface */
  .cov2__pill--soft {
    background: var(--surface);
    color: var(--ink);
    border: 1px solid var(--border);
  }

  .cov2__pill--soft:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  .cov2__pill--soft .cov2__pill-count {
    color: var(--muted);
  }

  /* CTA below ribbon */
  .cov2__foot {
    margin-top: clamp(44px, 5vw, 64px);
    padding: 0 56px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .cov2__cta {
    font-size: clamp(17px, 1.35vw, 19.5px);
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.005em;
    transition: gap .2s ease, color .15s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
  }

  .cov2__cta:hover {
    gap: 14px;
    color: var(--accent-hover);
    border-bottom-color: var(--accent-hover);
  }

  .cov2__cta .arr {
    transition: transform .2s ease;
  }

  .cov2__cta:hover .arr {
    transform: translateX(2px);
  }

  .cov2__foot-note {
    font-size: 14.5px;
    color: var(--muted);
    font-weight: 400;
  }

  .cov2__foot-note::before {
    content: "·";
    margin-right: 12px;
    opacity: 0.55;
  }

  @media (max-width: 1100px) {
    .cov2__head { padding-left: 32px; padding-right: 32px; }
    .cov2__foot { padding-left: 32px; padding-right: 32px; }
  }

  @media (max-width: 760px) {
    .cov2 { padding: 80px 0 90px; }
    .cov2__head { padding: 0 24px; margin-bottom: 40px; }
    .cov2__foot { padding: 0 24px; }
    .cov2__pill {
      padding: 11px 18px;
      font-size: 15px;
    }
    .cov2__pill--solid {
      padding: 13px 20px;
      font-size: 15.5px;
    }
    .cov2__pill-count { font-size: 13.5px; }
    .cov2__track {
      gap: 10px;
      animation-duration: 50s;
    }
    .cov2__foot-note::before { display: none; }
    .cov2__foot-note { width: 100%; }
  }

  @media (prefers-reduced-motion: reduce) {
    .cov2__track {
      animation: none;
    }
    .cov2__ribbon-wrap {
      overflow-x: auto;
      scrollbar-width: thin;
    }
  }

  /* ============ PRICING (horizontal stacked) ============ */
  .price {
    background: var(--cream);
    padding: 120px 0 140px;
  }

  .price__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .price__head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 880px;
    margin: 0 0 72px;
  }

  .price__eyebrow {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--muted);
  }

  .price__eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--accent);
    vertical-align: middle;
    margin-right: 12px;
    transform: translateY(-3px);
  }

  .price__h2 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--ink);
    max-width: 18ch;
  }

  .price__h2 em {
    font-style: normal;
    color: var(--accent);
  }

  .price__sub {
    font-size: 18px;
    line-height: 1.5;
    color: var(--muted);
    max-width: 56ch;
    margin-top: 6px;
  }

  .price__stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* Shared card shell */
  .price__card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 1.05fr) minmax(280px, 1.4fr) minmax(260px, 1fr);
    align-items: center;
    gap: 56px;
    padding: 48px 52px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  }

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

  .price__left { min-width: 0; }
  .price__mid  { min-width: 0; }
  .price__right { min-width: 0; text-align: right; }

  .price__name {
    font-size: clamp(34px, 3.4vw, 46px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink);
  }

  .price__tag {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.45;
    color: var(--muted);
    max-width: 22ch;
  }

  .price__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
  }

  .price__features li {
    position: relative;
    padding-left: 28px;
    font-size: 15.5px;
    line-height: 1.45;
    color: var(--ink-soft);
  }

  .price__features li::before {
    content: "—";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 500;
  }

  .price__amount {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 8px;
    font-variant-numeric: tabular-nums;
  }

  .price__num {
    font-size: clamp(32px, 3vw, 42px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.015em;
    color: var(--accent);
  }

  .price__per {
    font-size: 14px;
    color: var(--muted);
    line-height: 1;
  }

  .price__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
    white-space: nowrap;
  }

  .price__cta svg {
    width: 14px;
    height: 14px;
    transition: transform .2s ease;
  }

  .price__cta:hover svg { transform: translateX(3px); }

  /* ---- Card 1: BASIC (white outline, neutral) ---- */
  .price__card--basic {
    background: var(--surface);
    border-color: var(--border);
  }
  .price__card--basic .price__cta {
    color: var(--accent);
    border: 1px solid var(--accent);
    background: transparent;
  }
  .price__card--basic .price__cta:hover {
    background: var(--accent);
    color: var(--surface);
  }

  /* ---- Card 2: MONTHLY (cream, navy hairline left, mid emphasis) ---- */
  .price__card--monthly {
    background: #F4EDE0;
    border-color: #D8D0BB;
    box-shadow: 0 1px 0 rgba(31, 58, 110, 0.04), 0 18px 40px -28px rgba(31, 58, 110, 0.18);
  }
  .price__card--monthly::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18%;
    bottom: 18%;
    width: 2px;
    background: var(--accent);
    border-radius: 2px;
  }
  .price__card--monthly .price__hint {
    display: inline-block;
    margin-top: 18px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    background: rgba(31, 58, 110, 0.07);
    border-radius: 999px;
    letter-spacing: 0.01em;
  }
  .price__card--monthly .price__cta {
    color: var(--surface);
    background: var(--accent);
    border: 1px solid var(--accent);
  }
  .price__card--monthly .price__cta:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
  }

  /* ---- Card 3: PRO (navy bg, cream text, accent CTA) ---- */
  .price__card--pro {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--cream);
  }
  .price__card--pro .price__name { color: var(--cream); }
  .price__card--pro .price__tag { color: rgba(241, 237, 226, 0.66); }
  .price__card--pro .price__features li { color: rgba(241, 237, 226, 0.88); }
  .price__card--pro .price__features li::before { color: #E3B25C; }
  .price__card--pro .price__num { color: var(--cream); }
  .price__card--pro .price__per { color: rgba(241, 237, 226, 0.6); }
  .price__card--pro .price__cta {
    color: var(--accent);
    background: #E3B25C;
    border: 1px solid #E3B25C;
  }
  .price__card--pro .price__cta:hover {
    background: #EFC279;
    border-color: #EFC279;
  }

  .price__foot {
    margin-top: 48px;
    text-align: center;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
  }

  .price__foot strong {
    color: var(--ink);
    font-weight: 500;
  }

  /* Responsive */
  @media (max-width: 1280px) {
    .price__inner { padding: 0 40px; }
    .price__card {
      grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.3fr) minmax(220px, 0.9fr);
      gap: 40px;
      padding: 42px 44px;
    }
    .price__name { font-size: clamp(30px, 3vw, 38px); }
  }

  @media (max-width: 1024px) {
    .price { padding: 90px 0 110px; }
    .price__inner { padding: 0 28px; }
    .price__card {
      grid-template-columns: 1fr;
      gap: 28px;
      padding: 36px 32px;
    }
    .price__right { text-align: left; }
    .price__amount { justify-content: flex-start; }
    .price__card--monthly::before {
      left: 20px;
      top: 28px;
      bottom: auto;
      width: 28px;
      height: 2px;
    }
  }

  @media (max-width: 768px) {
    .price { padding: 80px 0 96px; }
    .price__inner { padding: 0 20px; }
    .price__head { margin-bottom: 52px; }
    .price__card {
      padding: 30px 24px;
      gap: 22px;
      border-radius: 10px;
    }
    .price__name { font-size: clamp(26px, 6.5vw, 34px); }
    .price__tag { font-size: 14.5px; margin-top: 12px; }
    .price__features li { font-size: 14.5px; padding-left: 24px; }
    .price__num { font-size: clamp(26px, 6vw, 34px); }
    .price__per { font-size: 13.5px; }
    .price__cta { width: 100%; padding: 14px 22px; margin-top: 18px; }
    .price__card--monthly::before {
      left: 16px;
      top: 22px;
      width: 22px;
    }
    .price__foot { font-size: 13.5px; margin-top: 36px; }
  }

  @media (max-width: 480px) {
    .price { padding: 60px 0 80px; }
    .price__inner { padding: 0 16px; }
    .price__head { margin-bottom: 40px; }
    .price__card { padding: 26px 20px; gap: 20px; }
    .price__cta { padding: 13px 18px; font-size: 14.5px; }
    .price__h2 { font-size: clamp(32px, 8vw, 44px); }
  }

  /* ============ FAQ v2 — 2-col masonry з sticky support ============ */
  .faq2 {
    background: var(--paper);
    padding: 128px 0 144px;
    border-top: 1px solid var(--border);
  }

  .faq2__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .faq2__head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 880px;
    margin: 0 0 80px;
  }

  .faq2__eyebrow {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--muted);
  }

  .faq2__eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--accent);
    vertical-align: middle;
    margin-right: 12px;
    transform: translateY(-3px);
  }

  .faq2__h2 {
    font-size: clamp(40px, 5.6vw, 68px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    max-width: 16ch;
  }

  .faq2__sub {
    font-size: 18px;
    line-height: 1.55;
    color: var(--muted);
    max-width: 52ch;
    margin-top: 6px;
  }

  .faq2__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 72px;
    align-items: start;
  }

  /* LEFT — narrative stack of Q&A */
  .faq2__stream {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .faq2__item {
    padding: 36px 0 38px;
    border-bottom: 1px solid rgba(26, 34, 56, 0.08);
  }

  .faq2__item:first-child {
    padding-top: 0;
  }

  .faq2__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .faq2__q {
    font-size: clamp(22px, 2vw, 26px);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 14px;
    display: flex;
    align-items: baseline;
    gap: 14px;
  }

  .faq2__num {
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    min-width: 32px;
  }

  .faq2__a {
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 60ch;
    padding-left: 46px;
  }

  /* RIGHT — sticky support card */
  .faq2__aside {
    position: sticky;
    top: 32px;
  }

  .faq2__card {
    background: var(--paper);
    border: 1px solid var(--accent);
    border-radius: 10px;
    padding: 38px 36px 34px;
    box-shadow: 0 2px 0 rgba(31, 58, 110, 0.04);
  }

  .faq2__card-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 12px;
  }

  .faq2__card-body {
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--muted);
    margin-bottom: 26px;
  }

  .faq2__contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px;
  }

  .faq2__contact {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--accent);
    transition: color .15s ease;
  }

  .faq2__contact:hover {
    color: var(--accent-hover);
  }

  .faq2__contact-ico {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
  }

  .faq2__hours {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.4;
    color: var(--muted);
    padding-top: 22px;
    border-top: 1px solid rgba(31, 58, 110, 0.12);
    margin-bottom: 24px;
  }

  .faq2__hours-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2E8F3F;
    box-shadow: 0 0 0 3px rgba(46, 143, 63, 0.15);
    flex-shrink: 0;
  }

  .faq2__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    background: var(--accent);
    color: var(--on-photo);
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: 600;
    transition: background .18s ease, transform .15s ease;
    width: 100%;
    justify-content: center;
  }

  .faq2__cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
  }

  .faq2__cta svg {
    width: 13px;
    height: 13px;
  }

  /* Tablet large */
  @media (max-width: 1280px) {
    .faq2 { padding: 112px 0 128px; }
    .faq2__inner { padding: 0 40px; }
    .faq2__grid { gap: 56px; }
  }

  /* Tablet — collapse to 1-col */
  @media (max-width: 1024px) {
    .faq2 { padding: 96px 0 112px; }
    .faq2__inner { padding: 0 28px; }
    .faq2__grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .faq2__aside {
      position: static;
      max-width: 560px;
    }
    .faq2__head { margin-bottom: 56px; }
  }

  /* Mobile */
  @media (max-width: 768px) {
    .faq2 { padding: 80px 0 92px; }
    .faq2__inner { padding: 0 20px; }
    .faq2__head { margin-bottom: 44px; }
    .faq2__item { padding: 28px 0 30px; }
    .faq2__a { padding-left: 0; font-size: 15.5px; }
    .faq2__q { gap: 10px; font-size: clamp(19px, 4.6vw, 23px); }
    .faq2__num { min-width: 26px; font-size: 12.5px; }
    .faq2__card { padding: 30px 26px 28px; border-radius: 12px; }
    .faq2__card-title { font-size: 21px; }
    .faq2__card-body { font-size: 14.5px; }
    .faq2__contact { font-size: 14.5px; }
  }

  @media (max-width: 480px) {
    .faq2 { padding: 64px 0 80px; }
    .faq2__inner { padding: 0 16px; }
    .faq2__head { margin-bottom: 36px; }
    .faq2__card { padding: 26px 22px 24px; }
  }

  /* ============ OWNERS v2 — narrative split з real interior photo ============ */
  .owners2 {
    background: var(--cream);
    padding: 140px 0 144px;
    border-top: 1px solid var(--border);
    position: relative;
  }

  .owners2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--paper);
    opacity: 0.35;
    pointer-events: none;
  }

  .owners2__inner {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 88px;
    align-items: center;
  }

  /* LEFT — interior photo */
  .owners2__media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow:
      0 2px 4px rgba(26, 34, 56, 0.04),
      0 24px 48px -12px rgba(26, 34, 56, 0.18),
      0 8px 16px -8px rgba(26, 34, 56, 0.08);
  }

  .owners2__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .owners2__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(31, 58, 110, 0) 55%,
      rgba(26, 34, 56, 0.42) 100%
    );
    pointer-events: none;
  }

  .owners2__caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--on-photo);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.005em;
  }

  .owners2__caption-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #B7E4C7;
    box-shadow: 0 0 0 4px rgba(183, 228, 199, 0.18);
    flex-shrink: 0;
  }

  /* RIGHT — narrative copy */
  .owners2__body {
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 26px;
  }

  .owners2__eyebrow {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--muted);
  }

  .owners2__eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--accent);
    vertical-align: middle;
    margin-right: 12px;
    transform: translateY(-3px);
  }

  .owners2__h2 {
    font-size: clamp(40px, 4.4vw, 56px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: var(--ink);
    max-width: 14ch;
  }

  .owners2__lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 44ch;
  }

  .owners2__prose {
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 46ch;
    border-top: 1px solid rgba(26, 34, 56, 0.08);
    padding-top: 26px;
    margin-top: 4px;
  }

  .owners2__prose strong {
    color: var(--ink);
    font-weight: 600;
  }

  .owners2__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 28px;
    margin-top: 12px;
  }

  .owners2__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 28px;
    background: var(--accent);
    color: var(--on-photo);
    border-radius: 999px;
    font-size: 15.5px;
    font-weight: 500;
    letter-spacing: 0.005em;
    transition: background 0.18s ease, transform 0.18s ease;
  }

  .owners2__cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
  }

  .owners2__cta svg {
    width: 14px;
    height: 14px;
  }

  .owners2__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(31, 58, 110, 0.25);
    padding-bottom: 2px;
    transition: border-color 0.18s ease, color 0.18s ease;
  }

  .owners2__link:hover {
    color: var(--accent-hover);
    border-bottom-color: var(--accent-hover);
  }

  .owners2__link svg {
    width: 12px;
    height: 12px;
  }

  @media (max-width: 1280px) {
    .owners2 { padding: 124px 0 128px; }
    .owners2__inner { padding: 0 40px; gap: 64px; }
  }

  @media (max-width: 1024px) {
    .owners2 { padding: 100px 0 108px; }
    .owners2__inner {
      grid-template-columns: 1fr;
      gap: 52px;
      padding: 0 28px;
    }
    .owners2__media { aspect-ratio: 16 / 11; max-width: 600px; }
    .owners2__body { max-width: 600px; }
  }

  @media (max-width: 768px) {
    .owners2 { padding: 80px 0 88px; }
    .owners2__inner { padding: 0 20px; gap: 40px; }
    .owners2__media { aspect-ratio: 4 / 5; border-radius: 12px; }
    .owners2__caption { left: 18px; right: 18px; bottom: 18px; font-size: 12.5px; }
    .owners2__lead { font-size: 16.5px; }
    .owners2__prose { font-size: 16px; padding-top: 22px; }
    .owners2__cta { width: 100%; justify-content: center; padding: 16px 24px; }
    .owners2__actions { gap: 14px; }
  }

  @media (max-width: 480px) {
    .owners2 { padding: 64px 0 76px; }
    .owners2__inner { padding: 0 16px; gap: 32px; }
    .owners2__h2 { font-size: clamp(28px, 8vw, 40px); }
    .owners2__lead { font-size: 15.5px; }
    .owners2__prose { font-size: 15px; }
  }

  /* ============ FOOTER v2 — dark navy, 3-tier ============ */
  .ft2 {
    background: #1A2238;
    color: #F1EDE2;
    padding: 96px 0 52px;
    border-top: 1px solid rgba(241, 237, 226, 0.08);
    position: relative;
  }

  .ft2__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    gap: 80px;
  }

  /* ---- Tier 1: brand statement ---- */
  .ft2__tier-top {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 720px;
  }

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

  .ft2__brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #F1EDE2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .ft2__brand-mark svg {
    width: 28px;
    height: 28px;
    display: block;
  }

  .ft2__brand-name {
    font-family: 'Onest', system-ui, sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #F1EDE2;
  }

  .ft2__tagline {
    font-size: 19px;
    line-height: 1.5;
    color: rgba(241, 237, 226, 0.72);
    font-weight: 400;
    max-width: 540px;
  }

  .ft2__final-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #F1EDE2;
    font-size: 17px;
    font-weight: 500;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(241, 237, 226, 0.35);
    align-self: flex-start;
    margin-top: 8px;
    transition: gap 0.2s ease, border-color 0.2s ease;
  }

  .ft2__final-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
  }

  .ft2__final-link:hover {
    border-bottom-color: #F1EDE2;
  }

  .ft2__final-link:hover svg {
    transform: translateX(4px);
  }

  /* ---- Tier 2: 4-col info ---- */
  .ft2__tier-mid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 56px;
    padding: 56px 0 48px;
    border-top: 1px solid rgba(241, 237, 226, 0.10);
    border-bottom: 1px solid rgba(241, 237, 226, 0.10);
  }

  .ft2__col {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .ft2__col-head {
    font-size: 14px;
    font-weight: 600;
    color: rgba(241, 237, 226, 0.55);
    letter-spacing: 0;
    margin-bottom: 4px;
  }

  .ft2__col-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
  }

  .ft2__col-list a {
    color: rgba(241, 237, 226, 0.88);
    font-size: 15.5px;
    line-height: 1.4;
    font-weight: 400;
    transition: color 0.18s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .ft2__col-list a:hover {
    color: #FFFFFF;
  }

  .ft2__contact-link {
    color: rgba(241, 237, 226, 0.88) !important;
    font-size: 15.5px;
    line-height: 1.45;
  }

  .ft2__contact-link strong {
    font-weight: 500;
    color: #F1EDE2;
  }

  .ft2__social-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  /* ---- Tier 3: copyright + ribbon ---- */
  .ft2__tier-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
  }

  .ft2__copy {
    font-size: 14px;
    color: rgba(241, 237, 226, 0.50);
    line-height: 1.5;
    flex-shrink: 0;
  }

  .ft2__ribbon {
    font-size: 13px;
    color: rgba(241, 237, 226, 0.42);
    line-height: 1.7;
    max-width: 760px;
    text-align: right;
    margin-left: auto;
  }

  .ft2__ribbon-dot {
    display: inline-block;
    margin: 0 8px;
    color: rgba(241, 237, 226, 0.25);
  }

  /* ---- Tablet large ---- */
  @media (max-width: 1280px) {
    .ft2__inner { padding: 0 40px; gap: 72px; }
    .ft2__tier-mid { gap: 40px; }
  }

  /* ---- Tablet ---- */
  @media (max-width: 1024px) {
    .ft2 { padding: 80px 0 44px; }
    .ft2__inner { padding: 0 28px; gap: 60px; }
    .ft2__brand-name { font-size: 36px; }
    .ft2__tagline { font-size: 17.5px; }
    .ft2__tier-mid {
      grid-template-columns: repeat(2, 1fr);
      gap: 44px 40px;
      padding: 48px 0 40px;
    }
    .ft2__ribbon { text-align: left; margin-left: 0; max-width: 100%; }
    .ft2__tier-bottom { gap: 24px; }
  }

  /* ---- Mobile ---- */
  @media (max-width: 768px) {
    .ft2 { padding: 64px 0 36px; }
    .ft2__inner { padding: 0 20px; gap: 44px; }
    .ft2__brand { gap: 14px; }
    .ft2__brand-mark { width: 44px; height: 44px; border-radius: 12px; }
    .ft2__brand-mark svg { width: 24px; height: 24px; }
    .ft2__brand-name { font-size: 30px; }
    .ft2__tagline { font-size: 16px; }
    .ft2__final-link { font-size: 16px; }
    .ft2__tier-mid {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px 24px;
      padding: 36px 0 32px;
    }
    .ft2__col-list a { font-size: 14.5px; }
    .ft2__col-head { font-size: 13px; }
    .ft2__copy { font-size: 13px; }
    .ft2__ribbon { font-size: 12.5px; line-height: 1.75; }
  }

  @media (max-width: 480px) {
    .ft2 { padding: 56px 0 32px; }
    .ft2__inner { padding: 0 16px; gap: 36px; }
    .ft2__brand-name { font-size: 26px; }
    .ft2__brand-mark { width: 40px; height: 40px; }
    .ft2__brand-mark svg { width: 22px; height: 22px; }
    .ft2__tagline { font-size: 15px; }
    .ft2__tier-mid {
      grid-template-columns: 1fr;
      gap: 30px;
      padding: 32px 0 28px;
    }
    .ft2__contact-link { font-size: 14.5px; }
  }

  /* ============ LEGACY MODAL + LOGIN FORM SUPPORT ============ */
  /* Mapped to new palette so templates/auth/inc/login_form.html renders correctly */
  :root {
    --primary-color: #1F3A6E;
    --secondary-color: #E3BC82;
    --background-color: #FFFFFF;
    --text-color: #1A2238;
    --light-gray: #E0DBC9;
    --head-color: #1F3A6E;
  }

  .modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(15, 17, 28, 0.62);
    z-index: 1000;
    padding-top: 10vh;
    padding-bottom: 10vh;
    overflow-y: auto;
  }

  .modal-content {
    background-color: var(--surface);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.45);
    width: 95%;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    animation: modalSlideDown 0.3s ease-out;
    color: var(--ink);
  }

  .modal-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 18px;
    letter-spacing: -0.015em;
  }

  @keyframes modalSlideDown {
    from { transform: translateY(-30px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
  }

  .close, .close-feedback {
    position: absolute;
    right: 14px;
    top: 8px;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: var(--muted);
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .close:hover, .close-feedback:hover {
    background: rgba(26, 34, 56, 0.06);
    color: var(--ink);
  }

  .form-group { margin-bottom: 14px; }
  .form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font: inherit;
    font-size: 15px;
    background: var(--surface);
    color: var(--ink);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(31, 58, 110, 0.12);
  }

  .field-error {
    display: block;
    color: #C0392B;
    font-size: 12.5px;
    margin-top: 4px;
    min-height: 14px;
  }

  .login-messages .error,
  .login-messages .login-error {
    background: #FDECEA;
    color: #C0392B;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 8px;
  }

  .btn-submit {
    background: var(--accent);
    color: var(--on-photo);
    padding: 12px 22px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
  }
  .btn-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
  }
  .btn-submit i { margin-right: 6px; }

  .password-input-wrapper { position: relative; }

  /* ============ CHOICES.JS OVERRIDES ============ */
  /* Search-bar field wrappers: use full vertical area, hide raw select */
  .search-bar__field {
    flex: 1 1 auto;
    min-width: 0;
    padding: 6px 16px;
    border-right: 1px solid var(--border);
    color: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
  }
  .search-bar__city { flex: 0 1 220px; }
  .search-bar__rooms { border-right: none; flex: 1 1 auto; }

  .search-bar__field .search-bar__city-label,
  .search-bar__field .search-bar__rooms-label {
    display: block;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 2px;
    pointer-events: none;
  }

  /* Choices instance inside hero search-bar */
  .search-bar .choices {
    margin: 0;
    width: 100%;
  }
  .search-bar .choices__inner {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 18px 0 0;
    min-height: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
  }
  .search-bar .choices[data-type*='select-one'] .choices__inner {
    padding-bottom: 0;
  }
  .search-bar .choices__list--single { padding: 0; }
  .search-bar .choices__list--single .choices__item {
    color: var(--ink);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .search-bar__rooms { flex: 1 1 220px; min-width: 200px; }
  .search-bar__rooms .choices__inner { font-weight: 500; }

  .search-bar .choices[data-type*='select-one']::after {
    border-color: var(--muted) transparent transparent;
    border-width: 5px 4px 0;
    right: 4px;
    top: 50%;
    margin-top: -2px;
  }
  .search-bar .choices[data-type*='select-one'].is-open::after {
    border-color: transparent transparent var(--muted);
    margin-top: -4px;
  }

  .search-bar .choices__list--dropdown,
  .search-bar .choices__list[aria-expanded] {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-top: 6px;
    box-shadow: 0 18px 40px -16px rgba(15, 17, 28, 0.22);
    z-index: 30;
    max-height: 360px;
  }
  .search-bar .choices__list--dropdown .choices__list {
    max-height: 360px;
  }
  .search-bar .choices__list--dropdown .choices__item--selectable {
    padding: 10px 14px;
    font-size: 14.5px;
    color: var(--ink);
  }
  .search-bar .choices__list--dropdown .choices__item--selectable.is-highlighted {
    background: rgba(31, 58, 110, 0.08);
    color: var(--accent);
  }

  /* Nav city Choices — transparent pill on top of photo */
  .nav__city {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px 5px 12px;
  }
  .nav__city .pin {
    width: 12px;
    height: 12px;
    color: var(--on-photo);
    flex-shrink: 0;
  }
  .nav__city .choices {
    margin: 0 !important;
    min-width: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1;
  }
  .nav__city .choices__inner {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 16px 0 0 !important;
    min-height: 0 !important;
    font-size: 14px;
    font-weight: 500;
    color: var(--on-photo);
    display: inline-flex;
    align-items: center;
  }
  .nav__city .choices__list--single {
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
  }
  .nav__city .choices__list--single .choices__item {
    color: var(--on-photo);
    padding: 0;
    line-height: 1.2;
  }
  .nav__city .choices[data-type*='select-one']::after {
    border-color: var(--on-photo) transparent transparent !important;
    border-width: 4px 3px 0 !important;
    right: 4px;
    top: 50%;
    margin-top: -1px;
  }
  .nav__city .choices[data-type*='select-one'].is-open::after {
    border-color: transparent transparent var(--on-photo) !important;
    margin-top: -3px;
  }
  .nav__city .choices__list--dropdown,
  .nav__city .choices__list[aria-expanded] {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-top: 8px;
    min-width: 180px;
    max-height: 320px;
    box-shadow: 0 18px 40px -16px rgba(15, 17, 28, 0.45);
    z-index: 30;
  }
  .nav__city .choices__list--dropdown .choices__list {
    max-height: 320px;
  }
  .nav__city .choices__list--dropdown .choices__item--selectable {
    padding: 10px 14px;
    font-size: 14px;
    color: var(--ink);
  }
  .nav__city .choices__list--dropdown .choices__item--selectable.is-highlighted {
    background: rgba(31, 58, 110, 0.08);
    color: var(--accent);
  }
