/* ══════════════════════════════════════════════════════════════════════════════
   קהילת למטיילים — lametaylim.com · main.css · brand v0.2 (Sept 2026)
   Cream canvas, ink type, ONE brand color (orange), stone borders, white for photos'
   rest. IBM Plex Sans Hebrew everywhere; Frank Ruhl Libre only for editorial moments.
   Signature device: the orange marker (circle / underline / strike), one stroke.
   Radius 10–14px, no shadows, thin dividers, no containers by default.
   ══════════════════════════════════════════════════════════════════════════════ */
:root {
  --orange: #E65335; --orange-deep: #C4402A; --cream: #F7F3EA; --ink: #171717; --stone: #D8D1C4; --gray: #6E6A63; --white: #FFFFFF;
  --r: 12px; --r-btn: 10px; --w: 1280px;
  --sans: 'IBM Plex Sans Hebrew', system-ui, -apple-system, sans-serif; --serif: 'Frank Ruhl Libre', Georgia, serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

/* ── utilities ── */
.wrap { max-width: var(--w); margin: 0 auto; padding: 0 32px; }
.photo { filter: saturate(.92) contrast(1.04) sepia(.10); }
.serif { font-family: var(--serif); }
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; padding: 12px 18px; border-radius: var(--r-btn); border: 1.5px solid transparent; cursor: pointer; transition: .15s; white-space: nowrap; }
.btn-o { background: var(--orange); color: var(--ink); } .btn-o:hover { background: var(--orange-deep); color: var(--white); }
.btn-ink { border-color: var(--ink); color: var(--ink); } .btn-ink:hover { background: var(--ink); color: var(--cream); }
.btn-ghost { border-color: var(--stone); color: var(--ink); } .btn-ghost:hover { border-color: var(--ink); }
.kicker { font-size: 13px; font-weight: 600; letter-spacing: .02em; color: var(--gray); display: inline-flex; align-items: center; gap: 10px; }
.kicker::before { content: ""; width: 26px; height: 3px; background: var(--orange); border-radius: 2px; flex: none; }
.h2 { font-weight: 700; font-size: clamp(34px, 4.2vw, 58px); line-height: 1.02; letter-spacing: -.03em; margin: 10px 0 12px; }
.sub { font-family: var(--serif); font-size: clamp(18px, 1.5vw, 22px); color: var(--gray); max-width: 58ch; line-height: 1.45; }
.lnk { color: var(--orange-deep); font-weight: 600; } .lnk:hover { color: var(--ink); }

/* ── the marker ── */
.mk { position: relative; display: inline-block; }
.mk svg { position: absolute; pointer-events: none; overflow: visible; }
.mk svg path { fill: none; stroke: var(--orange); stroke-linecap: round; stroke-linejoin: round; }
.mk-ul svg { left: -2%; right: -2%; bottom: -.18em; width: 104%; height: .32em; } .mk-ul svg path { stroke-width: 5; }
.mk-circ svg { inset: -8% -16% -14% -16%; width: auto; height: auto; } .mk-circ svg path { stroke-width: 6; }
.mk-strike svg { left: -3%; right: -3%; top: 48%; width: 106%; height: .3em; } .mk-strike svg path { stroke-width: 4; }

/* ── wordmark ── */
.wm { font-weight: 700; font-size: 26px; letter-spacing: -.045em; line-height: 1; color: var(--ink); }

