/* ============================================================
   ViaggiIdea — foglio di stile
   Palette: inchiostro profondo, turchese oceano, sabbia calda
   Font: Fraunces (display) + Inter (testo)
   ============================================================ */

:root {
    --ink: #14212b;
    --ink-soft: #3d4f5c;
    --teal: #0e7c86;
    --teal-bright: #12a5b0;
    --sand: #f7f3ea;
    --sand-deep: #efe7d6;
    --paper: #ffffff;
    --gold: #c8a24b;
    --serif: "Fraunces", Georgia, serif;
    --sans: "Inter", system-ui, -apple-system, sans-serif;
    /* larghezza fluida: tutto lo schermo fino a 2500px (niente vw: così lo zoom
       del browser e la barra di scorrimento non creano mai sbordi laterali) */
    --maxw: 2500px;
    --prosew: 900px;
    --shadow: 0 10px 40px rgba(20, 33, 43, .12);
    --radius: 14px;
}

/* schermi molto grandi: testo base leggermente più grande */
@media (min-width: 1920px) { html { font-size: 17px; } }
@media (min-width: 2300px) { html { font-size: 18px; } }

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    /* mai scroll orizzontale: qualunque cosa sbordi viene tagliata, non panoramicabile */
    overflow-x: hidden;
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--sand);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-x: clip;
}
img { max-width: 100%; height: auto; display: inline-block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-bright); }

/* ---------------- header ---------------- */
.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    transition: background .35s, box-shadow .35s, padding .35s;
    padding: 22px 0;
}
.site-header.scrolled {
    background: rgba(255, 255, 255, .95);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 2px 24px rgba(20, 33, 43, .10);
    padding: 10px 0;
}
/* col menu mobile aperto niente backdrop-filter: renderebbe il pannello fixed
   figlio dell'header confinato all'header stesso (spec CSS) e il menu "sparisce" */
body.nav-open .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}
.header-inner {
    max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.brand {
    font-family: var(--serif); font-weight: 600; font-size: 1.55rem;
    color: #fff; letter-spacing: .5px; transition: color .35s;
}
.brand span { color: var(--gold); font-style: italic; }
.site-header.scrolled .brand { color: var(--ink); }
.main-nav { display: flex; gap: 30px; }
.main-nav a {
    color: rgba(255, 255, 255, .92); font-size: .95rem; font-weight: 500;
    letter-spacing: .04em; text-transform: uppercase; font-size: .82rem;
    padding: 6px 2px; position: relative; transition: color .35s;
}
.main-nav a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
    height: 2px; background: var(--gold); transition: right .3s;
}
.main-nav a:hover::after { right: 0; }
.site-header.scrolled .main-nav a { color: var(--ink-soft); }
.nav-toggle {
    display: none; background: none; border: 0; cursor: pointer;
    /* area di tocco generosa per il telefono */
    padding: 12px 10px; margin: -8px -6px; min-width: 46px; min-height: 44px;
    position: relative; z-index: 120;
    touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
    display: block; width: 26px; height: 2px; margin: 6px 0;
    background: #fff; transition: .3s;
}
.site-header.scrolled .nav-toggle span { background: var(--ink); }

