/* Audio Tours – The Smokies — shared styles.
   Rebranded shell over the ATI engine pattern (fork of audiotoursireland-demo).
   Colours are deliberately different from ATI's (forest green / gold) —
   this is a fully separate brand, not a reskin that could be confused
   with the Irish network. */
:root {
  --ridge: #26413C;        /* deep smoky blue-green — primary */
  --ridge-dark: #172A26;
  --ember: #C1652E;        /* warm amber/rust — accent */
  --ember-light: #E0955C;
  --cream: #F6F2E9;
  --charcoal: #221F1A;
  --muted: #756F63;
  --border: #DDD4C4;
  --live: #2BA84A;
  --preview: #2E7FBE;
  --paid: #8A5A9E;
  --white: #ffffff;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--charcoal); line-height: 1.55; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 500; line-height: 1.15; }
a { color: var(--ridge); }
img { max-width: 100%; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.site-header { background: var(--cream); padding: 1rem 0; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { font-family: var(--font-heading); font-size: 1.4rem; color: var(--ridge); font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: .6rem; }
.brand img { height: 40px; width: auto; }
.nav__links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.nav__links a { color: var(--charcoal); text-decoration: none; font-size: .9rem; font-weight: 700; }
.nav__links a:hover { color: var(--ember); }
.build-badge { display: inline-block; background: var(--ember); color: #fff; font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 9px; border-radius: 2px; }

/* Hero */
.hero { background: var(--ridge); color: var(--cream); padding: 4rem 0 3rem; }
.hero .eyebrow { display: block; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ember-light); margin-bottom: .75rem; }
.hero h1 { font-size: 2.4rem; margin-bottom: 1rem; color: var(--white); }
.hero p { max-width: 640px; color: rgba(246,242,233,.85); font-size: 1.05rem; }
.hero .placeholder-note { margin-top: 1rem; font-size: .85rem; color: rgba(246,242,233,.6); border-left: 3px solid var(--ember); padding-left: .75rem; }

/* Sections */
.section { padding: 3rem 0; }
.section--cream { background: var(--cream); }
.section-title { margin-bottom: 1.5rem; }
.section-title h2 { font-size: 1.7rem; margin-bottom: .4rem; }
.section-title p { color: var(--muted); }

/* Stats row — data-driven, never hardcoded (see homepage.js) */
.stats-row { display: flex; gap: 2rem; flex-wrap: wrap; margin: 1.5rem 0 2rem; }
.stat { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 1rem 1.5rem; min-width: 140px; }
.stat__num { font-family: var(--font-heading); font-size: 2rem; color: var(--ridge); font-weight: 700; }
.stat__label { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }

/* Tour cards */
.tour-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.tour-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; text-decoration: none; color: inherit; display: block; transition: box-shadow .15s, transform .15s; }
.tour-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); transform: translateY(-2px); }
.tour-card__img { height: 150px; background: var(--ridge-dark); position: relative; }
.tour-card__img img { width: 100%; height: 100%; object-fit: cover; }
.tour-card__body { padding: 1rem 1.1rem; }
.tour-card__type { font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--ember); margin-bottom: .3rem; }
.tour-card__title { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: .35rem; }
.tour-card__meta { font-size: .82rem; color: var(--muted); }
.badge { display: inline-block; font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 9px; border-radius: 2px; margin-right: .35rem; }
.badge--preview { background: var(--preview); color: #fff; }
.badge--paid { background: var(--paid); color: #fff; }
.badge--draft { background: #B8AF98; color: #222; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: .7rem 1.2rem; font-size: .85rem; font-weight: 700; letter-spacing: .03em; border-radius: 4px; cursor: pointer; border: none; text-decoration: none; font-family: var(--font-body); }
.btn--primary { background: var(--ember); color: #fff; }
.btn--primary:hover { background: #a4531f; }
.btn--outline { background: transparent; border: 1px solid var(--cream); color: var(--cream); }
.btn--outline:hover { background: rgba(255,255,255,.1); }
.btn--dark-outline { background: transparent; border: 1px solid var(--charcoal); color: var(--charcoal); }
.btn[disabled] { opacity: .4; cursor: not-allowed; }

/* Footer */
.site-footer { background: var(--ridge-dark); color: rgba(246,242,233,.75); padding: 2.5rem 0; font-size: .85rem; }
.site-footer a { color: var(--ember-light); }
.footer-grid { display: flex; gap: 3rem; flex-wrap: wrap; justify-content: space-between; }
.footer-col h4 { color: var(--white); font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .6rem; }
.footer-col p, .footer-col li { margin-bottom: .4rem; }
.footer-col ul { list-style: none; }
.footer-bottom { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(246,242,233,.15); font-size: .78rem; opacity: .7; }

@media (max-width: 640px) {
  .hero h1 { font-size: 1.8rem; }
  .nav__links { gap: .8rem; font-size: .8rem; }
}