/* ── top bar ── */
.top { border-bottom: 1px solid var(--stone); position: sticky; top: 0; background: rgba(247,243,234,.94); backdrop-filter: blur(6px); z-index: 50; }
.top-in { height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.top nav { display: flex; align-items: center; gap: 28px; font-weight: 500; font-size: 15px; color: var(--gray); }
.top nav a:hover, .top nav a.is-active { color: var(--ink); }
.nav-dd { position: relative; }
.nav-dd > a::after { content: " ▾"; font-size: 10px; opacity: .7; }
.nav-menu { display: none; position: absolute; top: calc(100% + 12px); inset-inline-start: -12px; background: var(--white); border: 1px solid var(--stone); border-radius: var(--r); padding: 10px; grid-template-columns: repeat(2, minmax(130px, 1fr)); gap: 2px; }
.nav-dd:hover .nav-menu, .nav-dd:focus-within .nav-menu { display: grid; }
.nav-dd::before { content: ""; position: absolute; inset: 100% 0 auto 0; height: 14px; }
.nav-menu a { padding: 8px 12px; border-radius: 8px; font-weight: 500; font-size: 15px; color: var(--ink); }
.nav-menu a:hover, .nav-menu a.is-active { background: var(--cream); font-weight: 600; }
.top .cta { display: flex; gap: 16px; align-items: center; }
.top .cta .tl { font-weight: 600; font-size: 14px; }
.nav-burger { display: none; width: 44px; height: 44px; border: 0; background: transparent; border-radius: 8px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
@media (max-width: 960px) {
  .top nav, .top .cta { display: none; }
  .nav-burger { display: flex; }
  .top.is-open .top-in { flex-wrap: wrap; height: auto; padding: 12px 0 16px; }
  .top.is-open nav, .top.is-open .cta { display: flex; width: 100%; }
  .top.is-open nav { flex-direction: column; align-items: stretch; gap: 0; }
  .top.is-open nav > a, .top.is-open .nav-dd > a { display: block; padding: 12px 0; border-bottom: 1px solid var(--stone); font-size: 17px; color: var(--ink); }
  .top.is-open .nav-dd > a::after { content: ""; }
  .top.is-open .nav-menu { display: grid; position: static; border: 0; background: transparent; padding: 4px 0 10px; }
  .top.is-open .cta { flex-direction: column; align-items: stretch; margin-top: 12px; }
  .top.is-open .cta .btn { justify-content: center; }
}

/* ── home hero ── */
.hero-b { padding: 56px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero-b .kicker { margin-bottom: 18px; }
.hero-b h1 { font-weight: 700; font-size: clamp(56px, 7.6vw, 112px); line-height: .95; letter-spacing: -.045em; max-width: 9ch; }
.hero-b .sub { margin-top: 22px; font-size: clamp(19px, 1.6vw, 24px); color: var(--ink); }
.hero-b .meta { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px 22px; color: var(--gray); font-size: 14px; font-weight: 500; }
.hero-b .meta b { color: var(--ink); font-weight: 600; }
.hero-b .ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-fig { position: relative; }
.hero-fig img { width: 100%; height: auto; aspect-ratio: 1 / 1; max-height: 620px; object-fit: cover; border-radius: var(--r); }
.hero-fig figcaption { position: absolute; inset: auto 0 0 0; padding: 18px 20px; display: flex; justify-content: space-between; align-items: end; color: #fff; background: linear-gradient(to top, rgba(23,23,23,.7), transparent); border-radius: 0 0 var(--r) var(--r); }
.hero-fig figcaption b { font-size: 44px; font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.hero-fig figcaption span { font-family: var(--serif); font-size: 16px; opacity: .92; }
.hero-fig .note { position: absolute; top: 18px; inset-inline-start: 18px; background: var(--cream); color: var(--ink); border: 1px solid var(--stone); border-radius: 10px; padding: 8px 12px; font-size: 14px; font-weight: 500; }
@media (max-width: 900px) { .hero-b { padding-top: 40px; } .hero-grid { grid-template-columns: 1fr; gap: 28px; } .hero-b h1 { font-size: clamp(48px, 13vw, 84px); } .hero-fig img { aspect-ratio: 4 / 3; max-height: none; } }

/* ── statement + numbers ── */
.pull { padding: 54px 0; border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone); display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 40px; align-items: center; }
.pull .q { font-family: var(--serif); font-size: clamp(28px, 3.2vw, 44px); line-height: 1.2; letter-spacing: -.01em; }
.pull .stats { display: grid; grid-template-columns: 1.3fr 1fr; gap: 22px; }
.pull .stats > div { text-align: right; }
.pull .stats b { display: block; font-weight: 700; font-size: clamp(26px, 2.6vw, 38px); letter-spacing: -.04em; line-height: 1; direction: ltr; text-align: right; font-variant-numeric: tabular-nums; }
.pull .stats span { display: block; font-size: 13px; color: var(--gray); margin-top: 6px; }
.pull .stats .flags { margin-top: 10px; font-size: 17px; letter-spacing: 2px; line-height: 1; filter: saturate(.85); white-space: nowrap; }
.pull .stats .flags i { font-style: normal; font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--orange-deep); letter-spacing: 0; vertical-align: middle; }
@media (max-width: 900px) { .pull { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 600px) { .pull .q { font-size: 23px; } .pull .stats .flags { white-space: normal; } }

/* ── destinations (editorial grid) ── */
.dests { padding: 80px 0 30px; }
.dhead { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.dgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px 22px; }
.dcard { display: block; }
.dcard img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r); background: var(--stone); }
.dcard .t { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: 14px; border-top: 1px solid var(--stone); padding-top: 12px; }
.dcard .nm { font-weight: 700; font-size: clamp(30px, 3vw, 44px); letter-spacing: -.04em; line-height: 1; }
.dcard .nm small { font-size: 15px; font-weight: 400; color: var(--gray); margin-inline-start: 8px; vertical-align: middle; }
.dcard .k { font-family: var(--serif); font-size: 15px; color: var(--gray); text-align: end; }
.dcard .k b { color: var(--ink); font-weight: 600; }
.dcard.wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.6fr 1fr; gap: 26px; align-items: end; }
.dcard.wide img { aspect-ratio: 16 / 9; }
.dcard.wide .t { border: 0; padding: 0; margin: 0; display: block; }
.dcard.wide .nm { font-size: clamp(64px, 8vw, 124px); display: block; }
.dcard.wide .k { white-space: normal; font-size: 18px; display: block; margin-top: 14px; }
.dcard.wide .qq { margin-top: 18px; font-family: var(--serif); font-size: 21px; line-height: 1.35; }
.dcard.wide .qq small { display: block; font-family: var(--sans); font-size: 13px; color: var(--gray); margin-top: 6px; }
.dcard.wide .go { display: inline-block; margin-top: 20px; font-weight: 600; }
.dmore { margin-top: 28px; display: flex; gap: 10px 26px; flex-wrap: wrap; font-weight: 500; font-size: 15px; border-top: 1px solid var(--stone); padding-top: 18px; }
.dmore a { color: var(--gray); } .dmore a:hover { color: var(--ink); }
@media (max-width: 900px) { .dgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .dcard.wide { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .dgrid { grid-template-columns: 1fr; } }

/* ── places (flat) ── */
.places { padding: 80px 0 40px; }
.pgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 34px 22px; margin-top: 30px; }
.pc { display: block; }
.pc img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r); background: var(--stone); }
.pc .b { padding-top: 12px; margin-top: 12px; border-top: 1px solid var(--stone); }
.pc .nm { font-weight: 700; font-size: 19px; line-height: 1.2; letter-spacing: -.02em; }
.pc .ct { font-size: 13px; color: var(--gray); margin-top: 2px; }
.pc .why { margin-top: 10px; font-family: var(--serif); font-size: 16px; line-height: 1.35; }
.pc .f { margin-top: 10px; display: flex; justify-content: space-between; align-items: baseline; gap: 8px; font-size: 13px; }
.pc .f .pr { color: var(--gray); font-variant-numeric: tabular-nums; }
.stars { font-size: 11px; letter-spacing: 1px; color: var(--ink); opacity: .8; }
@media (max-width: 1000px) { .pgrid { grid-template-columns: 1fr 1fr; } } @media (max-width: 560px) { .pgrid { grid-template-columns: 1fr; } }

