/* ===== GP RESET — body.single-hotel (Step 11.2 + 11.6.1 — DO NOT REMOVE) =====
   Without this block GeneratePress flex/grid containers break the layout.
   Updated 11.6.1: expanded to cover #page/.site gray strips + GP footer hide.
   ================================================================= */

/* 1. White background on every GP wrapper (eliminates gray side/top strips) */
body.single-hotel,
body.single-hotel #page,
body.single-hotel .site,
body.single-hotel #content,
body.single-hotel #primary {
  background: #FFFFFF !important;
}

/* 2. Strip GP padding/max-width from content wrappers */
body.single-hotel #content,
body.single-hotel #primary,
body.single-hotel .site-content,
body.single-hotel .content-area,
body.single-hotel main,
body.single-hotel .site-main,
body.single-hotel .inside-article,
body.single-hotel .entry-content {
  display: block !important;
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: #FFFFFF !important;
}

/* 3. Hide GP-generated page title / entry header */
body.single-hotel .generate-page-header,
body.single-hotel .entry-header,
body.single-hotel .page-header {
  display: none !important;
}

/* 4. Hide GP footer completely on hotel pages */
body.single-hotel .site-footer,
body.single-hotel .footer-bar-wrap,
body.single-hotel footer.site-info,
body.single-hotel .site-info,
body.single-hotel .footer-widgets-container {
  display: none !important;
}

