/* ============================================================
   TROGIR INSIDER — Shared design system (main.css)
   Minimalist editorial · Adriatic palette · Fraunces + Inter
   ============================================================ */

:root {
  --ink:       #11313F;
  --ink-soft:  #2A4A56;
  --sea:       #3A7CA5;
  --mist:      #EFE9DD;
  --paper:     #FAF6EE;
  --line:      #E7E0D2;
  --stone:     #B0934E;
  --text:      #4A534F;

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --wrap: 1240px;
  --pad: clamp(1.5rem, 5vw, 4rem);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.eyebrow {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; color: var(--stone);
}

/* ---------- NAV ---------- */
#nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem var(--pad);
}
#nav.solid { position: sticky; background: var(--paper); border-bottom: 1px solid var(--line); }
.logo { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; letter-spacing: -0.01em; color: #fff; }
.logo span { font-style: italic; }
#nav.scrolled .logo, #nav.solid .logo { color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.82rem; font-weight: 400; letter-spacing: 0.02em; color: rgba(255,255,255,0.85); transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
#nav.scrolled .nav-links a, #nav.solid .nav-links a { color: var(--text); }
#nav.scrolled .nav-links a:hover, #nav.solid .nav-links a:hover,
#nav.scrolled .nav-links a.active, #nav.solid .nav-links a.active { color: var(--ink); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; z-index: 60; }
.burger span { width: 24px; height: 1.5px; background: #fff; transition: 0.2s; }
#nav.scrolled .burger span, #nav.solid .burger span { background: var(--ink); }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--pad) clamp(3rem, 7vw, 6rem); color: #fff;
}
.hero.page { min-height: 64svh; }
.hero-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(17,33,38,0.42) 0%, rgba(17,33,38,0.10) 40%, rgba(17,33,38,0.44) 68%, rgba(15,30,36,0.78) 100%);
}
.hero h1, .hero .hero-sub, .hero .eyebrow { text-shadow: 0 1px 3px rgba(10,24,32,0.45), 0 2px 18px rgba(10,24,32,0.55); }
.hero .breadcrumb, .hero .hero-actions .link-arrow { text-shadow: 0 1px 3px rgba(10,24,32,0.5); }
.hero-inner { max-width: var(--wrap); margin: 0 auto; width: 100%; }
.hero .eyebrow { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; display: block; }
.hero h1 {
  font-family: var(--serif); font-weight: 480;
  font-size: clamp(2.4rem, 6vw, 5.2rem); line-height: 1.04;
  letter-spacing: -0.005em; max-width: 18ch; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: #fff; }
.hero-sub { font-size: clamp(1rem, 1.5vw, 1.15rem); font-weight: 300; line-height: 1.7; max-width: 54ch; color: rgba(255,255,255,0.92); margin-bottom: 2.5rem; }
.breadcrumb { font-size: 0.75rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.7); margin-bottom: 1.2rem; }
.breadcrumb a { border-bottom: 1px solid transparent; }
.breadcrumb a:hover { border-color: rgba(255,255,255,0.5); }

.hero-actions { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.01em; color: #fff;
  padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: border-color 0.25s, gap 0.25s;
}
.link-arrow:hover { border-color: #fff; gap: 0.9rem; }
.link-arrow.dark { color: var(--ink); border-color: var(--line); }
.link-arrow.dark:hover { border-color: var(--ink); }

.fade { opacity: 0; transform: translateY(18px); animation: rise 0.9s cubic-bezier(.2,.7,.2,1) forwards; }
.fade.d1 { animation-delay: 0.05s; } .fade.d2 { animation-delay: 0.18s; } .fade.d3 { animation-delay: 0.31s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- SECTIONS ---------- */
section { padding: clamp(4rem, 9vw, 8rem) 0; }
.sec-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head .eyebrow { display: block; margin-bottom: 1rem; }
.sec-head h2 {
  font-family: var(--serif); font-weight: 480;
  font-size: clamp(1.9rem, 3.5vw, 3rem); line-height: 1.1;
  letter-spacing: -0.005em; color: var(--ink); max-width: 20ch;
}
.sec-head p { margin-top: 1rem; max-width: 56ch; color: var(--text); font-size: 0.98rem; }
.bg-mist { background: var(--mist); }

/* ---------- EDITORIAL INDEX (home) ---------- */
.guide { border-top: 1px solid var(--line); }
.index-row {
  display: grid; grid-template-columns: 3.5rem 1fr auto; align-items: center; gap: 1.5rem;
  padding: clamp(1.4rem, 2.5vw, 2.1rem) 0; border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s cubic-bezier(.2,.7,.2,1);
}
.index-row:hover { padding-left: 0.8rem; }
.index-num { font-family: var(--serif); font-size: 0.95rem; color: var(--stone); letter-spacing: 0.02em; }
.index-title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.3rem, 2.4vw, 1.9rem); color: var(--ink); letter-spacing: -0.01em; display: block; }
.index-desc { font-size: 0.8rem; color: var(--text); margin-top: 0.2rem; display: block; }
.index-arrow { font-size: 1.1rem; color: var(--sea); transition: transform 0.3s; }
.index-row:hover .index-arrow { transform: translateX(6px); }