/* ── מטיילים שואלים ── */
.ask { padding: 80px 0; border-top: 1px solid var(--stone); }
.askgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; margin-top: 30px; }
.aq { padding: 24px 0; border-bottom: 1px solid var(--stone); position: relative; padding-inline-start: 22px; }
.aq::before { content: ""; position: absolute; inset-inline-start: 0; top: 30px; bottom: 30px; width: 4px; border-radius: 2px; background: var(--orange); }
.aq .lbl { font-size: 12px; font-weight: 600; color: var(--gray); letter-spacing: .02em; }
.aq p { font-family: var(--serif); font-size: 22px; line-height: 1.35; margin-top: 6px; }
.aq .m { margin-top: 10px; font-size: 13px; color: var(--gray); display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.aq .m b { color: var(--ink); font-weight: 600; }
.ask .foot { margin-top: 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--gray); font-size: 14px; }
@media (max-width: 900px) { .askgrid { grid-template-columns: 1fr; } }

/* ── groups index ── */
.idx { padding: 70px 0; }
.tbl { width: 100%; border-collapse: collapse; margin-top: 26px; font-size: 16px; }
.tbl col.c-dest { width: 26%; } .tbl col.c-fb, .tbl col.c-wa { width: 20%; } .tbl col.c-g { width: 18%; } .tbl col.c-j { width: 16%; }
.tbl th { text-align: start; white-space: nowrap; font-size: 12px; font-weight: 600; color: var(--gray); letter-spacing: .02em; padding: 0 0 12px; border-bottom: 2px solid var(--ink); }
.tbl td { padding: 15px 0; border-bottom: 1px solid var(--stone); vertical-align: middle; text-align: start; }
.tbl td:last-child, .tbl th:last-child { text-align: end; }
.tbl .dn { font-weight: 700; font-size: 22px; letter-spacing: -.03em; }
.tbl .dn small { font-size: 14px; color: var(--gray); font-weight: 400; margin-inline-start: 8px; }
.tbl .num { font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.tbl .num .n { unicode-bidi: isolate; direction: ltr; display: inline-block; }
.tbl .num small { color: var(--gray); font-weight: 400; font-family: var(--serif); }
.tbl .dash { color: var(--stone); }
@media (max-width: 700px) { .tbl th:nth-child(4), .tbl td:nth-child(4) { display: none; } .tbl .dn { font-size: 18px; } }

/* ── utility: tracker ── */
.util { padding: 60px 0 90px; }
.ubox { border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone); padding: 44px 0; display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; align-items: center; }
.ubox h3 { font-weight: 700; font-size: clamp(28px, 3vw, 42px); letter-spacing: -.035em; line-height: 1.05; }
.ubox p { color: var(--gray); margin-top: 10px; font-size: 17px; max-width: 52ch; }
.ubox .ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.ticket { justify-self: end; width: min(100%, 380px); border-inline-start: 3px solid var(--orange); padding-inline-start: 20px; }
.ticket .h { font-weight: 600; } .ticket .c { font-size: 13px; color: var(--gray); }
.ticket .p { margin-top: 12px; display: flex; align-items: baseline; gap: 14px; }
.ticket .new { font-weight: 700; font-size: 38px; letter-spacing: -.04em; font-variant-numeric: tabular-nums; }
.ticket .old { color: var(--gray); font-size: 20px; }
.ticket .pct { font-family: var(--serif); font-size: 18px; color: var(--orange-deep); }
@media (max-width: 900px) { .ubox { grid-template-columns: 1fr; } .ticket { justify-self: start; } }

