/* =========================================================
   TourMeAway — Workshop / training pages (GYG-style design system)
   Self-contained: header/drawer/footer + page-specific sections.
   ========================================================= */

:root{
  --tma-orange:#F37342;
  --tma-orange-dark:#d95c2c;
  --tma-pink:#F34269;
  --ink:#08243d;
  --navy:#0d2438;
  --text:#3c4450;
  --muted:#6c7480;
  --line:#e4e7ea;
  --chip:#f2f3f5;
  --bg:#ffffff;
  --radius:14px;
  --shadow:0 6px 24px rgba(16,24,40,.10);
  --header-h:64px;
  --hdr-bg:#ffffff;
}

*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  margin:0;padding-top:64px;
  font-family:"Figtree",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit}
img{max-width:100%;display:block}
h1,h2,h3,h4{color:var(--ink);margin:0;line-height:1.3;letter-spacing:-.01em}
button{font-family:inherit;cursor:pointer}
body.nav-open{overflow:hidden}
.wrap{max-width:1150px;margin:0 auto;padding:0 20px}

/* ============ HEADER / DRAWER (shared navigation.ejs partial) ============ */
.site-header{position:fixed;top:0;left:0;width:100%;background:var(--hdr-bg);z-index:1000;border-bottom:1px solid var(--line);transition:box-shadow .2s}
.site-header.scrolled{box-shadow:0 2px 14px rgba(16,24,40,.08)}
.hdr-main{max-width:1150px;margin:0 auto;padding:0 20px;height:var(--header-h);display:flex;align-items:center;gap:16px}
.hdr-logo{flex:0 0 auto;display:flex;align-items:center;text-decoration:none}
.hdr-logo img{height:40px;width:auto}
.hdr-logo .logo-fallback{font-weight:800;color:var(--tma-orange);font-size:21px;letter-spacing:-.02em;white-space:nowrap}
.hdr-utils{margin-left:auto;display:flex;align-items:center;gap:4px}
.hdr-icon{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;color:var(--ink);position:relative;text-decoration:none;background:none;border:0}
.hdr-icon:hover{background:var(--chip)}
.hdr-icon i{font-size:19px}
.cart-badge{position:absolute;top:3px;right:3px;background:var(--tma-pink);color:#fff;border-radius:50%;min-width:18px;height:18px;padding:0 4px;display:flex;align-items:center;justify-content:center;font-size:10.5px;font-weight:800;border:2px solid #fff}
.hdr-burger{background:none;border:0;width:42px;height:42px;border-radius:50%;display:grid;place-items:center;color:var(--ink);font-size:19px}
.hdr-burger:hover{background:var(--chip)}

.drawer{position:fixed;top:0;right:-320px;width:300px;max-width:86%;height:100vh;background:#fff;z-index:1200;box-shadow:-6px 0 24px rgba(0,0,0,.15);transition:right .28s ease;display:flex;flex-direction:column;padding:14px 0}
.drawer.open{right:0}
.drawer-close{align-self:flex-end;background:none;border:0;font-size:26px;color:var(--ink);padding:4px 20px;cursor:pointer}
.drawer nav{display:flex;flex-direction:column;padding:4px 0}
.drawer nav a{padding:14px 24px;font-size:16px;font-weight:600;color:var(--ink);text-decoration:none}
.drawer nav a:hover{background:var(--chip)}
.drawer-overlay{position:fixed;inset:0;background:rgba(8,20,32,.45);z-index:1100;opacity:0;visibility:hidden;transition:.25s}
.drawer-overlay.open{opacity:1;visibility:visible}

/* ============ FOOTER (shared footer.ejs partial) ============ */
.site-footer{border-top:1px solid var(--line);padding:40px 0 30px}
.site-footer-inner{text-align:center}
.footer-brand{font-size:22px;font-weight:800;color:var(--tma-orange);letter-spacing:-.02em;margin-bottom:12px}
.footer-social{display:flex;gap:10px;margin-bottom:16px;justify-content:center}
.footer-social a{width:40px;height:40px;border-radius:50%;border:1px solid var(--line);display:grid;place-items:center;color:var(--ink);font-size:16px;transition:.15s}
.footer-social a:hover{background:var(--chip);border-color:#d7dbe0}
.footer-meta{font-size:13.5px;color:var(--muted);line-height:1.8}
.footer-meta a{color:var(--tma-orange-dark);font-weight:600;text-decoration:none}
.footer-meta a:hover{text-decoration:underline}
.footer-top{display:flex;justify-content:space-between;align-items:flex-start;gap:40px;text-align:left;margin-bottom:28px;flex-wrap:wrap}
.footer-nav{display:flex;gap:48px}
.footer-nav-col h4{font-size:13px;font-weight:800;color:var(--ink);text-transform:uppercase;letter-spacing:.06em;margin-bottom:12px}
.footer-nav-col a{display:block;font-size:14px;color:var(--muted);text-decoration:none;margin-bottom:9px}
.footer-nav-col a:hover{color:var(--tma-orange-dark)}
@media (max-width:575px){
  .footer-top{flex-direction:column;align-items:center;text-align:center;gap:28px}
  .footer-nav{gap:32px}
}

/* ============ HERO ============ */
.wk-hero{background:var(--navy);padding:56px 20px 44px;text-align:center}
.wk-kicker{display:inline-flex;align-items:center;gap:6px;color:#ffd7c4;font-size:13px;font-weight:700;letter-spacing:.04em;margin-bottom:14px}
.wk-hero h1{color:#fff;font-size:30px;font-weight:800;letter-spacing:-.02em;max-width:820px;margin:0 auto}
@media (max-width:575px){
  .wk-hero{padding:40px 18px 32px}
  .wk-hero h1{font-size:23px}
}

/* ============ PHOTO GRID ============ */
.wk-gallery{
  max-width:1150px;margin:-28px auto 0;padding:0 20px;
  display:grid;grid-template-columns:repeat(4,1fr);gap:8px;
}
.wk-gallery img{width:100%;height:150px;object-fit:cover;border-radius:10px}
.wk-gallery img:nth-child(n+9){display:none}
@media (max-width:900px){
  .wk-gallery{grid-template-columns:repeat(3,1fr)}
  .wk-gallery img:nth-child(n+7){display:none}
}
@media (max-width:575px){
  .wk-gallery{grid-template-columns:repeat(2,1fr);gap:6px;margin-top:-20px}
  .wk-gallery img{height:110px}
  .wk-gallery img:nth-child(n+5){display:none}
}

/* ============ CONTENT ============ */
.wk-wrap{max-width:800px;margin:0 auto;padding:44px 20px}
.wk-desc{font-size:15.5px;line-height:1.9;color:var(--text);white-space:pre-line}

.wk-features{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:32px 0}
.wk-feat{background:var(--chip);border-radius:12px;padding:18px 16px;text-align:center;font-size:14px;color:var(--ink);font-weight:600;line-height:1.5}
.wk-feat i{display:block;color:var(--tma-orange);font-size:22px;margin-bottom:10px}
@media (max-width:575px){
  .wk-features{grid-template-columns:1fr}
}

.wk-cta-band{background:var(--chip);border-radius:var(--radius);padding:34px 30px;text-align:center;margin-top:8px}
.wk-cta-band p{font-size:16px;color:var(--ink);font-weight:600;margin:0 0 18px}
.wk-cta-btn{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--tma-orange);color:#fff;font-weight:700;font-size:15px;
  padding:14px 30px;border-radius:999px;text-decoration:none;
  box-shadow:0 6px 18px rgba(243,115,66,.35);transition:.15s;
}
.wk-cta-btn:hover{background:var(--tma-orange-dark)}