/* ---------------- hero home ---------------- */
.hero { position: relative; height: 100vh; min-height: 620px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-slide {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; transform: scale(1.08); transition: opacity 1.6s ease, transform 7s linear;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10, 20, 30, .45) 0%, rgba(10, 20, 30, .25) 45%, rgba(10, 20, 30, .55) 100%);
}
.hero-content { position: relative; text-align: center; color: #fff; padding: 0 24px; max-width: 900px; }
.hero-eyebrow {
    text-transform: uppercase; letter-spacing: .28em; font-size: .8rem;
    opacity: .9; margin-bottom: 18px;
}
.hero h1 {
    font-family: var(--serif); font-weight: 400; font-size: clamp(2.6rem, 6.5vw, 5rem);
    line-height: 1.08; margin-bottom: 20px; text-shadow: 0 2px 30px rgba(0, 0, 0, .35);
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1.15rem; opacity: .92; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
    display: inline-block; padding: 14px 32px; border-radius: 40px;
    font-weight: 600; font-size: .92rem; letter-spacing: .05em;
    transition: transform .25s, box-shadow .25s, background .25s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0, 0, 0, .25); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { color: var(--ink); }
.btn-ghost { border: 1.5px solid rgba(255, 255, 255, .8); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { color: #fff; background: var(--teal); }
.hero-caption {
    position: absolute; right: 28px; bottom: 26px; color: rgba(255, 255, 255, .85);
    font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
}
.hero-scroll {
    position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
    width: 28px; height: 46px; border: 2px solid rgba(255, 255, 255, .7); border-radius: 16px;
}
.hero-scroll span {
    position: absolute; left: 50%; top: 8px; width: 4px; height: 10px; margin-left: -2px;
    background: #fff; border-radius: 2px; animation: scrollhint 1.8s infinite;
}
@keyframes scrollhint { 0% { opacity: 1; transform: translateY(0) } 70% { opacity: 0; transform: translateY(14px) } 100% { opacity: 0 } }

/* ---------------- sezioni ---------------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 84px 24px; }
.section-head { text-align: center; margin-bottom: 48px; }
.eyebrow {
    text-transform: uppercase; letter-spacing: .24em; font-size: .78rem;
    color: var(--teal); font-weight: 600; display: block; margin-bottom: 10px;
}
.eyebrow-link:hover { color: var(--gold); }
.section-head h2, .page-hero h1 {
    font-family: var(--serif); font-weight: 500;
    font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.1;
}
.intro-statement { padding: 90px 24px 10px; max-width: 860px; text-align: center; }
.intro-statement p {
    font-family: var(--serif); font-size: clamp(1.25rem, 2.4vw, 1.7rem);
    font-weight: 300; line-height: 1.55; color: var(--ink-soft);
}
.intro-statement strong { color: var(--teal); font-weight: 500; }
.center { text-align: center; margin-top: 44px; }

/* ---------------- mosaico destinazioni ---------------- */
.dest-mosaic {
    display: grid; gap: 18px;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: clamp(260px, 17vw, 420px);
}
@media (min-width: 1700px) {
    .dest-mosaic { grid-template-columns: repeat(4, 1fr); gap: 22px; }
}
.dest-tile {
    position: relative; overflow: hidden; border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.dest-tile.wide { grid-column: span 2; }
.dest-tile img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .6, .2, 1);
}
.dest-tile:hover img { transform: scale(1.07); }
.tile-shade {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 20, 30, .78) 100%);
    transition: background .4s;
}
.tile-text { position: absolute; left: 22px; right: 22px; bottom: 18px; color: #fff; }
.tile-country {
    display: block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
    opacity: .85; margin-bottom: 4px;
}
.tile-name { display: block; font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.tile-tag {
    display: block; font-size: .88rem; font-style: italic; opacity: 0;
    transform: translateY(8px); transition: .35s;
}
.dest-tile:hover .tile-tag { opacity: .95; transform: translateY(0); }

/* ---------------- quote band ---------------- */
.quote-band {
    background-attachment: fixed; background-size: cover; background-position: center;
    position: relative; padding: 130px 24px; margin: 40px 0;
}
.quote-band::before { content: ""; position: absolute; inset: 0; background: rgba(14, 34, 45, .55); }
.quote-band blockquote {
    position: relative; max-width: 820px; margin: 0 auto; text-align: center;
    color: #fff; font-family: var(--serif); font-weight: 300; font-style: italic;
    font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.4;
}

/* ---------------- card ---------------- */
.card-grid {
    display: grid; gap: 26px;
    grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
}
@media (min-width: 1700px) {
    .card-grid { gap: 32px; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); }
}
.card {
    background: var(--paper); border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 4px 18px rgba(20, 33, 43, .08); color: var(--ink);
    display: flex; flex-direction: column;
    transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); color: var(--ink); }