/* ── footer ── */
.site-footer { border-top: 1px solid var(--stone); padding: 50px 0 30px; }
.fgrid { display: grid; grid-template-columns: 1.6fr 1.2fr 1fr 1fr; gap: 30px; }
.site-footer h4 { font-size: 13px; font-weight: 600; color: var(--gray); letter-spacing: .02em; margin-bottom: 12px; }
.site-footer li { list-style: none; margin: 7px 0; font-size: 15px; font-weight: 500; }
.site-footer li a:hover { color: var(--orange-deep); }
.f-dest ul { columns: 2; column-gap: 24px; }
.f-brand p { color: var(--gray); font-size: 15px; max-width: 38ch; }
.fwm { font-weight: 700; font-size: clamp(64px, 9vw, 150px); letter-spacing: -.06em; line-height: .9; margin-top: 40px; }
.fbot { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--stone); font-size: 13px; color: var(--gray); }
@media (max-width: 860px) { .fgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .wrap { padding: 0 18px; } .fgrid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════════════════════
   Inner pages — hero + guide components
   ══════════════════════════════════════════════════════════════════════════════ */
.hero { padding: 56px 0 44px; border-bottom: 1px solid var(--stone); }
.hero-content { max-width: var(--w); margin: 0 auto; padding: 0 32px; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; color: var(--gray); font-size: 13px; margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--ink); } .breadcrumb span { color: var(--stone); } .breadcrumb-current { color: var(--ink); }
.hero h1 { font-weight: 700; font-size: clamp(34px, 4.6vw, 60px); line-height: 1.02; letter-spacing: -.035em; margin: 0 0 14px; max-width: 24ch; }
.hero-sub, .city-intro { font-family: var(--serif); color: var(--gray); font-size: clamp(16px, 1.25vw, 19px); line-height: 1.6; max-width: 76ch; }
.hero-updated { margin-top: 14px; font-size: 12px; color: var(--gray); }
.comm-hero-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 30px; }
.comm-hero-stat strong { display: block; font-weight: 700; font-size: clamp(28px, 3vw, 40px); letter-spacing: -.04em; line-height: 1; direction: ltr; text-align: right; }
.comm-hero-stat span { font-size: 13px; color: var(--gray); }