/* ---------- HIGHLIGHTS (home) ---------- */
.hl-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hl-photo { aspect-ratio: 4/5; background-size: cover; background-position: center; }
.hl-list { display: flex; flex-direction: column; }
.hl-item { padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.hl-item:first-child { padding-top: 0; }
.hl-item h3 { font-family: var(--serif); font-weight: 400; font-size: 1.3rem; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 0.3rem; }
.hl-item p { font-size: 0.85rem; color: var(--text); line-height: 1.6; }
.hl-more { margin-top: 2rem; }

/* ---------- TRIP / CARD GRID (home + excursions teaser) ---------- */
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.tcard { background: var(--paper); display: flex; flex-direction: column; transition: transform 0.3s cubic-bezier(.2,.7,.2,1); border: 1px solid var(--line); }
.tcard:hover { transform: translateY(-2px); }
.tcard-img { aspect-ratio: 3/2; background-size: cover; background-position: center; }
.tcard-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex-grow: 1; }
.tcard-body h3 { font-family: var(--serif); font-weight: 400; font-size: 1.25rem; color: var(--ink); margin-bottom: 0.5rem; }
.tcard-body > p { font-size: 0.82rem; color: var(--text); line-height: 1.6; flex-grow: 1; margin-bottom: 1.2rem; }
.tcard-foot { display: flex; justify-content: space-between; align-items: baseline; padding-top: 1rem; border-top: 1px solid var(--line); }
.tcard-dur { font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text); }
.tcard-price { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }
.tcard-link { margin-top: 1rem; font-size: 0.82rem; font-weight: 500; color: var(--sea); display: inline-flex; gap: 0.4rem; transition: gap 0.2s; }
.tcard-link:hover { gap: 0.7rem; }
.aff { font-size: 0.68rem; color: #9a9a92; margin-top: 0.7rem; line-height: 1.5; }
.more-row { margin-top: 2.5rem; }

/* ---------- BOOKING SEARCH STRIP (hotels) ---------- */
.search-strip {
  background: var(--ink); color: #fff; padding: clamp(2rem,4vw,2.8rem) clamp(2rem,5vw,3.5rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.search-strip h3 { font-family: var(--serif); font-weight: 400; font-size: 1.35rem; margin-bottom: 0.4rem; color: #fff; }
.search-strip p { color: rgba(255,255,255,0.7); font-size: 0.9rem; max-width: 46ch; }
.search-strip .link-arrow { color: #fff; border-color: rgba(255,255,255,0.4); }
.search-strip .link-arrow:hover { border-color: #fff; }

/* ---------- AREA CARDS (hotels) ---------- */
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.area-card { border: 1px solid var(--line); padding: 2rem; background: var(--paper); }
.area-tag { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone); font-weight: 600; display: block; margin-bottom: 0.7rem; }
.area-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; color: var(--ink); margin-bottom: 0.6rem; }
.area-card p { font-size: 0.85rem; color: var(--text); line-height: 1.65; margin-bottom: 1.2rem; }
.area-meta { display: flex; justify-content: space-between; font-size: 0.76rem; color: var(--text); border-top: 1px solid var(--line); padding-top: 0.8rem; }

/* ---------- HOTEL ROWS (hotels) ---------- */
.hrow { display: grid; grid-template-columns: 240px 1fr; border: 1px solid var(--line); background: var(--paper); transition: box-shadow 0.25s, transform 0.25s; }
.hrow:hover { box-shadow: 0 8px 20px rgba(17,49,63,0.07); transform: translateY(-1px); }
.hrow-img { background-size: cover; background-position: center; min-height: 200px; }
/* <img> variants of background-image slots — enable alt text + srcset, layout-identical */
img.hero-bg { width: 100%; height: 100%; object-fit: cover; }
img.hrow-img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hrow-body { padding: 1.8rem 2rem; display: flex; flex-direction: column; }
.hrow-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 0.3rem; }
.hrow-stars { color: var(--stone); font-size: 0.8rem; letter-spacing: 0.12em; margin-bottom: 0.3rem; }
.hrow-body h3 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; color: var(--ink); }
.hrow-loc { font-size: 0.78rem; color: var(--text); margin-bottom: 0.9rem; }
.hrow-rating { background: var(--ink); color: #fff; font-size: 0.72rem; font-weight: 600; padding: 0.25rem 0.6rem; white-space: nowrap; }
.hrow-desc { font-size: 0.86rem; color: var(--text); line-height: 1.65; flex-grow: 1; margin-bottom: 1.2rem; }
.hrow-foot { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1rem; border-top: 1px solid var(--line); }
.hrow-price { font-size: 0.8rem; color: var(--text); }
.hrow-price strong { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); font-weight: 400; }