/* ===== DIRECTION A v6 — full design system ============================= */
:root {
    --bg: #FFFFFF;            /* pure white */
    --bg-2: #F5F5F3;
    --ink: #0A0A0A;
    --ink-2: #404040;
    --ink-3: #7A7A7A;
    --line: #9CA3A8;        /* steel gray hairline */
    --line-soft: #D4D8DC;   /* lighter steel for soft dividers */
    --accent: #1F4D5C;        /* deep teal / petrol blue */
    --accent-2: #2D6B7F;
    --accent-soft: #E8EEF0;
  }
  *,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-variation-settings: "opsz" 14;
    overflow-x: hidden;
  }
  .display { font-family: 'Fraunces', Georgia, serif; }
  .mono { font-family: 'JetBrains Mono', ui-monospace, monospace; letter-spacing: -0.01em; }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  /* ===== ANIMATIONS — base keyframes ===== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes slideRight {
    from { opacity: 0; transform: translateX(-24px); }
    to { opacity: 1; transform: translateX(0); }
  }
  @keyframes slideLeft {
    from { opacity: 0; transform: translateX(24px); }
    to { opacity: 1; transform: translateX(0); }
  }
  @keyframes scaleIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
  }
  @keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(31,77,92,0.4), 0 0 0 0 rgba(31,77,92,0.2); }
    50% { box-shadow: 0 0 0 12px rgba(31,77,92,0), 0 0 0 24px rgba(31,77,92,0); }
  }
  @keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
  }
  @keyframes underlineSlide {
    from { transform: scaleX(0); transform-origin: left; }
    to { transform: scaleX(1); transform-origin: left; }
  }
  @keyframes counterRoll {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes numberRoll {
    0% { opacity: 0; transform: translateY(20px) scale(0.85); letter-spacing: 0.05em; }
    60% { opacity: 1; transform: translateY(-4px) scale(1.02); letter-spacing: -0.04em; }
    100% { opacity: 1; transform: translateY(0) scale(1); letter-spacing: -0.02em; }
  }

  /* Reveal states */
  .reveal { opacity: 0; }
  .reveal.in {
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .reveal-slide-r { opacity: 0; }
  .reveal-slide-r.in { animation: slideRight 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
  .reveal-slide-l { opacity: 0; }
  .reveal-slide-l.in { animation: slideLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
  .reveal-scale { opacity: 0; }
  .reveal-scale.in { animation: scaleIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

  /* Staggered children */
  .stagger > * { opacity: 0; }
  .stagger.in > * {
    animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .stagger.in > *:nth-child(1) { animation-delay: 0.05s; }
  .stagger.in > *:nth-child(2) { animation-delay: 0.15s; }
  .stagger.in > *:nth-child(3) { animation-delay: 0.25s; }
  .stagger.in > *:nth-child(4) { animation-delay: 0.35s; }
  .stagger.in > *:nth-child(5) { animation-delay: 0.45s; }
  .stagger.in > *:nth-child(6) { animation-delay: 0.55s; }
  .stagger.in > *:nth-child(7) { animation-delay: 0.65s; }
  .stagger.in > *:nth-child(8) { animation-delay: 0.75s; }

  /* ===== HEADER ===== */
  .site-header {
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky; top: 0; z-index: 50;
    animation: fadeIn 0.6s ease forwards;
  }
  .site-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  .logo {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -0.02em;
    font-style: italic;
    position: relative;
  }
  .logo span { font-style: normal; font-weight: 400; }
  .logo::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 1px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .site-nav {
    display: flex;
    gap: 28px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .site-nav a {
    color: var(--ink-2);
    padding: 4px 0;
    position: relative;
    transition: color .25s;
  }
  .site-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .site-nav a:hover { color: var(--ink); }
  .site-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .lang-switch {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-3);
    letter-spacing: 0.08em;
    display: flex; gap: 6px;
  }
  .lang-switch span { transition: color .2s; cursor: pointer; }
  .lang-switch span:hover { color: var(--ink); }
  .lang-switch .active { color: var(--ink); }
  .lang-switch span:not(:last-child)::after { content: "·"; margin-left: 6px; color: var(--line); }

  /* ===== ENTRY ===== */
  .entry {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* Breadcrumbs */
  .breadcrumbs {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-3);
    padding: 24px 0;
    border-bottom: 1px solid var(--line-soft);
    animation: fadeIn 0.7s ease 0.2s both;
  }
  .breadcrumbs a { transition: color .2s; }
  .breadcrumbs a:hover { color: var(--ink); }
  .breadcrumbs .sep { margin: 0 8px; color: var(--line); }
  .breadcrumbs .current { color: var(--ink); }

  /* ── Hero: FINAL flexbox layout (BUG 29 / 11.6.10) ─────────────────────
     Switched from grid to flex so align-items: flex-start is bulletproof.
     All rules use body.single-hotel prefix + !important to survive GP overrides.
     ──────────────────────────────────────────────────────────────────────── */

  body.single-hotel .entry-head {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 64px !important;
    padding: 24px 0 16px !important;   /* 11.6.12: reduce bottom air */
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  /* Left column */
  body.single-hotel .entry-head__text {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    align-self: center !important;   /* 11.6.11: center vertically in flex row */
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }

  /* Right column */
  body.single-hotel .entry-head .entry-aside {
    flex: 0 0 320px !important;
    align-self: flex-start !important;
  }

  /* H1 */
  body.single-hotel .entry-head__text .entry-title {
    text-align: center !important;
    margin-top: 0 !important;
    margin-bottom: 48px !important;
    padding: 0 !important;
    /* typography kept from base .entry-title rule below */
  }

  /* Dek */
  body.single-hotel .entry-head__text .entry-dek {
    text-align: center !important;
    margin-top: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
  }

  /* Base .entry-title typography (no positioning here) */
  body.single-hotel .entry-title {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(56px, 7.5vw, 96px);
    line-height: 0.96;
    letter-spacing: -0.035em;
    font-variation-settings: "opsz" 96;
    color: var(--ink);
  }
  .entry-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .entry-title .word:nth-child(1) { animation-delay: 0.25s; }
  .entry-title .word:nth-child(2) { animation-delay: 0.40s; }
  .entry-title .word:nth-child(3) { animation-delay: 0.55s; }
  .entry-title em { font-style: italic; font-weight: 300; color: var(--accent); }

  .entry-dek {
    font-family: 'Source Serif 4', serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.4;
    color: var(--ink-2);
    max-width: 720px;
    letter-spacing: -0.005em;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.75s forwards;
  }

  /* BUG 27: sidebar restored — vertical line left, items left-aligned */
  .entry-aside {
    font-family: 'Source Serif 4', serif;
    border-left: 1px solid var(--line);
    border-top: 0;
    padding-left: 28px;
    padding-top: 0;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: auto;
    max-width: none;
    align-items: stretch;
  }
  .trust-row {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--ink);
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line-soft);
    width: auto;
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .trust-row:nth-child(1) { animation-delay: 0.9s; }
  .trust-row:nth-child(2) { animation-delay: 1.0s; }
  .trust-row:nth-child(3) { animation-delay: 1.1s; }
  .trust-row:nth-child(4) { animation-delay: 1.2s; }
  .trust-row:last-of-type { border-bottom: 0; }
  .trust-row .icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
  }
  .trust-row .icon svg { width: 100%; height: 100%; stroke-width: 1.5; }
  .trust-row strong { font-weight: 600; color: var(--ink); }

  .cta-btn {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 16px;
    background: var(--ink);
    color: var(--bg);
    padding: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 0;
    cursor: pointer;
    transition: background .3s cubic-bezier(0.22, 1, 0.36, 1), transform .3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 0.7s ease 1.3s forwards;
  }
  .cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--accent);
    transition: left .4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
  }
  .cta-btn:hover::before { left: 0; }
  /* BUG 16: ensure span text sits above ::before fill layer */
  .cta-btn span { position: relative; z-index: 2; display: inline-block; }
  .cta-btn:hover { transform: translateY(-2px); }
  /* BUG 16: strip GP/WP global link underline from CTA buttons */
  .cta-btn,
  .cta-btn:hover,
  .cta-btn:focus,
  .cta-btn:visited {
    text-decoration: none !important;
    color: var(--bg) !important;
  }

  .cta-btn--ghost {
    background: transparent;
    color: var(--ink) !important;
    border: 1px solid var(--ink);
    margin-top: 6px;
    animation-delay: 1.4s;
  }
  .cta-btn--ghost::before { background: var(--ink); }
  .cta-btn--ghost:hover { color: var(--bg) !important; }

  /* BUG 16: final-cta buttons — no underline */
  .final-cta__btns .btn,
  .final-cta__btns .btn:hover,
  .final-cta__btns .btn:focus,
  .final-cta__btns .btn:visited {
    text-decoration: none !important;
  }

  /* ===== PHOTO STRIP ===== */
  .photo-strip {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 480px;
    gap: 8px;
    padding: 32px 0 24px;
    border-bottom: 1px solid var(--line);
    position: relative;
  }
  .photo-strip > div {
    overflow: hidden;
    position: relative;
    background: var(--bg-2);
    cursor: pointer;
    opacity: 0;
    animation: scaleIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .photo-strip > div:nth-child(1) { animation-delay: 0.5s; }
  .photo-strip > div:nth-child(2) { animation-delay: 0.65s; }
  .photo-strip > div:nth-child(3) { animation-delay: 0.8s; }
  .photo-strip img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .photo-strip > div:hover img { transform: scale(1.06); }
  .photo-counter {
    position: absolute;
    bottom: 16px; right: 16px;
    background: var(--bg);
    color: var(--ink);
    padding: 10px 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .3s, color .3s, transform .3s;
    z-index: 2;
  }
  .photo-counter:hover {
    background: var(--ink);
    color: var(--bg);
    transform: translateY(-2px);
  }
  .photo-counter svg { width: 14px; height: 14px; stroke-width: 1.5; }

  /* ===== SECTIONS ===== */
  .section {
    padding: 96px 0;
    /* border-bottom removed — visual noise between sections */
  }
  .section__title {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 56px;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 48px;
    color: var(--ink);
    position: relative;
  }
  .section__title em { font-style: italic; color: var(--accent); font-weight: 300; }
  .section__title::before {
    content: '';
    position: absolute;
    top: -20px; left: 0;
    width: 48px; height: 2px;
    background: var(--ink);    /* BUG 20: decorative bar → black */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .9s cubic-bezier(0.22, 1, 0.36, 1) .2s;
  }
  .section__title.in::before { transform: scaleX(1); }

  /* About */
  .about-text {
    max-width: 1100px;    /* BUG 17: was 880px — too narrow at 1280px+ viewport */
    font-family: 'Source Serif 4', serif;
    font-size: 19px;
    line-height: 1.7;
    color: var(--ink);
  }
  .about-text p { margin-bottom: 1.1em; }
  .about-text p:last-child { margin-bottom: 0; }
  .about-text p:first-child::first-letter {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 4.2em;
    line-height: 0.86;
    float: left;
    margin: 0.06em 0.1em 0 0;
    color: var(--accent);
  }

  /* Stats */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
  }
  .stat {
    border-right: 1px solid var(--line-soft);
    padding: 0 24px;
    position: relative;
  }
  .stat:first-child { padding-left: 0; }
  .stat:last-child { border-right: 0; padding-right: 0; }
  .stat__key {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-3);
    margin-bottom: 12px;
  }
  .stat__val {
    font-family: 'Fraunces', serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
  }
  .stat__val small {
    font-size: 16px;
    color: var(--ink-3);
    margin-left: 4px;
  }
  .stat__note {
    font-family: 'Source Serif 4', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--ink-2);
  }
  .stat__bar {
    margin-top: 16px;
    height: 2px;
    background: var(--line-soft);
    position: relative;
    overflow: hidden;
  }
  .stat__bar::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    background: var(--ink);   /* BUG 18: was var(--accent) teal — use ink black */
    width: 0;
    transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1) .3s;
  }
  .stat__bar.in::after { width: var(--w, 95%); }

  /* Variants */
  .variants {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
  }
  .variant-row {
    display: grid;
    grid-template-columns: 360px 1fr 180px;
    gap: 40px;
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
    transition: background .35s ease;
  }
  .variant-row:hover { background: var(--bg-2); padding-left: 16px; padding-right: 16px; }
  .variant-row__photo {
    aspect-ratio: 4/3;
    background: var(--bg-2);
    overflow: hidden;
  }
  .variant-row__photo img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .variant-row:hover .variant-row__photo img { transform: scale(1.05); }
  .variant-row__body h3 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    color: var(--ink);
  }
  .variant-row__body .alt-name {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 17px;
    color: var(--ink-3);
    margin-bottom: 14px;
  }
  .variant-row__body p {
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 520px;
  }
  .variant-row__meta {
    text-align: right;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--ink-2);
    line-height: 1.8;
  }
  .variant-row__meta .big {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
    opacity: 0;
  }
  .variant-row.in .variant-row__meta .big,
  .variants.in .variant-row .variant-row__meta .big {
    animation: numberRoll 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.3s;
  }
  .variant-row__meta .big small {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-left: 4px;
  }
  .variant-row__meta .pair {
    display: block;
    padding-top: 4px;
  }
  .variant-row__meta .pair-label {
    color: var(--ink-3);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.08em;
    margin-right: 6px;
  }

  /* Extras */
  .extras-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .extra { cursor: default; }
  .extra__photo {
    aspect-ratio: 4/3;
    background: var(--bg-2);
    overflow: hidden;
    margin-bottom: 16px;
  }
  .extra__photo img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .extra:hover .extra__photo img { transform: scale(1.06); }
  .extra h3 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 6px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .extra__note {
    font-family: 'Source Serif 4', serif;
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.5;
  }

  /* Amenities */
  .amenities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px 56px;
  }
  .amenity-group h4 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 22px;
    color: var(--ink);
    padding-bottom: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--ink);  /* BUG 20: decorative border → black */
    letter-spacing: -0.015em;
  }
  .amenity-group ul { list-style: none; }
  .amenity-group li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    font-family: 'Source Serif 4', serif;
    font-size: 17px;
    color: var(--ink);
    transition: padding-left .3s ease, color .3s ease;
  }
  .amenity-group li:hover {
    padding-left: 8px;
    color: var(--accent);
  }
  .amenity-group li:last-child { border-bottom: 0; }
  .amenity-group li .icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .amenity-group li:hover .icon { transform: rotate(-6deg) scale(1.1); }
  .amenity-group li .icon svg { width: 100%; height: 100%; stroke-width: 1.5; }

  /* Reviews */
  .reviews { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
  .review-hero {
    border-left: 2px solid var(--ink);  /* BUG 20: accent → ink */
    padding-left: 48px;                 /* BUG 19: was 32px — more room for quote */
    position: relative;
  }
  .review-hero::before {
    content: '\201C';                   /* BUG 19: left double quotation mark */
    position: absolute;
    top: -20px; left: 12px;            /* BUG 19: was -32/24 — adjust to border */
    font-family: 'Fraunces', serif;
    font-size: 100px;                  /* BUG 19: was 120 — less overlap */
    color: var(--ink);                 /* BUG 20: accent → ink */
    line-height: 1;
    opacity: 0.12;
    z-index: 1;
  }
  .review-hero blockquote {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: 30px;
    line-height: 1.32;
    letter-spacing: -0.015em;
    color: var(--ink);
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;                        /* BUG 19: text above decorative quote */
  }
  .review-attribution {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-3);
  }
  .review-attribution strong { color: var(--ink); font-weight: 500; margin-right: 8px; }
  .review-list { display: flex; flex-direction: column; gap: 28px; }
  .review-list .review {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line-soft);
    transition: padding-left .3s ease;
  }
  .review-list .review:hover { padding-left: 12px; }
  .review-list .review:last-child { border-bottom: 0; }
  .review-list blockquote {
    font-family: 'Source Serif 4', serif;
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 10px;
  }
  .review-list .review-attribution { font-size: 10px; }

  /* Nearby */
  .nearby { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; }
  .map-block {
    aspect-ratio: 4/3;
    background: var(--bg-2);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }
  .map-block::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(var(--line) 1px, transparent 1px),
      linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.6;
  }
  .map-pin {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -100%);
    z-index: 2;
  }
  .map-pin::before {
    content: '';
    width: 14px; height: 14px;
    background: var(--accent);
    border-radius: 50%;
    display: block;
    margin: 0 auto 6px;
    animation: pulseDot 2.4s ease-in-out infinite;
  }
  .map-pin span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--ink);
    color: var(--bg);
    padding: 4px 10px;
    display: block;
  }
  .nearby-list { list-style: none; }
  .nearby-list li {
    display: grid;
    grid-template-columns: 1fr 80px 60px;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line-soft);
    align-items: baseline;
    transition: padding-left .3s ease;
    cursor: pointer;
  }
  .nearby-list li:hover { padding-left: 12px; }
  .nearby-list li:hover .name { color: var(--accent); }
  .nearby-list li:first-child { padding-top: 0; }
  .nearby-list .name {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--ink);
    transition: color .25s ease;
  }
  .nearby-list .cat {
    font-family: 'Source Serif 4', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--ink-3);
    display: block;
    margin-top: 2px;
  }
  .nearby-list .dist {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--ink);
    text-align: right;
    font-variant-numeric: tabular-nums;
  }
  .nearby-list .time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-3);
    text-align: right;
  }

  /* Restaurants */
  .restaurants-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  .resto { cursor: pointer; transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1); }
  .resto:hover { transform: translateY(-6px); }
  .resto__photo {
    aspect-ratio: 4/5;
    background: var(--bg-2);
    overflow: hidden;
    margin-bottom: 14px;
    position: relative;
  }
  .resto__photo img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .resto:hover .resto__photo img { transform: scale(1.08); }
  .resto__cat {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 6px;
  }
  .resto h3 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 10px;
    color: var(--ink);
  }
  .resto__meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-2);
  }
  .resto__meta .price { color: var(--accent); margin-left: 4px; }

  /* FAQ */
  .faq { max-width: 880px; }
  .faq-item {
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
  }
  .faq-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.015em;
    color: var(--ink);
    transition: color .3s ease;
  }
  .faq-item:hover summary { color: var(--accent); }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    font-family: 'JetBrains Mono', monospace;
    font-size: 22px;
    color: var(--accent);
    font-weight: 400;
    transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1);
    display: inline-block;
  }
  .faq-item[open] summary::after { content: '−'; transform: rotate(180deg); }
  .faq-item p {
    margin-top: 16px;
    font-family: 'Source Serif 4', serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-2);
    max-width: 720px;
    animation: fadeUp 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Final CTA — BUG 14: full-bleed breakout, remove animated blue bar */
  .final-cta {
    background: var(--ink);
    color: var(--bg);
    padding: 56px 32px;
    position: relative;
    overflow: hidden;
    /* Full-bleed breakout from any parent max-width */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
  }
  .final-cta::before {
    display: none;   /* BUG 14: remove animated teal accent bar */
  }
  .final-cta__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
  }
  .final-cta__eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
  }
  .final-cta h2 {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.0;
    letter-spacing: -0.025em;
    color: var(--bg);
  }
  .final-cta h2 em { font-style: italic; color: rgba(255,255,255,0.7); }
  .final-cta__btns { display: flex; gap: 12px; }
  .final-cta__btns .btn {
    background: var(--bg);
    color: var(--ink);
    padding: 16px 28px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border: 0;
    cursor: pointer;
    transition: background .3s, color .3s, transform .3s;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
  }
  .final-cta__btns .btn:hover {
    background: var(--accent);
    color: var(--bg);
    transform: translateY(-2px);
  }
  .final-cta__btns .btn--outline {
    background: transparent;
    color: var(--bg);
    border: 1px solid rgba(255,255,255,0.3);
  }
  .final-cta__btns .btn--outline:hover {
    background: var(--bg);
    color: var(--ink);
    border-color: var(--bg);
  }

  /* Footer — BUG 14: full-bleed, border-top separator */
  footer {
    background: var(--bg);
    padding: 40px 32px;
    border-top: 1px solid var(--line);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
  }
  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-3);
  }

  /* Scroll progress bar at very top */
  .scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0;
    background: var(--accent);
    z-index: 100;
    transition: width .1s linear;
  }

  /* ═══════════════════════════════════════════════════════════════
     RESPONSIVE — Tablet (1024px and below) + Mobile (640px and below)
     Approach: mobile-first refinements layered on desktop base
     ═══════════════════════════════════════════════════════════════ */

  /* ═══ TABLET: 1024px ─ 768px ═══ */
  @media (max-width: 1024px) {
    body { font-size: 17px; }

    /* Header */
    .site-header__inner {
      padding: 14px 24px;
      gap: 24px;
    }
    .logo { font-size: 22px; }
    .site-nav { gap: 20px; font-size: 10px; }
    .lang-switch { font-size: 10px; }

    /* Entry */
    .entry { padding: 0 24px; }

    /* Hero: tablet → stack sidebar below title */
    body.single-hotel .entry-head {
      flex-direction: column !important;
      gap: 40px !important;
      padding: 20px 0 40px !important;
    }
    body.single-hotel .entry-head .entry-aside {
      flex: 0 0 auto !important;
      width: 100% !important;
      border-left: 0 !important;
      border-top: 1px solid var(--line) !important;
      padding-left: 0 !important;
      padding-top: 24px !important;
    }
    .entry-title { font-size: clamp(48px, 8vw, 76px); }

    /* Photo strip — keep grid but smaller height */
    .photo-strip {
      grid-template-rows: 340px;
      gap: 6px;
    }

    /* Sections */
    .section { padding: 64px 0; }
    .section__title { font-size: 42px; margin-bottom: 36px; }

    /* About */
    .about-text { font-size: 17px; }

    /* Stats: 2x2 instead of 1x4 */
    .stats-row {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px 24px;
      margin-top: 48px;
    }
    .stat { border-right: 0; padding: 0; border-bottom: 1px solid var(--line-soft); padding-bottom: 24px; }
    .stat:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0; }
    .stat__val { font-size: 44px; }

    /* Variants: stack photo above content */
    .variant-row {
      grid-template-columns: 280px 1fr;
      grid-template-rows: auto auto;
      gap: 28px;
      padding: 28px 0;
    }
    .variant-row__photo { grid-row: span 2; }
    .variant-row__meta {
      grid-column: 2;
      text-align: left;
      border-top: 1px solid var(--line-soft);
      padding-top: 16px;
    }
    .variant-row__meta .big {
      display: inline-block;
      margin-right: 24px;
      margin-bottom: 0;
      font-size: 28px;
    }
    .variant-row__meta .pair { display: inline-block; padding-right: 16px; }
    .variant-row__body h3 { font-size: 26px; }

    /* Extras: 2 columns */
    .extras-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* Amenities: keep 3 cols, smaller gap */
    .amenities { gap: 40px 32px; }
    .amenity-group li { font-size: 16px; }

    /* Reviews: stack */
    .reviews { grid-template-columns: 1fr; gap: 40px; }
    .review-hero blockquote { font-size: 24px; }

    /* Nearby: stack */
    .nearby { grid-template-columns: 1fr; gap: 32px; }
    .map-block { aspect-ratio: 16/9; }

    /* Restaurants: 3 cols */
    .restaurants-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }

    /* FAQ */
    .faq-item summary { font-size: 20px; }

    /* About text — full width on tablet */
    .about-text { max-width: 100%; }   /* BUG 23 */

    /* Final CTA — keep full-bleed on tablet */
    .final-cta {
      padding: 48px 24px;
      width: 100vw;                    /* BUG 23 */
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
    }
    .final-cta__inner {
      grid-template-columns: 1fr;
      gap: 28px;
      align-items: start;
    }
    .final-cta h2 { font-size: clamp(36px, 6vw, 52px); }

    footer {                           /* BUG 23 */
      padding: 32px 24px;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
    }
  }

  /* ═══ MOBILE: 640px and below ═══ */
  @media (max-width: 640px) {
    body { font-size: 16px; }

    /* Hide nav on mobile, add hamburger-substitute (simplified for static mockup) */
    .site-header__inner {
      padding: 12px 20px;
      gap: 12px;
      flex-wrap: wrap;
    }
    .site-nav {
      display: none;     /* hide on mobile - on prod would be hamburger */
    }
    .logo { font-size: 20px; }
    .lang-switch { font-size: 10px; gap: 4px; }
    .lang-switch span:not(:last-child)::after { margin-left: 4px; }

    .entry { padding: 0 20px; }

    /* Breadcrumbs — wrap & shrink */
    .breadcrumbs {
      font-size: 10px;
      padding: 16px 0;
      letter-spacing: 0.05em;
      line-height: 1.6;
    }
    .breadcrumbs .sep { margin: 0 5px; }

    /* Hero mobile */
    .entry-head {
      padding: 16px 0 32px;
    }
    body.single-hotel .entry-title {
      font-size: clamp(38px, 12vw, 56px) !important;
      line-height: 0.98;
    }
    body.single-hotel .entry-head__text .entry-title {
      margin-bottom: 28px !important;
    }
    .entry-dek { font-size: 17px; line-height: 1.45; }

    body.single-hotel .entry-head .entry-aside {
      gap: 10px !important;
    }
    .trust-row {
      font-size: 14px;
      padding-bottom: 10px;
      gap: 10px;
    }
    .cta-btn {
      padding: 14px;
      font-size: 11px;
      margin-top: 12px;
    }

    /* Photo strip — single column stack */
    .photo-strip {
      grid-template-columns: 1fr;
      grid-template-rows: 320px 200px 200px;
      gap: 4px;
      padding: 24px 0 20px;
    }
    .photo-counter {
      padding: 8px 12px;
      font-size: 11px;
      bottom: 12px;
      right: 12px;
    }

    /* Sections */
    .section { padding: 56px 0; }
    .section__title {
      font-size: 32px;
      margin-bottom: 28px;
      line-height: 1.05;
    }
    .section__title::before { top: -16px; width: 36px; }

    /* About */
    .about-text { font-size: 16px; line-height: 1.65; }
    .about-text p:first-child::first-letter {
      font-size: 3.5em;
    }

    /* Stats: 2x2 → still 2x2 on mobile */
    .stats-row {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px 16px;
      margin-top: 36px;
      padding-top: 24px;
    }
    .stat__val { font-size: 36px; }
    .stat__val small { font-size: 13px; }
    .stat__note { font-size: 13px; }
    .stat__bar { margin-top: 12px; }

    /* Variants: full stack */
    .variant-row {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto;
      gap: 16px;
      padding: 24px 0;
    }
    .variant-row:hover {
      padding-left: 0;
      padding-right: 0;
    }
    .variant-row__photo {
      grid-row: 1;
      aspect-ratio: 16/10;
    }
    .variant-row__body { grid-row: 2; }
    .variant-row__body h3 { font-size: 24px; }
    .variant-row__body p { font-size: 15px; }
    .variant-row__meta {
      grid-column: 1;
      grid-row: 3;
      padding-top: 14px;
    }
    .variant-row__meta .big { font-size: 26px; margin-right: 16px; }
    .variant-row__meta .big small { font-size: 10px; }
    .variant-row__meta .pair {
      font-size: 11px;
      padding-right: 0;
      padding-top: 6px;
      display: block;
    }

    /* Extras: 2 cols compact */
    .extras-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .extra h3 { font-size: 16px; }
    .extra__note { font-size: 13px; }

    /* Amenities: stack to 1 column */
    .amenities {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .amenity-group h4 { font-size: 20px; }
    .amenity-group li {
      font-size: 16px;
      padding: 12px 0;
      gap: 12px;
    }
    .amenity-group li .icon { width: 20px; height: 20px; }

    /* Reviews — BUG 23: adjust quote mark for smaller padding */
    .review-hero {
      padding-left: 28px;
    }
    .review-hero blockquote { font-size: 20px; line-height: 1.35; }
    .review-hero::before { font-size: 70px; top: -16px; left: 8px; }
    .review-list { gap: 20px; }
    .review-list blockquote { font-size: 16px; }

    /* Nearby */
    .map-block { aspect-ratio: 4/3; }
    .nearby-list li {
      grid-template-columns: 1fr auto auto;
      gap: 12px;
      padding: 14px 0;
    }
    .nearby-list .name { font-size: 17px; }
    .nearby-list .cat { font-size: 13px; }
    .nearby-list .dist { font-size: 13px; }
    .nearby-list .time { font-size: 11px; }

    /* Restaurants: 2 cols */
    .restaurants-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    .resto__photo { aspect-ratio: 3/4; margin-bottom: 12px; }
    .resto h3 { font-size: 18px; margin-bottom: 8px; }
    .resto__cat { font-size: 9px; }
    .resto__meta { font-size: 10px; }

    /* FAQ */
    .faq-item { padding: 22px 0; }
    .faq-item summary {
      font-size: 17px;
      gap: 12px;
    }
    .faq-item summary::after { font-size: 18px; }
    .faq-item p { font-size: 15px; margin-top: 12px; }

    /* Final CTA — fully stacked, keep full-bleed on mobile — BUG 23 */
    .final-cta {
      padding: 40px 20px;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
    }
    .final-cta h2 { font-size: 32px; }
    .final-cta__btns {
      flex-direction: column;
      gap: 8px;
      width: 100%;
    }
    .final-cta__btns .btn {
      padding: 14px 20px;
      font-size: 11px;
      text-align: center;
      width: 100%;
    }

    /* Footer — full-bleed on mobile — BUG 23 */
    footer {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
    }
    .footer-inner {
      flex-direction: column;
      gap: 8px;
      align-items: start;
      font-size: 10px;
    }
  }

  /* ═══ VERY SMALL: 380px and below (iPhone SE, small Androids) ═══ */
  @media (max-width: 380px) {
    .entry { padding: 0 16px; }
    .site-header__inner { padding: 10px 16px; }
    .entry-title { font-size: clamp(34px, 11vw, 44px); }
    .entry-dek { font-size: 16px; }
    .section { padding: 44px 0; }
    .section__title { font-size: 28px; }
    .extras-grid { grid-template-columns: 1fr; gap: 14px; }
    .restaurants-grid { grid-template-columns: 1fr; gap: 14px; }
    .resto__photo { aspect-ratio: 16/10; }
    .stats-row { grid-template-columns: 1fr; }
    .stat:last-of-type { border-bottom: 0; }
    .stat:not(:last-of-type) { border-bottom: 1px solid var(--line-soft); padding-bottom: 20px; }
    .final-cta h2 { font-size: 28px; }
  }

  /* ═══ LANDSCAPE phones: don't break too hard ═══ */
  @media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
    .entry-head { padding: 32px 0 24px; }
    .photo-strip { grid-template-rows: 280px; }
    .section { padding: 48px 0; }
  }

  /* ═══ TOUCH device: disable hover effects that don't translate well ═══ */
  @media (hover: none) and (pointer: coarse) {
    .variant-row:hover { background: transparent; padding-left: 0; padding-right: 0; }
    .variant-row:hover .variant-row__photo img { transform: none; }
    .extra:hover .extra__photo img { transform: none; }
    .resto:hover { transform: none; }
    .resto:hover .resto__photo img { transform: none; }
    .amenity-group li:hover { padding-left: 0; color: var(--ink); }
    .amenity-group li:hover .icon { transform: none; }
    .nearby-list li:hover { padding-left: 0; }
    .nearby-list li:hover .name { color: var(--ink); }
    .review-list .review:hover { padding-left: 0; }
    .faq-item:hover summary { color: var(--ink); }
    .photo-counter:hover { background: var(--bg); color: var(--ink); transform: none; }
    .cta-btn:hover, .final-cta__btns .btn:hover { transform: none; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }