@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/dm-sans-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url('/fonts/newsreader-latin.woff2') format('woff2');
}

:root {
  --pine: #183c32;
  --pine-deep: #0c2923;
  --moss: #526f49;
  --copper: #d88946;
  --amber: #f2bb6b;
  --ink: #182b27;
  --muted: #566b65;
  --mist: #edf1ec;
  --stone: #f5f0e7;
  --paper: #fffdf8;
  --line: rgba(24,43,39,.15);
  --shadow: 0 18px 55px rgba(19,48,40,.14);
  --serif: 'Newsreader', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.65; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.25rem; color: var(--muted); }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 600; line-height: 1.05; letter-spacing: -.025em; text-wrap: balance; }
h1 { font-size: clamp(3.35rem, 8vw, 7.6rem); }
h2 { font-size: clamp(2.25rem, 4.5vw, 4.25rem); }
h3 { font-size: 1.45rem; }
svg { width: 1.1rem; height: 1.1rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header { position: sticky; top: 0; z-index: 100; min-height: 78px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; padding: 0 clamp(18px,3.5vw,56px); color: var(--ink); background: rgba(255,253,248,.95); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.brand { display: flex; align-items: center; gap: 11px; line-height: 1; white-space: nowrap; }
.brand b { display: block; font-family: var(--serif); font-size: 1.18rem; }
.brand small { display: block; margin-top: 5px; color: var(--muted); font-size: .61rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.brand-mark { position: relative; width: 42px; height: 42px; overflow: hidden; border-radius: 50%; background: var(--pine); }
.brand-mark::before { content: ''; position: absolute; left: -7px; bottom: -2px; width: 37px; height: 31px; background: var(--moss); clip-path: polygon(50% 0,100% 100%,0 100%); }
.brand-mark::after { content: ''; position: absolute; right: -8px; bottom: -2px; width: 38px; height: 25px; background: #31574a; clip-path: polygon(50% 0,100% 100%,0 100%); }
.brand-mark span { position: absolute; z-index: 1; top: 8px; right: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.site-nav { justify-self: center; display: flex; align-items: center; gap: clamp(11px,1.35vw,23px); font-size: .76rem; font-weight: 700; }
.site-nav a { padding: 10px 0 8px; border-bottom: 2px solid transparent; }
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current='page'] { color: #a9531a; border-color: var(--copper); }
.menu-button { display: none; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; padding: 0 24px; border: 0; border-radius: 999px; color: #fff; background: var(--pine); box-shadow: 0 12px 30px rgba(24,60,50,.22); font-weight: 800; transition: transform .2s, background .2s; }
.button:hover, .button:focus-visible { transform: translateY(-2px); background: #245447; }
.button-copper { color: #251b13; background: var(--amber); box-shadow: 0 12px 30px rgba(216,137,70,.2); }
.button-copper:hover, .button-copper:focus-visible { color: #fff; background: var(--copper); }
.button-small { min-height: 42px; padding: 0 18px; font-size: .78rem; }
.eyebrow { display: inline-block; color: #a9531a; font-size: .71rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.light { color: var(--amber); }

.hero { position: relative; isolation: isolate; min-height: min(735px, calc(100vh - 78px)); display: flex; align-items: end; overflow: hidden; color: #fff; background: var(--pine-deep) var(--hero-image) center/cover no-repeat; }
.hero-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg,rgba(7,27,23,.9) 0%,rgba(9,35,29,.58) 52%,rgba(9,35,29,.14) 100%),linear-gradient(0deg,rgba(7,27,23,.66),transparent 58%); }
.hero-content { width: min(1320px,100%); margin: 0 auto; padding: clamp(78px,10vw,145px) clamp(20px,5vw,68px) clamp(74px,8vw,115px); }
.hero h1 { max-width: 980px; margin: 15px 0 23px; }
.hero p { max-width: 750px; color: rgba(255,255,255,.9); font-size: clamp(1.02rem,1.55vw,1.28rem); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 31px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; border-bottom: 1px solid currentColor; }
.light-link { color: #fff; }
.editorial-hero { min-height: 620px; }
.editorial-hero h1 { max-width: 1050px; }

.section { max-width: 1280px; margin: 0 auto; padding: clamp(74px,9vw,132px) clamp(20px,5vw,64px); }
.section-heading { max-width: 790px; margin-bottom: 42px; }
.section-heading h2, .intro-section h2 { margin: 12px 0 18px; }
.section-lead { max-width: 730px; font-size: 1.04rem; }
.intro-section, .experience-section { display: grid; grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr); gap: clamp(42px,8vw,120px); align-items: start; }
.intro-section p:first-child, .experience-section p:first-child { color: var(--ink); font-size: 1.16rem; }
.comparison-section { background: var(--mist); }
.tour-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.tour-grid-two { grid-template-columns: repeat(2,minmax(0,1fr)); max-width: 860px; }
.tour-grid-single { grid-template-columns: minmax(0,410px); }
.tour-card { min-width: 0; overflow: hidden; background: var(--paper); border: 1px solid rgba(24,43,39,.1); border-radius: 24px; box-shadow: 0 8px 32px rgba(19,48,40,.07); transition: transform .25s, box-shadow .25s; }
.tour-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-image { position: relative; aspect-ratio: 3/2; overflow: hidden; background: #d8e2dc; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.tour-card:hover .card-image img { transform: scale(1.035); }
.card-label, .lead-ribbon { position: absolute; top: 14px; left: 14px; padding: 7px 11px; color: var(--pine-deep); background: rgba(255,253,248,.95); border-radius: 999px; font-size: .66rem; font-weight: 800; }
.lead-ribbon { left: auto; right: 14px; color: #251b13; background: var(--amber); }
.card-body { display: flex; flex-direction: column; min-height: 338px; padding: 24px; }
.card-body h3 { margin: 10px 0 12px; }
.card-body > p { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 3; -webkit-box-orient: vertical; font-size: .9rem; }
.rating { display: flex; align-items: center; gap: 7px; color: #9a5f1f; font-size: .78rem; font-weight: 800; }
.rating svg { fill: var(--amber); stroke: var(--amber); }
.card-meta { margin-top: auto; padding: 15px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .75rem; }
.card-meta strong { color: var(--ink); font-family: var(--serif); font-size: 1.35rem; }
.card-meta small { display: block; }
.button-card { width: 100%; min-height: 44px; font-size: .78rem; }
.compact-recommendations { margin-top: 44px; padding: 36px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.65); }
.compact-recommendations > h3 { margin-bottom: 8px; }
.compact-recommendations article { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; padding: 24px 0; border-top: 1px solid var(--line); scroll-margin-top: 100px; }
.compact-recommendations article span { color: #a9531a; font-size: .67rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.compact-recommendations h4 { margin: 5px 0 7px; font-size: 1.28rem; }
.compact-recommendations article p { margin: 0; }
.compact-recommendations article > div:last-child { min-width: 120px; text-align: right; }
.compact-recommendations article strong { display: block; font-family: var(--serif); font-size: 1.35rem; }
.compact-recommendations article a { display: inline-flex; align-items: center; gap: 5px; margin-top: 5px; color: var(--pine); font-weight: 800; }

.why-section { background: var(--stone); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--line); }
.why-grid article { padding: 34px 28px; background: var(--stone); }
.why-grid article > span { color: #a9531a; font-weight: 800; }
.why-grid h3 { margin: 28px 0 12px; }
.visual-section { max-width: 1180px; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; padding: 0; margin-top: 100px; margin-bottom: 100px; overflow: hidden; color: #fff; background: var(--pine-deep); border-radius: 30px; }
.visual-copy { padding: clamp(34px,4vw,48px); align-self: center; }
.visual-copy h2 { margin: 14px 0 18px; color: #fff; font-size: clamp(2.15rem,3.4vw,3.25rem); }
.visual-copy p { color: rgba(255,255,255,.78); }
.slideshow { position: relative; height: 500px; min-height: 500px; align-self: center; overflow: hidden; background: #24483f; }
.slideshow img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .65s; }
.slideshow img.active { opacity: 1; }
.dots { position: absolute; z-index: 2; left: 50%; bottom: 20px; display: flex; gap: 10px; transform: translateX(-50%); }
.dots button { width: 11px; height: 11px; padding: 0; border: 1px solid #fff; border-radius: 50%; background: transparent; cursor: pointer; }
.dots button.active { background: #fff; }
.dark-section { max-width: none; display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(42px,8vw,110px); color: #fff; background: var(--pine-deep); padding-left: max(20px,calc((100vw - 1152px)/2)); padding-right: max(20px,calc((100vw - 1152px)/2)); }
.dark-section h2 { margin: 12px 0 18px; color: #fff; }
.dark-section p { color: rgba(255,255,255,.74); }
.advice-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 35px; }
.advice-grid article { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.28); }
.advice-grid svg { width: 26px; height: 26px; color: var(--amber); }
.advice-grid h3 { margin: 24px 0 10px; color: #fff; }
.explore-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.explore-grid a, .related-grid a { position: relative; min-height: 245px; padding: 28px; border: 1px solid var(--line); border-radius: 21px; background: var(--paper); transition: transform .2s, background .2s; }
.explore-grid a:hover, .related-grid a:hover { color: #fff; background: var(--pine); transform: translateY(-3px); }
.explore-grid a:hover p, .related-grid a:hover p { color: rgba(255,255,255,.72); }
.explore-grid span, .related-grid span { color: #a9531a; font-size: .67rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.explore-grid h3, .related-grid h3 { margin: 27px 0 13px; }
.explore-grid b { display: inline-flex; align-items: center; gap: 6px; color: var(--pine); font-size: .73rem; }
.explore-grid a:hover b { color: var(--amber); }

.reviews-section { background: var(--stone); }
.narrow { max-width: 880px; }
.reviews-section h2, .faq-section h2 { margin: 12px 0 20px; }
.review-list { margin-top: 44px; }
.review { margin: 0; padding: 34px 0; border-top: 1px solid var(--line); }
.review:last-child { border-bottom: 1px solid var(--line); }
.review-rating { color: #a9651d; letter-spacing: .12em; }
.review blockquote { margin: 14px 0 12px; font-family: var(--serif); font-size: clamp(1.22rem,2vw,1.68rem); line-height: 1.45; }
.review figcaption { color: var(--muted); font-size: .78rem; }
.faq-list { margin-top: 40px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 22px; padding: 24px 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 1.24rem; font-weight: 600; }
.faq-list summary span { display: grid; flex: 0 0 1.5rem; width: 1.5rem; height: 1.5rem; place-items: center; overflow: hidden; color: #a9531a; font-family: var(--sans); line-height: 1; transform-origin: center; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list p { max-width: 730px; padding-bottom: 24px; }
.final-cta { padding: clamp(80px,10vw,145px) 20px; color: #fff; background: linear-gradient(120deg,var(--pine) 0%,#315649 100%); }
.final-cta > div { max-width: 820px; margin: 0 auto; text-align: center; }
.final-cta h2 { margin: 14px 0 20px; color: #fff; }
.final-cta p { max-width: 660px; margin: 0 auto 30px; color: rgba(255,255,255,.78); }

.split-recommend { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(42px,7vw,100px); align-items: center; }
.recommend-image { overflow: hidden; border-radius: 30px 30px 140px 30px; box-shadow: var(--shadow); }
.recommend-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split-recommend h2 { margin: 14px 0 20px; }
.price-line { display: flex; align-items: baseline; flex-wrap: wrap; gap: 16px; margin: 28px 0; }
.price-line strong { font-family: var(--serif); font-size: 2rem; }
.price-line span { color: var(--muted); }
.experience-section h2 { margin-top: 12px; }
.included-section { max-width: none; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; background: var(--stone); padding-left: max(20px,calc((100vw - 1152px)/2)); padding-right: max(20px,calc((100vw - 1152px)/2)); }
.included-section h2 { margin: 12px 0 28px; font-size: clamp(1.9rem,3vw,2.8rem); }
.check-list, .plain-list { margin: 0; padding: 0; list-style: none; }
.check-list li, .plain-list li { padding: 13px 0; border-bottom: 1px solid var(--line); }
.check-list li { display: flex; gap: 12px; }
.check-list svg { flex: 0 0 auto; margin-top: 4px; color: #a9531a; }
.practical-list article { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.28); }
.practical-list article > span { color: var(--amber); font-weight: 800; }
.practical-list p { margin: 0; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.related-grid svg { position: absolute; right: 24px; bottom: 24px; color: #a9531a; }

.article-wrap { width: min(980px,calc(100% - 40px)); margin: 0 auto; }
.editorial-intro { display: grid; grid-template-columns: 180px 1fr; gap: 48px; padding: 88px 0 58px; }
.article-kicker { color: #a9531a; font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.editorial-intro p { font-family: var(--serif); font-size: clamp(1.25rem,2vw,1.58rem); line-height: 1.5; }
.toc { display: grid; grid-template-columns: 180px 1fr; gap: 48px; padding: 35px 0 55px; border-top: 1px solid var(--line); }
.toc > span { font-weight: 800; }
.toc ol { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; margin: 0; padding: 0; list-style: none; }
.toc li { border-bottom: 1px solid var(--line); }
.toc a { display: grid; grid-template-columns: 38px 1fr; gap: 12px; padding: 13px 0; }
.toc a span { color: #a9531a; font-size: .72rem; font-weight: 800; }
.article-body { padding-bottom: 100px; }
.article-section { display: grid; grid-template-columns: 110px 1fr; gap: 70px; padding: 82px 0; border-top: 1px solid var(--line); }
.article-section > div { min-width: 0; }
.article-number { color: var(--copper); font-family: var(--serif); font-size: 2.2rem; }
.article-section h2 { margin-bottom: 25px; font-size: clamp(2rem,3.8vw,3.45rem); }
.article-section p, .article-section li { font-size: 1.03rem; }
.article-section ul { margin: 24px 0 0; padding: 0; list-style: none; }
.article-section li { position: relative; padding: 12px 0 12px 28px; border-bottom: 1px solid var(--line); }
.article-section li::before { content: '→'; position: absolute; left: 0; color: #a9531a; }
.inline-links { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; }
.inline-links a { display: inline-flex; align-items: center; gap: 7px; color: var(--pine); font-weight: 800; border-bottom: 2px solid var(--copper); }
.soft-bridge { margin: 25px 0 80px 180px; padding: clamp(38px,5vw,62px); color: #fff; background: var(--pine); border-radius: 26px 26px 90px 26px; }
.soft-bridge h2 { margin: 12px 0 18px; color: #fff; font-size: clamp(2rem,3.5vw,3.2rem); }
.soft-bridge p { color: rgba(255,255,255,.76); }
.soft-bridge a { display: inline-flex; align-items: center; gap: 7px; color: var(--amber); font-weight: 800; }
.tour-bridge { display: grid; grid-template-columns: 190px 1fr; gap: 26px; margin-top: 32px; padding: 18px; background: var(--mist); border-radius: 20px; }
.tour-bridge img { width: 100%; height: 100%; min-height: 145px; object-fit: cover; border-radius: 14px; }
.tour-bridge span { color: #a9531a; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.tour-bridge h3 { margin: 7px 0 8px; }
.tour-bridge p { margin-bottom: 8px; font-size: .9rem; }
.tour-bridge a { display: inline-flex; align-items: center; gap: 6px; color: var(--pine); font-size: .82rem; font-weight: 800; }
.table-wrap { max-width: 100%; overflow-x: auto; margin-top: 28px; -webkit-overflow-scrolling: touch; }
table { width: 100%; min-width: 620px; border-collapse: collapse; background: var(--paper); }
th, td { padding: 15px; border: 1px solid var(--line); text-align: left; }
th { color: #fff; background: var(--pine); }
.sources { margin: 40px 0 70px 180px; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sources h2 { margin-bottom: 12px; font-size: 1.65rem; }
.sources ul { margin: 0; padding-left: 20px; }
.sources a { color: var(--pine); font-weight: 700; text-decoration: underline; text-decoration-color: var(--copper); text-underline-offset: 3px; }
.editorial-final { margin-left: 180px; padding: clamp(42px,6vw,72px); color: #fff; background: linear-gradient(125deg,var(--pine-deep),#355d50); border-radius: 30px; }
.editorial-final h2 { margin: 13px 0 18px; color: #fff; }
.editorial-final p { color: rgba(255,255,255,.76); }
.legal-body { padding: 72px 0 110px; }
.legal-notice { margin-bottom: 55px; padding: 28px 30px; border: 1px solid rgba(180,84,31,.32); border-radius: 18px; background: #fff3e8; }
.legal-notice strong { display: block; margin-bottom: 8px; color: #8b3f19; }
.legal-notice p { margin: 0; }
.legal-section { padding: 42px 0; border-top: 1px solid var(--line); }
.legal-section h2 { margin-bottom: 22px; }
.legal-section ul { margin: 0; padding-left: 22px; }
.legal-section li { margin: 10px 0; }
.legal-section a { color: var(--pine); font-weight: 800; text-decoration: underline; text-decoration-color: var(--copper); text-underline-offset: 3px; }

.footer { color: #fff; background: #081f1a; }
.footer-grid { max-width: 1280px; display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 55px; margin: 0 auto; padding: 72px clamp(20px,5vw,64px); }
.brand-footer b { color: #fff; }
.brand-footer small { color: rgba(255,255,255,.6); }
.footer-grid > div:first-child p { max-width: 360px; margin-top: 25px; }
.footer h2 { margin-bottom: 16px; color: var(--amber); font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid > div > a:not(.brand) { display: block; margin: 9px 0; color: rgba(255,255,255,.78); }
.footer p { color: rgba(255,255,255,.58); }
.footer .disclosure { margin-top: 16px; font-size: .76rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; max-width: 1280px; margin: 0 auto; padding: 23px clamp(20px,5vw,64px); color: rgba(255,255,255,.55); border-top: 1px solid rgba(255,255,255,.13); font-size: .74rem; }
.mobile-sticky { display: none; }

:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: auto auto 1fr; }
  .menu-button { justify-self: end; display: grid; gap: 5px; width: 42px; height: 42px; padding: 10px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); cursor: pointer; }
  .menu-button > span:not(.sr-only) { width: 20px; height: 2px; background: var(--pine); }
  .site-nav { position: absolute; top: 78px; left: 0; right: 0; display: none; align-items: stretch; padding: 18px clamp(20px,5vw,64px) 25px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .site-nav.open { display: grid; grid-template-columns: repeat(4,1fr); }
  .header-cta { justify-self: end; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1/-1; }
}

@media (max-width: 820px) {
  h1 { font-size: clamp(3.1rem,14vw,5.4rem); }
  .header-cta { display: none; }
  .site-header { grid-template-columns: 1fr auto; min-height: 70px; }
  .site-nav { top: 70px; }
  .site-nav.open { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 650px; }
  .intro-section, .experience-section, .split-recommend, .included-section, .dark-section { grid-template-columns: 1fr; gap: 38px; }
  .tour-grid, .tour-grid-two { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .visual-section { grid-template-columns: 1fr; margin: 70px 20px; }
  .slideshow { order: -1; height: 390px; min-height: 390px; }
  .explore-grid, .related-grid { grid-template-columns: 1fr 1fr; }
  .editorial-intro, .toc { grid-template-columns: 1fr; gap: 16px; }
  .article-section { grid-template-columns: 60px 1fr; gap: 28px; }
  .soft-bridge, .sources, .editorial-final { margin-left: 88px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .mobile-sticky { position: fixed; z-index: 90; left: 12px; right: 12px; bottom: 12px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 10px 10px 17px; color: #fff; background: rgba(12,41,35,.96); border: 1px solid rgba(255,255,255,.15); border-radius: 999px; box-shadow: 0 12px 40px rgba(0,0,0,.25); backdrop-filter: blur(16px); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(22px); transition: opacity .25s, transform .25s, visibility .25s; }
  .mobile-sticky.visible { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .mobile-sticky span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .76rem; font-weight: 700; }
  .mobile-sticky a { flex: 0 0 auto; padding: 10px 15px; color: #251b13; background: var(--amber); border-radius: 999px; font-size: .77rem; font-weight: 800; }
  body.has-mobile-sticky { padding-bottom: 78px; }
}

@media (max-width: 560px) {
  .brand b { font-size: 1.03rem; }
  .brand small { font-size: .55rem; }
  .brand-mark { width: 38px; height: 38px; }
  .site-nav.open { grid-template-columns: 1fr; }
  .hero { min-height: 620px; }
  .editorial-hero h1 { font-size: clamp(2.45rem,10.5vw,3.7rem); }
  .hero-shade { background: linear-gradient(0deg,rgba(7,27,23,.93) 0%,rgba(7,27,23,.46) 75%,rgba(7,27,23,.17) 100%); }
  .hero-content { padding-bottom: 62px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .tour-grid, .tour-grid-two, .why-grid, .advice-grid, .explore-grid, .related-grid { grid-template-columns: 1fr; }
  .compact-recommendations { padding: 25px; }
  .compact-recommendations article { grid-template-columns: 1fr; gap: 14px; }
  .compact-recommendations article > div:last-child { text-align: left; }
  .slideshow { height: 300px; min-height: 300px; }
  .article-wrap { width: min(100% - 34px,980px); }
  .toc ol { grid-template-columns: 1fr; }
  .article-section { grid-template-columns: 1fr; gap: 12px; padding: 60px 0; }
  .article-number { font-size: 1.15rem; }
  .soft-bridge, .sources, .editorial-final { margin-left: 0; }
  .tour-bridge { grid-template-columns: 1fr; }
  .tour-bridge img { height: 190px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
