/* Amble Travel — shared site styles.
   Palette + serif headings match the app (compass-A icon) and the original landing page. */

:root {
  --cream:       #F4EFE6;
  --cream-light: #FBF8F1;
  --card:        #FFFFFF;
  --ink:         #1F4D44;  /* forest green — headings, primary */
  --ink-soft:    #2C5E54;
  --body:        #33403B;  /* body text */
  --muted:       #6B7C73;
  --accent:      #C8852B;  /* gold */
  --accent-dark: #A96D1E;
  --line:        rgba(31, 77, 68, 0.12);
  --shadow:      0 6px 24px rgba(31, 77, 68, 0.08);
  --radius:      18px;
  --maxw:        1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--body);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.4px;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }

/* ---- Header / nav ---- */
header.site {
  position: sticky; top: 0; z-index: 20;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: Georgia, serif;
  font-weight: 700; font-size: 21px; color: var(--ink); }
.brand .mark { font-size: 22px; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--ink-soft); font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: var(--accent-dark); }
@media (max-width: 620px) {
  .nav-links { gap: 16px; }
  .nav-links a.hide-sm { display: none; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-block; font-weight: 700; font-size: 15px;
  padding: 13px 24px; border-radius: 999px; border: 1.6px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .12s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: var(--cream-light); }
.btn-primary:hover { background: var(--ink-soft); color: var(--cream-light); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-dark); }

/* ---- Hero ---- */
.hero { text-align: center; padding: 72px 0 56px; }
.hero h1 { font-size: clamp(38px, 7vw, 64px); font-weight: 700; }
.hero .lede { margin: 18px auto 0; max-width: 600px; font-size: clamp(16px, 2.4vw, 20px);
  color: var(--muted); }
.hero .cta-row { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.pill { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 999px; padding: 7px 15px; margin-bottom: 22px; }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

/* ---- Sections ---- */
section { padding: 48px 0; }
.section-title { text-align: center; margin-bottom: 8px; font-size: clamp(26px, 4vw, 36px); }
.section-sub { text-align: center; color: var(--muted); max-width: 620px; margin: 0 auto 36px; }

/* ---- Feature grid ---- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.feature { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); }
.feature .ic { font-size: 30px; margin-bottom: 12px; }
.feature h3 { font-size: 20px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15.5px; }

/* ---- Guide cards ---- */
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: transform .14s ease, box-shadow .14s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(31,77,68,.14); }
.card .thumb { height: 150px; display: flex; align-items: center; justify-content: center;
  font-size: 54px; background: linear-gradient(135deg, #E7DFD0, #F4EFE6); }
.card .body { padding: 18px 20px 22px; }
.card .kicker { font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-dark); font-weight: 700; }
.card h3 { font-size: 21px; margin: 6px 0 8px; }
.card p { color: var(--muted); font-size: 14.5px; }

/* ---- Article ---- */
.article { padding: 40px 0 16px; }
.article h1 { font-size: clamp(32px, 6vw, 50px); margin-bottom: 10px; }
.article .meta { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.article h2 { font-size: 27px; margin: 36px 0 12px; }
.article h3 { font-size: 20px; margin: 26px 0 8px; }
.article p { margin: 0 0 16px; font-size: 17px; }
.article ul, .article ol { margin: 0 0 18px 22px; }
.article li { margin-bottom: 7px; font-size: 17px; }
.breadcrumb { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--ink-soft); font-weight: 600; }

/* ---- Affiliate CTA box (where booking links live) ---- */
.book-cta {
  background: var(--cream-light); border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: 14px; padding: 20px 22px; margin: 26px 0;
}
.book-cta h4 { font-size: 18px; margin-bottom: 6px; }
.book-cta p { font-size: 14.5px; color: var(--muted); margin-bottom: 14px; }
.book-cta .btn-row { display: flex; gap: 10px; flex-wrap: wrap; }
.disclosure-inline { font-size: 12.5px; color: var(--muted); margin-top: 12px; font-style: italic; }

/* ---- Callout ---- */
.callout { background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 20px; margin: 22px 0; box-shadow: var(--shadow); }
.callout strong { color: var(--ink); }

/* ---- App banner ---- */
.app-banner { background: var(--ink); color: var(--cream-light); border-radius: var(--radius);
  padding: 40px; text-align: center; margin: 40px 0; }
.app-banner h2 { color: var(--cream-light); font-size: clamp(24px, 4vw, 34px); }
.app-banner p { color: rgba(251,248,241,.8); max-width: 540px; margin: 12px auto 22px; }

/* ---- Footer ---- */
footer.site { background: var(--cream-light); border-top: 1px solid var(--line); margin-top: 40px;
  padding: 40px 0 32px; }
.foot { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot .brand { margin-bottom: 10px; }
.foot p { color: var(--muted); font-size: 14px; max-width: 320px; }
.foot-links { display: flex; gap: 40px; flex-wrap: wrap; }
.foot-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink);
  margin-bottom: 12px; font-family: inherit; }
.foot-col a { display: block; color: var(--muted); font-size: 14.5px; margin-bottom: 8px; font-weight: 500; }
.foot-col a:hover { color: var(--accent-dark); }
.foot-bottom { text-align: center; color: var(--muted); font-size: 13px; margin-top: 30px;
  padding-top: 22px; border-top: 1px solid var(--line); }

/* ---- Photos ---- */
/* Article hero image */
.hero-img { margin: 4px 0 28px; }
.hero-img img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 16px;
  box-shadow: var(--shadow); display: block; }
.hero-img figcaption { font-size: 12px; color: var(--muted); margin-top: 7px; text-align: right; }
.hero-img figcaption a { color: var(--muted); text-decoration: underline; }
/* Photo thumbnails on guide cards (replace the emoji/gradient) */
.card .thumb.photo { padding: 0; background: #E7DFD0; }
.card .thumb.photo img { width: 100%; height: 150px; object-fit: cover; display: block; }

/* ---- Cookie consent banner ---- */
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  max-width: 760px; margin: 0 auto;
  background: var(--ink); color: var(--cream-light);
  border-radius: 14px; padding: 15px 18px; box-shadow: 0 10px 34px rgba(0, 0, 0, .28);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.cookie-bar p { flex: 1 1 280px; margin: 0; font-size: 14px; color: rgba(251, 248, 241, .92); }
.cookie-bar a { color: #fff; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-bar .btn { padding: 9px 20px; font-size: 14px; }
.cookie-bar .btn-ghost { color: var(--cream-light); border-color: rgba(251, 248, 241, .45); }
.cookie-bar .btn-ghost:hover { border-color: #fff; color: #fff; }
@media (max-width: 520px) { .cookie-actions { flex: 1 1 100%; } .cookie-bar .btn { flex: 1; } }
