/* Visit Tours Detours — editorial turns, not tour packages */
:root {
  --sage: #5a7a6a;
  --sage-pale: #d4e0d8;
  --sand: #e8e0d4;
  --paper: #faf8f4;
  --charcoal: #2a2a2e;
  --charcoal-soft: #45454c;
  --copper: #b87333;
  --copper-pale: #e0c4a8;
  --muted: #7a756c;
  --rule: #d8d0c4;
  --serif: 'Merriweather', Georgia, serif;
  --sans: 'Libre Franklin', system-ui, sans-serif;
  --w: 1120px;
  --read: 650px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-size: 16px; line-height: 1.72; color: var(--charcoal); background: var(--sand); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage); text-decoration: none; border-bottom: 1px solid var(--sage-pale); }
a:hover { color: var(--copper); border-color: var(--copper-pale); }

.box { max-width: var(--w); margin: 0 auto; padding: 0 1.25rem; }

/* Top */
.route-bar { background: var(--charcoal); color: rgba(255,255,255,.72); text-align: center; padding: .42rem; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; }
.detour-head { background: var(--paper); border-bottom: 1px solid var(--rule); position: sticky; top: 0; z-index: 50; }
.detour-head__row { display: flex; align-items: center; justify-content: space-between; padding: .85rem 0; gap: 1rem; }
.detour-logo { display: flex; flex-direction: column; }
.detour-logo__sub { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--copper); font-weight: 700; }
.detour-logo__name { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; color: var(--charcoal); line-height: 1.1; }
.detour-nav { display: flex; gap: 1.4rem; list-style: none; }
.detour-nav a { font-size: .76rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); border: none; }
.detour-nav a.on, .detour-nav a:hover { color: var(--charcoal); }
.detour-menu { display: none; background: var(--sand); border: 1px solid var(--rule); padding: .4rem .65rem; font-size: .72rem; font-weight: 700; cursor: pointer; color: var(--charcoal); }

/* Hero route */
.route-hero { padding: 3rem 0; background: linear-gradient(135deg, var(--sage-pale) 0%, var(--paper) 55%); }
.route-hero__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 2.5rem; align-items: center; }
.route-hero__path { display: flex; align-items: center; gap: .4rem; margin-bottom: .7rem; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sage); }
.route-hero__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--copper); }
.route-hero__line { flex: 1; max-width: 60px; height: 2px; background: linear-gradient(90deg, var(--copper), var(--sage-pale)); }
.route-hero h1 { font-family: var(--serif); font-size: clamp(1.9rem, 3.8vw, 2.75rem); line-height: 1.08; font-weight: 700; margin-bottom: .9rem; }
.route-hero__lead { color: var(--muted); font-size: 1rem; margin-bottom: 1.3rem; max-width: 460px; }
.route-hero__go { display: inline-flex; align-items: center; gap: .5rem; background: var(--sage); color: #fff; padding: .7rem 1.25rem; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; border: none; }
.route-hero__go:hover { background: var(--charcoal); color: #fff; }
.route-hero__go::after { content: '→'; }
.route-hero__img { border-radius: 8px; overflow: hidden; box-shadow: 0 16px 48px rgba(42,42,46,.12); border: 3px solid #fff; }
.route-hero__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Turn list */
.turns { padding: 3rem 0 4.5rem; }
.turns__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 2rem; }
.turns__top h2 { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; }
.turns__top span { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.turn-track { position: relative; padding-left: 2rem; }
.turn-track::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--copper), var(--sage-pale)); }
.turn { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.5rem; position: relative; }
.turn::before { content: ''; position: absolute; left: -2rem; top: 1.4rem; width: 14px; height: 14px; border-radius: 50%; background: var(--paper); border: 3px solid var(--copper); z-index: 1; }
.turn--lead { grid-template-columns: 1.2fr 1fr; margin-bottom: 2rem; }
.turn__card { background: var(--paper); border: 1px solid var(--rule); border-radius: 6px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; transition: box-shadow .25s; }
.turn--lead .turn__card { grid-column: span 2; grid-template-columns: 1.1fr 1fr; }
.turn__card:hover { box-shadow: 0 10px 36px rgba(42,42,46,.1); }
.turn__img img { width: 100%; height: 100%; min-height: 140px; object-fit: cover; }
.turn__body { padding: 1.1rem 1.2rem; }
.turn__n { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--copper); }
.turn__where { font-size: .7rem; color: var(--muted); margin: .1rem 0 .35rem; }
.turn h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; line-height: 1.28; margin-bottom: .3rem; }
.turn h3 a { color: var(--charcoal); border: none; }
.turn h3 a:hover { color: var(--sage); }
.turn p { font-size: .84rem; color: var(--muted); }
.turn--solo .turn__card { grid-column: span 1; }