.trust-bar { border-bottom: 1px solid var(--stone); }
.trust-bar-inner { max-width: var(--w); margin: 0 auto; padding: 14px 32px; display: flex; flex-wrap: wrap; gap: 14px 34px; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon-wrap { width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; border: 1px solid var(--stone); flex: none; }
.trust-icon-wrap svg { width: 18px; height: 18px; } .trust-icon-wrap svg path { fill: var(--ink); }
.trust-text { display: flex; flex-direction: column; line-height: 1.2; }
.trust-text strong { font-weight: 700; font-size: 16px; letter-spacing: -.01em; } .trust-text span { font-size: 12px; color: var(--gray); }
.trust-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 8px; border: 1.5px solid var(--ink); color: var(--ink); font-weight: 600; font-size: 13px; margin-inline-start: 6px; }
.trust-btn:hover { background: var(--ink); color: var(--cream); } .trust-btn svg path { fill: currentColor; }

main { max-width: var(--w); margin: 0 auto; padding: 0 32px; }
.home main { max-width: none; padding: 0; }
.city-tabs { display: flex; gap: 8px; flex-wrap: wrap; padding: 26px 0 6px; }
.city-tab { padding: 8px 14px; border-radius: 8px; border: 1px solid var(--stone); font-weight: 500; font-size: 14px; color: var(--gray); }
.city-tab:hover { border-color: var(--ink); color: var(--ink); }
.city-tab--active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.affiliate-notice { margin: 18px 0 6px; font-size: 13px; color: var(--gray); display: flex; gap: 8px; }