.card-media { height: clamp(220px, 15vw, 320px); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-meta {
    font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; color: var(--teal);
    font-weight: 600;
}
.card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.35rem; line-height: 1.25; }
.card p { font-size: .93rem; color: var(--ink-soft); flex: 1; }
.card-more { font-size: .85rem; font-weight: 600; color: var(--gold); }
.card:hover .card-more { color: var(--teal); }

/* ---------------- page hero (interne) ---------------- */
.page-hero {
    position: relative; min-height: 54vh; display: flex; align-items: flex-end;
    background-size: cover; background-position: center; padding: 120px 24px 60px;
}
.page-hero-dark { background: linear-gradient(150deg, var(--ink) 0%, #1d3a4a 60%, var(--teal) 130%); min-height: 42vh; }
.page-hero-shade {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10, 20, 30, .35) 0%, rgba(10, 20, 30, .15) 40%, rgba(10, 20, 30, .72) 100%);
}
.page-hero-text { position: relative; max-width: var(--maxw); margin: 0 auto; width: 100%; color: #fff; }
.page-hero-text .eyebrow { color: var(--gold); }
.page-hero-text .lead { font-size: 1.1rem; opacity: .92; margin-top: 12px; max-width: 640px; }
.article-hero { min-height: 70vh; position: relative; display: flex; align-items: flex-end; background-size: cover; background-position: center; padding: 120px 24px 70px; }
.article-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.12; max-width: 900px; }

/* ---------------- destinazioni: lista alternata ---------------- */
.dest-list { display: flex; flex-direction: column; gap: 60px; }
.dest-row {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: center;
    color: var(--ink); border-radius: var(--radius);
}
.dest-row.flip .dest-row-media { order: 2; }
.dest-row-media { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); height: clamp(320px, 26vw, 560px); }
.dest-row-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.dest-row:hover .dest-row-media img { transform: scale(1.05); }
.dest-row h2 { font-family: var(--serif); font-weight: 500; font-size: 2.2rem; margin: 4px 0 2px; }
.dest-row:hover h2 { color: var(--teal); }
.dest-tagline { font-style: italic; color: var(--gold); font-family: var(--serif); font-size: 1.1rem; margin-bottom: 12px; }
.dest-row p { color: var(--ink-soft); font-size: .97rem; }
.dest-row .card-more { display: inline-block; margin-top: 14px; }
.dest-description {
    max-width: 800px; margin: 0 auto 54px; text-align: center;
    font-family: var(--serif); font-weight: 300; font-size: 1.25rem; line-height: 1.6; color: var(--ink-soft);
}

/* ---------------- filtri archivio ---------------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 40px; justify-content: center; }
.chip {
    border: 1.5px solid var(--sand-deep); background: var(--paper); color: var(--ink-soft);
    padding: 8px 18px; border-radius: 30px; cursor: pointer; font-size: .88rem; font-weight: 500;
    transition: .25s; font-family: var(--sans);
}
.chip:hover { border-color: var(--teal); color: var(--teal); }
.chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.search-box {
    margin-left: auto; padding: 10px 20px; border-radius: 30px; border: 1.5px solid var(--sand-deep);
    font-family: var(--sans); font-size: .92rem; min-width: 240px; outline: none;
    transition: border-color .25s;
}
.search-box:focus { border-color: var(--teal); }
.no-results { color: var(--ink-soft); font-style: italic; }

/* ---------------- prose (articoli) ---------------- */
.prose {
    max-width: var(--prosew); margin: 0 auto; padding: 64px 24px 40px;
    font-family: var(--serif);
    font-size: 1.13rem; font-weight: 340; color: #26333d; line-height: 1.85;
    letter-spacing: .003em;
}
.prose strong { font-weight: 560; }
@media (min-width: 1700px) { :root { --prosew: 1100px; } }
.prose > p { margin: 0 0 1.4em; }
.prose h2 { font-family: var(--serif); font-weight: 500; margin: 2.2em 0 .8em; font-size: 1.9rem; line-height: 1.2; }
.prose h3 { font-family: var(--serif); font-weight: 500; margin: 1.8em 0 .6em; font-size: 1.45rem; }
.prose a { border-bottom: 1px solid rgba(14, 124, 134, .35); }
.prose a:hover { border-color: var(--teal-bright); }