/* ---------- NUMBERED TIPS ---------- */
.tips { border-top: 1px solid var(--line); }
.tip { display: grid; grid-template-columns: 3.5rem 1fr; gap: 1.5rem; padding: 1.8rem 0; border-bottom: 1px solid var(--line); }
.tip-num { font-family: var(--serif); font-size: 0.95rem; color: var(--stone); }
.tip h3 { font-family: var(--serif); font-weight: 400; font-size: 1.2rem; color: var(--ink); margin-bottom: 0.3rem; }
.tip p { font-size: 0.86rem; color: var(--text); line-height: 1.65; }

/* ---------- INFO STRIP (excursions) ---------- */
.info-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.info-cell { background: var(--paper); padding: 1.6rem; }
.info-cell h4 { font-family: var(--serif); font-weight: 400; font-size: 1.05rem; color: var(--ink); margin-bottom: 0.3rem; }
.info-cell p { font-size: 0.82rem; color: var(--text); line-height: 1.55; }

/* ---------- TWO-COLUMN PROMO (excursions transfer) ---------- */
.promo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.divider { width: 48px; height: 2px; background: var(--stone); margin: 1.2rem 0 1.5rem; }
.pricebox { border: 1px solid var(--line); background: var(--paper); padding: 1.8rem 2rem; }
.pricebox h3 { font-family: var(--serif); font-weight: 400; font-size: 1.2rem; color: var(--ink); margin-bottom: 1rem; }
.price-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--line); font-size: 0.86rem; color: var(--text); }
.price-row:last-child { border-bottom: 0; }
.price-row strong { font-family: var(--serif); color: var(--ink); font-weight: 400; }