.hotels-section { padding: 36px 0 12px; }
.section-header { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; }
.section-title { font-weight: 700; font-size: clamp(24px, 2.6vw, 36px); letter-spacing: -.03em; line-height: 1.05; }
.section-count { font-size: 14px; color: var(--gray); }
.hotel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 22px; }
.hotel-card { display: flex; flex-direction: column; }
.hotel-img { position: relative; aspect-ratio: 4 / 3; border-radius: var(--r); overflow: hidden; background: var(--stone); }
.hotel-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92) contrast(1.04) sepia(.10); }
.hotel-img-placeholder { width: 100%; height: 100%; background: var(--stone); }
.hotel-stars { position: absolute; top: 10px; inset-inline-start: 10px; background: var(--cream); color: var(--ink); font-size: 11px; padding: 4px 8px; border-radius: 6px; letter-spacing: 1px; }
.hotel-body { padding-top: 12px; margin-top: 12px; border-top: 1px solid var(--stone); display: flex; flex-direction: column; gap: 6px; flex: 1; }
.hotel-name { font-weight: 700; font-size: 19px; letter-spacing: -.02em; line-height: 1.2; }
.hotel-desc { font-family: var(--serif); font-size: 15px; color: var(--ink); line-height: 1.4; }
.hotel-loc { font-size: 13px; color: var(--gray); }
.hotel-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: 12px; font-weight: 500; padding: 3px 8px; border-radius: 6px; border: 1px solid var(--stone); color: var(--gray); }
.community-booked { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--gray); }
.community-booked-icon { width: 18px; height: 18px; border-radius: 5px; background: var(--orange); display: grid; place-items: center; flex: none; }
.community-booked-icon svg path { fill: var(--ink); }
.community-booked-text strong { color: var(--ink); }
.hotel-footer { margin-top: auto; display: flex; align-items: baseline; justify-content: space-between; gap: 10px; padding-top: 8px; }
.hotel-price { font-size: 13px; color: var(--gray); font-variant-numeric: tabular-nums; }
.book-btn, .table-book-btn, .attractions-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--orange); color: var(--ink); font-weight: 600; font-size: 14px; padding: 9px 14px; border-radius: var(--r-btn); transition: .15s; }
.book-btn:hover, .table-book-btn:hover, .attractions-btn:hover { background: var(--orange-deep); color: var(--white); }
.city-more { margin: 14px 0 6px; font-weight: 600; color: var(--orange-deep); }
@media (max-width: 1000px) { .hotel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .hotel-grid { grid-template-columns: 1fr; } }

.best-for-section { padding: 30px 0 6px; }
.best-for-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; margin-top: 14px; }
.best-for-card { border: 1px solid var(--stone); border-radius: var(--r); padding: 14px 16px; display: flex; flex-direction: column; gap: 4px; }
.best-for-category { font-size: 12px; font-weight: 600; color: var(--orange-deep); }
.best-for-hotel { font-weight: 600; font-size: 15px; }

.attractions-section { padding: 26px 0; }
.attractions-card { display: flex; align-items: center; gap: 18px; border: 1px solid var(--stone); border-radius: var(--r); padding: 22px 26px; flex-wrap: wrap; }
.attractions-icon { font-size: 28px; }
.attractions-text { flex: 1; min-width: 220px; } .attractions-text h3 { font-weight: 700; font-size: 20px; letter-spacing: -.02em; } .attractions-text p { color: var(--gray); font-size: 14px; margin-top: 4px; }

.comparison-section { padding: 26px 0; }
.table-wrap { overflow-x: auto; margin-top: 14px; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 560px; }
.comparison-table th { text-align: start; padding: 0 0 10px; font-weight: 600; font-size: 12px; color: var(--gray); border-bottom: 2px solid var(--ink); }
.comparison-table td { padding: 12px 0; border-bottom: 1px solid var(--stone); vertical-align: middle; }
.td-name { font-weight: 600; } .td-stars { font-size: 11px; letter-spacing: 1px; } .td-price strong { font-weight: 600; }
.price-na { color: var(--stone); } .td-cta { text-align: end; }
.table-book-btn { padding: 7px 12px; font-size: 13px; }

.faq-section { padding: 26px 0 40px; }
.faq-list { margin-top: 14px; }
.faq-item { border-bottom: 1px solid var(--stone); }
.faq-question { font-weight: 600; font-size: 17px; padding: 16px 0; cursor: pointer; list-style: none; position: relative; padding-inline-end: 28px; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: "+"; position: absolute; inset-inline-end: 0; top: 50%; transform: translateY(-50%); font-weight: 600; color: var(--orange-deep); font-size: 20px; }
.faq-item[open] .faq-question::after { content: "−"; }
.faq-answer { padding: 0 0 18px; color: var(--ink); font-family: var(--serif); font-size: 16px; line-height: 1.6; }

.related-section { max-width: var(--w); margin: 0 auto; padding: 30px 32px 70px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; margin-top: 14px; }
.related-card { display: flex; flex-direction: column; gap: 2px; padding: 14px 16px; border-radius: var(--r); border: 1px solid var(--stone); }
.related-card:hover { border-color: var(--ink); }
.related-name { font-weight: 600; } .related-count { font-size: 12px; color: var(--gray); }