/* figure e allineamenti stile WordPress */
.prose figure { margin: 0 0 1.6em; }
.prose .wp-caption img, .prose figure img { border-radius: 10px; box-shadow: 0 6px 24px rgba(20, 33, 43, .14); }
.prose figcaption {
    font-size: .84rem; color: #6b7a86; font-style: italic; text-align: center;
    margin-top: 9px; line-height: 1.4;
}
.prose .aligncenter { text-align: center; margin-left: auto; margin-right: auto; clear: both; }
.prose .alignleft { float: left; margin: 6px 26px 14px 0; max-width: min(46%, 420px); }
.prose .alignright { float: right; margin: 6px 0 14px 26px; max-width: min(46%, 420px); }
.prose .alignleft figcaption, .prose .alignright figcaption { text-align: left; }
.prose p:has(> a > img):not([style*="float"]) { text-align: center; }
.prose hr { border: none; border-top: 1px solid var(--sand-deep); margin: 3em 0; clear: both; }
.prose iframe { max-width: 100%; border: 0; border-radius: 10px; }
.video-embed { position: relative; aspect-ratio: 16/9; margin: 2em 0; clear: both; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.prose::after { content: ""; display: block; clear: both; }

/* cursore zoom su immagini linkate */
.prose a:has(> img) { border-bottom: none; cursor: zoom-in; }

/* ---------------- galleria foto ---------------- */
.photo-grid {
    display: grid; gap: 12px;
    grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr));
}
@media (min-width: 1700px) {
    .photo-grid { gap: 16px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}
.photo-cell {
    display: block; overflow: hidden; border-radius: 10px; aspect-ratio: 4/3;
    cursor: zoom-in;
}
.photo-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.photo-cell:hover img { transform: scale(1.08); }

/* ---------------- nav articolo ---------------- */
.article-nav {
    max-width: var(--prosew); margin: 0 auto; padding: 10px 24px 30px;
    display: flex; justify-content: space-between; gap: 20px;
}
.article-nav-item { display: flex; flex-direction: column; gap: 4px; max-width: 45%; color: var(--ink-soft); }
.article-nav-item span { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--teal); font-weight: 600; }
.article-nav-item strong { font-family: var(--serif); font-weight: 500; font-size: 1.05rem; line-height: 1.3; }
.article-nav-item:hover strong { color: var(--teal); }
.article-nav-item.next { text-align: right; margin-left: auto; }
.related { border-top: 1px solid var(--sand-deep); }

/* ---------------- progress bar ---------------- */
.progress-bar {
    position: fixed; top: 0; left: 0; height: 3px; width: 0;
    background: linear-gradient(90deg, var(--teal), var(--gold)); z-index: 200;
}