/* Article */
.detour-article { padding-bottom: 4rem; background: var(--paper); }
.detour-article__banner { height: 35vh; min-height: 220px; max-height: 390px; overflow: hidden; }
.detour-article__banner img { width: 100%; height: 100%; object-fit: cover; }
.detour-article__body { padding-top: 1.75rem; }
.trail { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .8rem; }
.turn-head { max-width: var(--read); margin-bottom: 1.5rem; }
.turn-head__n { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--copper); }
.turn-head h1 { font-family: var(--serif); font-size: clamp(1.8rem, 3.2vw, 2.5rem); line-height: 1.1; margin: .3rem 0 .45rem; font-weight: 700; }
.turn-head__meta { font-size: .78rem; color: var(--muted); }
.turn-layout { display: grid; grid-template-columns: 1fr 175px; gap: 2.2rem; }
.copy { max-width: var(--read); }
.copy .lede { font-family: var(--serif); font-size: 1.15rem; font-style: italic; color: var(--charcoal-soft); margin-bottom: 1.35rem; line-height: 1.78; }
.copy h2 { font-family: var(--serif); font-size: 1.3rem; color: var(--charcoal); margin: 1.75rem 0 .55rem; font-weight: 700; }
.copy p { margin-bottom: .95rem; color: #3d3d44; }
.copy ul { margin: 0 0 1rem 1.15rem; color: #3d3d44; }
.copy li { margin-bottom: .3rem; }
.waypoint { background: var(--sage-pale); border-left: 3px solid var(--sage); padding: .9rem 1rem; margin: 1.35rem 0; border-radius: 0 4px 4px 0; }
.waypoint strong { display: block; font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; color: var(--sage); margin-bottom: .25rem; }
.waypoint p { margin: 0; font-size: .88rem; }
.turn-side { position: sticky; top: 4.2rem; background: var(--sand); border: 1px solid var(--rule); border-radius: 6px; padding: .9rem; }
.turn-side h3 { font-size: .58rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: .55rem; }
.turn-side a { display: block; font-size: .8rem; font-weight: 600; color: var(--charcoal); border: none; padding: .45rem 0; border-bottom: 1px solid var(--rule); }
.turn-side a:last-child { border-bottom: none; }

/* Static */
.static { padding: 3rem 0 4rem; background: var(--paper); }
.static h1 { font-family: var(--serif); font-size: 2.1rem; margin-bottom: .65rem; }
.static-lead { color: var(--muted); margin-bottom: 1.5rem; max-width: 520px; }
.static h2 { font-family: var(--serif); font-size: 1.2rem; margin: 1.35rem 0 .45rem; }
.static p { margin-bottom: .8rem; max-width: 560px; color: #3d3d44; }
.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.frm { display: grid; gap: .85rem; max-width: 400px; }
.frm label { display: grid; gap: .2rem; font-size: .8rem; font-weight: 600; }
.frm input, .frm textarea { padding: .65rem; border: 1px solid var(--rule); font: inherit; background: #fff; border-radius: 4px; }
.btn { background: var(--copper); color: #fff; border: none; padding: .65rem 1.1rem; font-weight: 700; font-size: .76rem; text-transform: uppercase; cursor: pointer; border-radius: 4px; }

/* Footer */
.detour-foot { background: var(--charcoal); color: rgba(255,255,255,.7); padding: 2.5rem 0 1rem; margin-top: 2rem; }
.detour-foot__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.detour-foot strong { font-family: var(--serif); font-size: 1.05rem; color: #fff; display: block; margin-bottom: .35rem; }
.detour-foot p { font-size: .82rem; opacity: .65; }
.detour-foot h4 { font-size: .58rem; text-transform: uppercase; letter-spacing: .12em; color: var(--copper-pale); margin-bottom: .5rem; }
.detour-foot a { color: rgba(255,255,255,.6); font-size: .82rem; display: block; margin-bottom: .28rem; border: none; }
.detour-foot a:hover { color: #fff; }
.detour-foot__end { display: flex; justify-content: space-between; padding-top: .9rem; font-size: .68rem; opacity: .4; flex-wrap: wrap; gap: .4rem; }

@media (max-width: 860px) {
  .route-hero__inner, .turn, .turn--lead, .turn__card, .turn--lead .turn__card, .turn-layout, .detour-foot__grid, .cols { grid-template-columns: 1fr; }
  .turn--lead .turn__card { grid-column: span 1; }
}
@media (max-width: 768px) {
  .detour-menu { display: block; }
  .detour-nav { display: none; position: fixed; inset: 0 0 0 28%; background: var(--paper); flex-direction: column; padding: 4rem 1.2rem; z-index: 40; border-left: 3px solid var(--sage); }
  .detour-nav.open { display: flex; }
}