.content-page { max-width: 760px; margin: 0 auto; padding: 40px 0 70px; }
.content-section { margin-bottom: 34px; }
.content-section h2 { font-weight: 700; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -.03em; margin-bottom: 12px; }
.content-section p, .content-section li { font-size: 16px; line-height: 1.75; color: var(--ink); }
.content-section p + p { margin-top: 10px; }
.content-section ol, .content-section ul { padding-inline-start: 22px; margin: 10px 0; }
.content-section li { margin: 6px 0; }
.content-section a { color: var(--orange-deep); font-weight: 600; }

/* communities page */
.comm-value-section { padding: 70px 0 30px; }
.comm-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; }
.comm-value-card { border-top: 1px solid var(--stone); padding-top: 18px; }
.comm-value-icon { display: none; }
.comm-value-card h3 { font-weight: 700; font-size: 20px; letter-spacing: -.02em; margin-bottom: 6px; }
.comm-value-card p { color: var(--gray); font-size: 15px; font-family: var(--serif); }
.comm-cta-section { padding: 30px 0 80px; }
.comm-cta-section .box { border: 1px solid var(--stone); border-radius: var(--r); padding: 40px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; align-items: center; }
.comm-cta-section h2 { font-weight: 700; font-size: clamp(26px, 3.2vw, 40px); letter-spacing: -.035em; line-height: 1.05; }
.comm-cta-section .box p { color: var(--gray); margin-top: 10px; font-size: 17px; }
.comm-cta-section .cta { justify-self: end; display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 860px) { .comm-value-grid { grid-template-columns: 1fr; } .comm-cta-section .box { grid-template-columns: 1fr; padding: 28px; } .comm-cta-section .cta { justify-self: start; } }