/* ---------------- lightbox ---------------- */
.lightbox {
    position: fixed; inset: 0; z-index: 300; background: rgba(6, 11, 16, .97);
    touch-action: none; /* i gesti (pinch/pan/swipe) li gestisce il JS, solo sulla foto */
    overscroll-behavior: contain;
}
.lightbox[hidden] { display: none; }
.lightbox figure {
    position: absolute; inset: 0; margin: 0;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.lightbox img {
    max-width: 100%; max-height: 100%; object-fit: contain;
    box-shadow: 0 10px 60px rgba(0, 0, 0, .6);
    will-change: transform; transform-origin: center center;
    user-select: none; -webkit-user-drag: none;
    transition: transform .12s ease-out;
}
.lightbox.zoomed img { transition: none; cursor: grab; }
/* didascalia: fissa in fondo allo schermo, sempre alla stessa dimensione */
.lightbox figcaption {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 305;
    padding: 26px 74px 16px; text-align: center; pointer-events: none;
    color: rgba(255, 255, 255, .92); font-size: .95rem; font-style: italic;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .72));
    text-shadow: 0 1px 6px rgba(0, 0, 0, .8);
}
.lightbox figcaption:empty { display: none; }
/* spinner mentre la foto scarica */
.lightbox.loading figure::before {
    content: ""; position: absolute; left: 50%; top: 50%; margin: -24px 0 0 -24px;
    width: 48px; height: 48px; z-index: 304;
    border: 3px solid rgba(255, 255, 255, .22); border-top-color: #fff;
    border-radius: 50%; animation: lbspin .9s linear infinite;
}
.lightbox.loading img { opacity: .25; }
@keyframes lbspin { to { transform: rotate(360deg); } }
/* pulsanti: fissi, circolari, sempre della stessa dimensione (non zoomano) */
.lb-close, .lb-prev, .lb-next {
    position: fixed; z-index: 310; cursor: pointer;
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff; padding: 0;
    transition: background .2s, border-color .2s, transform .15s;
    touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.lb-close svg, .lb-prev svg, .lb-next svg { width: 24px; height: 24px; display: block; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
    background: rgba(255, 255, 255, .28); border-color: rgba(255, 255, 255, .55);
}
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 14px; top: 50%; margin-top: -26px; }
.lb-next { right: 14px; top: 50%; margin-top: -26px; }
.lb-prev:hover { transform: translateX(-2px); }
.lb-next:hover { transform: translateX(2px); }
.lb-close:hover { transform: rotate(90deg); }
@media (max-width: 700px) {
    .lb-close, .lb-prev, .lb-next { width: 46px; height: 46px; }
    .lb-prev { left: 8px; } .lb-next { right: 8px; }
    .lightbox figcaption { padding: 22px 60px 12px; font-size: .88rem; }
}

/* ---------------- footer ---------------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .78); margin-top: 60px; }
.footer-inner {
    max-width: var(--maxw); margin: 0 auto; padding: 64px 24px 40px;
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
}
.footer-brand .brand { font-size: 1.8rem; }
.footer-brand p { margin-top: 10px; font-style: italic; opacity: .75; }
.footer-col h4 {
    font-size: .8rem; text-transform: uppercase; letter-spacing: .18em;
    color: var(--gold); margin-bottom: 16px; font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255, 255, 255, .78); font-size: .93rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12); padding: 22px 24px; text-align: center;
    font-size: .82rem; opacity: .6;
}

/* ---------------- reveal on scroll ---------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------------- responsive ---------------- */
@media (max-width: 900px) {
    .dest-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
    .dest-tile.wide { grid-column: span 2; }
    .dest-row, .dest-row.flip { grid-template-columns: 1fr; gap: 20px; }
    .dest-row.flip .dest-row-media { order: 0; }
    .dest-row-media { height: 260px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .quote-band { background-attachment: scroll; }
}
@media (max-width: 700px) {
    .main-nav {
        position: fixed; inset: 0; background: rgba(16, 26, 36, .97);
        flex-direction: column; align-items: center; justify-content: center; gap: 34px;
        opacity: 0; pointer-events: none; transition: opacity .3s;
        z-index: 110;
    }
    .main-nav.open { opacity: 1; pointer-events: auto; }
    .main-nav a, .site-header.scrolled .main-nav a { color: #fff; font-size: 1.1rem; }
    .nav-toggle { display: block; }
    body.nav-open .nav-toggle span { background: #fff; }
    body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .dest-mosaic { grid-template-columns: 1fr; }
    .dest-tile.wide { grid-column: span 1; }
    .prose .alignleft, .prose .alignright { float: none; margin: 6px auto 14px; max-width: 100%; text-align: center; }
    .search-box { margin-left: 0; width: 100%; }
    .article-nav { flex-direction: column; }
    .article-nav-item { max-width: 100%; }
    .section { padding: 56px 20px; }
}