/* ---------- CTA ---------- */
.cta { background: var(--ink); color: #fff; }
.cta-inner { max-width: 760px; }
.cta .eyebrow { color: var(--stone); display: block; margin-bottom: 1.2rem; }
.cta h2 { font-family: var(--serif); font-weight: 480; font-size: clamp(1.9rem, 3.8vw, 3rem); letter-spacing: -0.005em; line-height: 1.1; margin-bottom: 1.1rem; }
.cta p { color: rgba(255,255,255,0.72); font-weight: 300; font-size: 1.05rem; line-height: 1.7; max-width: 52ch; margin-bottom: 2.4rem; }
.cta-actions { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.cta .link-arrow { color: #fff; border-color: rgba(255,255,255,0.4); }
.cta .link-arrow:hover { border-color: #fff; }

/* ---------- FOOTER ---------- */
footer { padding: clamp(2rem, 4vw, 3rem) 0 2.5rem; }
.foot-news { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line); }
.foot-news-text h4 { font-family: var(--serif); font-weight: 400; font-size: 1.2rem; color: var(--ink); margin-bottom: 0.2rem; }
.foot-news-text p { font-size: 0.82rem; color: var(--text); }
.foot-news-form { display: flex; gap: 0.5rem; }
.foot-news-form input { padding: 0.7rem 1rem; border: 1px solid var(--line); background: var(--paper); font-family: var(--sans); font-size: 0.85rem; color: var(--ink); min-width: 220px; }
.foot-news-form input::placeholder { color: #9a9a92; }
.foot-news-form button { padding: 0.7rem 1.4rem; border: 0; background: var(--ink); color: #fff; font-family: var(--sans); font-size: 0.82rem; font-weight: 500; cursor: pointer; transition: background 0.2s; }
.foot-news-form button:hover { background: var(--ink-soft); }
.foot-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line); }
.foot-logo { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
.foot-logo span { font-style: italic; }
.foot-nav { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.foot-nav a { font-size: 0.85rem; color: var(--text); transition: color 0.2s; }
.foot-nav a:hover { color: var(--ink); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1.8rem; }
.foot-eeat { margin-top: 1.5rem; }
.foot-legal { display: flex; gap: 1.2rem; }
.foot-legal a, .foot-copy { font-size: 0.76rem; color: #9a9a92; }
.foot-legal a:hover { color: var(--text); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 0 0 auto; top: 0; flex-direction: column; align-items: flex-start; gap: 1.5rem;
    background: var(--paper); padding: 6rem var(--pad) 3rem;
    transform: translateY(-100%); transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
    box-shadow: 0 20px 50px rgba(17,49,63,0.12);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { color: var(--text); font-size: 1rem; }
  .nav-links a.active { color: var(--ink); }
  .burger { display: flex; }
  .hl-grid { grid-template-columns: 1fr; }
  .hl-photo { aspect-ratio: 16/10; }
  .card-grid-4 { grid-template-columns: 1fr 1fr; }
  .hrow { grid-template-columns: 1fr; }
  .hrow-img { min-height: 160px; aspect-ratio: 16/9; }
  img.hrow-img { height: auto; }
  .promo { grid-template-columns: 1fr; }
  .info-strip { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .card-grid-4 { grid-template-columns: 1fr; }
  .index-row, .tip { grid-template-columns: 2.5rem 1fr; }
  .index-row { grid-template-columns: 2.5rem 1fr auto; gap: 1rem; }
  .foot-news-form { width: 100%; }
  .foot-news-form input { flex: 1; min-width: 0; }
}
@media (max-width: 600px) {
  .foot-top, .foot-bottom { flex-direction: column; align-items: center; text-align: center; }
  .foot-nav, .foot-legal { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .fade { animation: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- COOKIE CONSENT ---------- */
.cc-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.2rem; flex-wrap: wrap;
  padding: 1rem var(--pad);
  box-shadow: 0 -8px 30px rgba(17,49,63,0.18);
}
.cc-text { font-size: 0.82rem; line-height: 1.55; color: rgba(255,255,255,0.85); max-width: 72ch; }
.cc-text a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.4); }
.cc-actions { display: flex; gap: 0.7rem; flex-shrink: 0; }
.cc-btn {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 500;
  padding: 0.6rem 1.3rem; border: 1px solid rgba(255,255,255,0.4);
  background: transparent; color: #fff; cursor: pointer;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.cc-btn.cc-accept { background: #fff; color: var(--ink); border-color: #fff; }
.cc-btn:hover { opacity: 0.82; }
@media (max-width: 600px) {
  .cc-banner { flex-direction: column; align-items: flex-start; }
  .cc-actions { width: 100%; }
  .cc-btn { flex: 1; }
}

/* ---------- COMPARISON TABLE (.cmp) ---------- */
.cmp-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp-swipe { display: none; }
@media (max-width: 620px) { .cmp-swipe { display: block; font-size: 0.74rem; color: #9a8f78; margin-top: 0.6rem; } }
.cmp { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.cmp th, .cmp td { text-align: left; vertical-align: top; padding: 0.72rem 0.95rem; border-bottom: 1px solid var(--line); line-height: 1.45; }
.cmp thead th { font-family: var(--sans); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--stone); white-space: nowrap; }
.cmp tbody th { font-weight: 600; color: var(--ink); white-space: nowrap; }
.cmp td { color: var(--text); }
.cmp td:first-of-type { white-space: nowrap; }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: 0; }
.cmp-wrap .cmp { min-width: 600px; }

/* ---------- IN-TEXT LINKS (content paragraphs only) ---------- */
/* Make inline links inside body copy visible — an insider guide is link-rich.
   Scoped to light-section prose; nav, cards' own link-arrows, buttons,
   breadcrumbs and dark sections are untouched. */
.sec-head p a,
.hl-item p a,
.tip p a,
.info-cell p a,
.area-card p a,
.hrow-desc a,
.cmp td a {
  color: var(--sea);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(58,124,165,0.35);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s, color 0.2s;
}
.sec-head p a:hover,
.hl-item p a:hover,
.tip p a:hover,
.info-cell p a:hover,
.area-card p a:hover,
.hrow-desc a:hover,
.cmp td a:hover {
  text-decoration-color: var(--sea);
  color: var(--ink);
}

/* ---------- ABOUT THE AUTHOR (a local behind the guide) ---------- */
.author-line { display: flex; align-items: center; gap: 0.85rem; }
.author-line img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--line); flex-shrink: 0; }
.author-line p { font-size: 0.84rem; color: var(--text); line-height: 1.5; margin: 0; }
.author-line strong { color: var(--ink); font-weight: 600; }

.author-card { display: flex; gap: 1.4rem; align-items: flex-start; max-width: 680px; background: var(--paper); border: 1px solid var(--line); padding: 1.6rem 1.8rem; }
.author-card img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: 0 0 0 1px var(--line); flex-shrink: 0; }
.author-card .eyebrow { display: block; margin-bottom: 0.5rem; }
.author-card p { font-size: 0.9rem; color: var(--text); line-height: 1.7; margin: 0; max-width: 56ch; }
.author-card strong { color: var(--ink); font-weight: 600; }
.author-feats { display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; margin-top: 0.95rem; }
.author-feats span { font-size: 0.78rem; color: var(--text); display: inline-flex; align-items: center; gap: 0.4rem; }
.author-feats span::before { content: "✓"; color: var(--stone); font-weight: 700; }
@media (max-width: 600px) { .author-card { flex-direction: column; gap: 1.1rem; padding: 1.4rem 1.4rem; } }

/* ---------- OWN-PHOTO SYSTEM (figure + brand credit + caption) ---------- */
figure.ti-figure { margin: 0 auto; max-width: 820px; }
.ti-photo { position: relative; overflow: hidden; line-height: 0; }
.ti-photo img { width: 100%; height: auto; display: block; }
.photo-credit { position: absolute; left: 12px; bottom: 12px; font-size: 0.7rem; letter-spacing: 0.01em; color: #fff; background: rgba(17,49,63,0.6); padding: 0.22rem 0.6rem; border-radius: 4px; white-space: nowrap; }
.ti-figcaption { font-family: var(--serif); font-style: italic; font-size: 0.82rem; line-height: 1.55; color: #9a8f78; margin-top: 0.6rem; }
.ti-figcaption strong { font-style: normal; font-weight: 500; color: var(--ink); }
.ti-figcaption .where { font-style: normal; color: var(--stone); }

/* ---------- WHY TRUST THIS GUIDE ---------- */
.why-trust { background: var(--paper); border: 1px solid var(--line); padding: 1.4rem 1.6rem; max-width: 680px; }
.why-trust .eyebrow { display: block; margin-bottom: 0.5rem; }
.why-trust ul { list-style: none; }
.why-trust li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.86rem; line-height: 1.5; color: var(--text); padding: 0.55rem 0; border-top: 1px solid var(--line); }
.why-trust li:first-child { border-top: 0; padding-top: 0; }
.why-trust li::before { content: "✓"; color: var(--stone); font-weight: 700; flex-shrink: 0; }
.why-trust strong { color: var(--ink); font-weight: 600; }

/* About-the-author — feature variant (larger rectangular photo, full image shown) */
.author-card-feature { gap: 1.6rem; align-items: flex-start; }
.author-card-feature img { width: 320px; height: auto; border-radius: 0; border: 1px solid var(--line); box-shadow: none; align-self: flex-start; }
@media (max-width: 600px) { .author-card-feature img { width: 100%; } }

/* Own video (poster + click-to-play, muted loop, no bytes until play) */
.ti-photo video { width: 100%; height: auto; display: block; background: var(--ink); }
.photo-credit.top { top: 12px; bottom: auto; }
figure.ti-figure.portrait { max-width: 420px; }

/* Trip journey — "next step" (turns pages into book chapters) */
.next-step { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; background: var(--mist); border: 1px solid var(--line); border-left: 3px solid var(--stone); padding: 1.2rem 1.5rem; max-width: 760px; text-decoration: none; transition: border-color 0.2s; }
.next-step:hover { border-left-color: var(--sea); }
.ns-label { display: block; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: #9a8f78; font-weight: 600; margin-bottom: 0.25rem; }
.ns-title { font-family: var(--serif); font-weight: 480; font-size: 1.2rem; color: var(--ink); }
.next-step:hover .ns-title { color: var(--sea); }
.ns-desc { font-size: 0.8rem; color: #9a8f78; text-align: right; max-width: 24ch; line-height: 1.5; flex-shrink: 0; }
@media (max-width: 600px) { .ns-desc { display: none; } }

/* ---------- LOCAL TIP beside a photo (flagship guides) ---------- */
.photo-tip { display: grid; grid-template-columns: 1.55fr 1fr; gap: clamp(1.2rem, 2.5vw, 2.2rem); align-items: center; max-width: 1000px; margin: clamp(2.2rem, 4vw, 3.2rem) auto 0; }
.photo-tip .ti-figure { max-width: none; margin: 0; }
.local-tip { background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--stone); padding: 1.3rem 1.45rem; }
.lt-label { display: flex; align-items: center; gap: 0.4rem; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone); font-weight: 600; margin-bottom: 0.6rem; }
.lt-label::before { content: "📍"; font-size: 0.85rem; }
.local-tip p { font-size: 0.9rem; line-height: 1.62; color: var(--text); }
.local-tip p + p { margin-top: 0.7rem; }
.local-tip strong { color: var(--ink); font-weight: 600; }
@media (max-width: 760px) { .photo-tip { grid-template-columns: 1fr; gap: 1.1rem; } }

/* ---------- FIELD NOTES (first-hand observations on flagship guides) ---------- */
.field-notes { background: var(--mist); border: 1px solid var(--line); border-left: 3px solid var(--stone); padding: 1.4rem 1.6rem; max-width: 680px; }
.field-notes .eyebrow { display: block; margin-bottom: 0.2rem; }
.field-notes ul { list-style: none; }
.field-notes li { font-size: 0.88rem; line-height: 1.62; color: var(--text); padding: 0.6rem 0; border-top: 1px solid var(--line); }
.field-notes li:first-child { border-top: 0; padding-top: 0.4rem; }
.field-notes li strong { color: var(--ink); font-weight: 600; }

/* ---------- SOCIAL CHANNELS (YouTube + Facebook community) ---------- */
.foot-social { display: flex; gap: 1.6rem; flex-wrap: wrap; margin: 2.4rem 0 0.4rem; }
.foot-social a { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: #9a9a92; transition: color 0.2s; }
.foot-social a:hover { color: var(--ink); }
.foot-social svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }
.author-social { display: flex; flex-wrap: wrap; gap: 0.4rem 1.3rem; align-items: center; margin-top: 0.9rem; font-size: 0.82rem; }
.author-social a { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--sea); text-decoration: underline; text-decoration-color: rgba(58,124,165,0.35); text-underline-offset: 2px; transition: color 0.2s; }
.author-social a:hover { color: var(--ink); }
.author-social svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }
.video-more { margin-top: 0.6rem; font-size: 0.82rem; }
.video-more a { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--sea); text-decoration: underline; text-decoration-color: rgba(58,124,165,0.35); text-underline-offset: 2px; transition: color 0.2s; }
.video-more a:hover { color: var(--ink); }
.video-more svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }
.channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; max-width: 920px; }
.channel { border: 1px solid var(--line); background: var(--paper); padding: 1.5rem 1.6rem; }
.channel svg { width: 22px; height: 22px; fill: var(--stone); }
.channel h3 { font-family: var(--serif); font-weight: 480; font-size: 1.2rem; color: var(--ink); margin: 0.7rem 0 0.4rem; }
.channel p { font-size: 0.88rem; color: var(--text); line-height: 1.6; }
.channel a { color: var(--sea); text-decoration: underline; text-decoration-color: rgba(58,124,165,0.35); text-underline-offset: 2px; }
.channel a:hover { color: var(--ink); }
@media (max-width: 700px) { .channels { grid-template-columns: 1fr; } }