/* extension promo bar (above the nav) — restyled */
.ext-topbar { background: var(--ink); color: var(--cream); display: flex; align-items: center; justify-content: center; gap: 14px; padding: 9px 16px; font-size: 14px; font-weight: 500; }
.ext-topbar[hidden] { display: none; }
.ext-topbar-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--orange); color: var(--ink); font-weight: 600; padding: 6px 12px; border-radius: 8px; }
.ext-topbar-close { background: none; border: 0; color: var(--cream); font-size: 20px; cursor: pointer; line-height: 1; padding: 0 4px; opacity: .8; }
/* ── Carried over from the previous stylesheet (contact form, extension bar, /extension/ landing) ── */
/* ── Contact / Partnership Form ── */
.contact-form { margin-top: 18px; }
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-row .req { color: #e23744; }
.form-row .optional { color: #999; font-weight: 400; font-size: 12px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid #d6dbe6;
  border-radius: 8px;
  background: #fbfcfe;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(15,52,96,0.12);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-submit {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 36px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.contact-submit:hover { background: #16437a; transform: translateY(-1px); }
.contact-submit:disabled { opacity: 0.6; cursor: default; transform: none; }
.contact-status {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 600;
  min-height: 1em;
}
.contact-status.is-success { color: #1a9b54; }
.contact-status.is-error { color: #e23744; }
/* Honeypot — visually hidden, kept off-screen */
.cf-hp { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }


/* ── Chrome extension promo bar (above the nav) ── */
.ext-topbar {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  position: relative;
  background: var(--orange); color: var(--ink);
  padding: 8px 44px; font-size: 14px; font-weight: 600; text-align: center;
}
.ext-topbar[hidden] { display: none; }
.ext-topbar-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ink); color: #fff; font-weight: 800; font-size: 13.5px;
  padding: 6px 14px; border-radius: 8px; white-space: nowrap; flex: 0 0 auto;
}
.ext-topbar-btn:hover { background: #164a86; }
.ext-topbar-close {
  position: absolute; inset-inline-start: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--ink); font-size: 22px; line-height: 1;
  cursor: pointer; padding: 0 6px; opacity: 0.7;
}
.ext-topbar-close:hover { opacity: 1; }
@media (max-width: 620px) { .ext-topbar { font-size: 12.5px; gap: 10px; padding: 8px 40px; } }

/* ── /extension/ landing page (paid-social destination) ── */
.ext-landing .ext-topbar { display: none !important; } /* the page IS the promo */
.hero--ext { padding: 56px 28px 48px; }
.ext-hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; max-width: 1100px; margin: 0 auto; }
.ext-hero-copy h1 { font-size: 42px; line-height: 1.12; margin: 14px 0 16px; }
.ext-hl { color: var(--orange); }
.ext-sub { font-size: 18px; max-width: 560px; margin: 0 0 26px; }
.ext-pill { display: inline-block; background: #1a7f4b; color: #fff; font-weight: 700; font-size: 14px; padding: 6px 14px; border-radius: 30px; }
.ext-cta { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--ink); font-weight: 800; font-size: 18px; padding: 15px 28px; border-radius: 12px; text-decoration: none; box-shadow: 0 8px 26px rgba(0,0,0,.25); transition: transform .15s, box-shadow .15s; }
.ext-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.3); }
.ext-cta--inline { background: var(--ink); color: #fff; }
.ext-cta-note { font-size: 13.5px; color: rgba(255,255,255,.75); margin: 12px 0 0; }
.ext-mobile-title { font-size: 16px; font-weight: 600; color: #fff; margin: 0 0 12px; }
.ext-share-row { display: flex; flex-wrap: wrap; gap: 10px; }
.ext-share { display: inline-flex; align-items: center; gap: 8px; font: inherit; font-weight: 700; font-size: 15px; padding: 12px 18px; border-radius: 10px; border: 0; cursor: pointer; text-decoration: none; color: #fff; background: rgba(255,255,255,.18); }
.ext-share--wa { background: var(--orange); color: #fff; }
.ext-share--mail, .ext-share--copy { border: 1.5px solid rgba(255,255,255,.55); }
.ext-hero-shot { margin: 0; display: flex; justify-content: center; }
.ext-hero-shot img { width: 100%; max-width: 360px; height: auto; border-radius: 16px; box-shadow: 0 26px 60px rgba(0,0,0,.45); }
.ext-section { max-width: 860px; margin: 0 auto; padding: 44px 20px; }
.ext-section h2 { font-size: 26px; font-weight: 800; color: var(--ink); margin-bottom: 22px; text-align: center; }
.ext-section--alt { max-width: none; background: #eef4fa; }
.ext-section--alt > * { max-width: 860px; margin-left: auto; margin-right: auto; }
.ext-steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ext-steps li { background: #fff; border-radius: 14px; padding: 22px; box-shadow: 0 2px 12px rgba(0,0,0,.06); display: flex; gap: 14px; align-items: flex-start; }
.ext-step-n { flex: 0 0 34px; height: 34px; border-radius: 50%; background: var(--ink); color: #fff; font-weight: 800; display: grid; place-items: center; }
.ext-steps strong { display: block; font-size: 16px; color: var(--ink); margin-bottom: 6px; }
.ext-steps p { font-size: 14.5px; color: #555; line-height: 1.6; margin: 0; }
.ext-benefits { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 26px; }
.ext-benefits li { background: #fff; border-radius: 12px; padding: 18px 20px; font-size: 15px; line-height: 1.7; color: #444; box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.ext-benefits strong { color: var(--ink); }
.ext-alert-shot { margin: 0; text-align: center; }
.ext-alert-shot img { width: 100%; max-width: 460px; height: auto; border-radius: 16px; }
.ext-final { text-align: center; }
.ext-final p { color: #555; font-size: 16px; margin-bottom: 18px; }
.ext-disclosure { font-size: 12.5px !important; color: #888 !important; margin-top: 26px !important; line-height: 1.6; }
.ext-disclosure a { color: var(--ink); }
@media (max-width: 860px) {
  .ext-hero-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .ext-sub { margin-left: auto; margin-right: auto; }
  .ext-share-row { justify-content: center; }
  .ext-hero-copy h1 { font-size: 32px; }
  .ext-hero-shot img { max-width: 300px; }
  .ext-steps, .ext-benefits { grid-template-columns: 1fr; }
}

