/* ============================================================
   Failed Outdoors — One-page site
   Self-contained stylesheet: design tokens + component styles
   (Button/Badge ported from the FO design system) + page rules.
   Source: Claude Design handoff bundle "Failed Outdoors.html"
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* Brand greens (deep forest -> bright mint) */
  --green-900: #1e2922;
  --green-800: #2e3d34;
  --green-700: #3b5447;
  --green-600: #4d705e;
  --green-500: #5f8a72;
  --green-400: #73af95;
  --green-300: #9bcab3;
  --green-200: #c6e1d4;
  --green-100: #e7f1ec;

  /* Neutrals */
  --ink:       #111111;
  --graphite:  #2a2a2a;
  --slate:     #555555;
  --stone:     #8a8a8a;
  --mist:      #d8d8d8;
  --fog:       #efefef;
  --paper:     #ffffff;

  /* Warm kraft accent */
  --kraft-600: #8a6440;
  --kraft-500: #b08456;
  --kraft-400: #c69b6d;
  --kraft-100: #f0e4d6;

  /* Functional */
  --danger:  #b5432f;
  --success: #4d705e;

  /* Semantic aliases */
  --text-strong:  var(--ink);
  --text-body:    var(--graphite);
  --text-muted:   var(--slate);
  --text-faint:   var(--stone);
  --text-inverse: var(--paper);
  --text-on-forest: #d6e0da;

  --surface-page:    var(--paper);
  --surface-card:    var(--paper);
  --surface-sunken:  var(--fog);
  --surface-forest:  var(--green-800);
  --surface-mint:    var(--green-100);

  --border-subtle:  var(--mist);
  --border-default: #c9c9c9;
  --border-strong:  var(--ink);

  --brand:           var(--green-600);
  --brand-strong:    var(--green-700);
  --hero-from:       var(--green-600);
  --hero-to:         var(--green-400);
  --hero-gradient:   linear-gradient(105deg, var(--green-600) 0%, var(--green-400) 100%);

  --accent: var(--kraft-500);
  --focus-ring: var(--green-600);

  /* Typography */
  --font-display: 'Oswald', 'Arial Narrow', system-ui, sans-serif;
  --font-body:    'Oswald', 'Arial Narrow', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;

  --weight-light:    300;
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.5rem;
  --text-xl:   2rem;
  --text-2xl:  2.75rem;
  --text-3xl:  3.75rem;
  --text-4xl:  5rem;

  --leading-tight:   1.05;
  --leading-snug:    1.2;
  --leading-normal:  1.5;
  --leading-relaxed: 1.7;

  --tracking-tight:  -0.01em;
  --tracking-normal: 0;
  --tracking-wide:   0.04em;
  --tracking-caps:   0.08em;

  /* Spacing / radius / shadow / motion */
  --radius-none: 0;
  --radius-sm:   3px;
  --radius-md:   6px;
  --radius-lg:   10px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(17, 17, 17, 0.06);
  --shadow-sm: 0 2px 6px rgba(17, 17, 17, 0.08);
  --shadow-md: 0 8px 20px rgba(17, 17, 17, 0.10);
  --shadow-lg: 0 18px 40px rgba(30, 41, 34, 0.18);
  --shadow-card: 0 6px 18px rgba(17, 17, 17, 0.10);

  --container-max: 1200px;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:  140ms;
  --dur-base:  220ms;
  --dur-slow:  400ms;

  /* live accent — driven by Tweaks-equivalent (none here, fixed to kraft) */
  --fo-accent: var(--kraft-500);
  --fo-accent-strong: var(--kraft-600);
  --header-h: 76px;
}

/* ============================================================
   RESET / BASE  (scoped to the FO page wrapper so it doesn't
   leak into the rest of the WordPress theme)
   ============================================================ */
.fo-page, .fo-page *, .fo-page *::before, .fo-page *::after { box-sizing: border-box; }
.fo-page {
  font-family: var(--font-body);
  font-weight: var(--weight-light);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
.fo-page img { max-width: 100%; display: block; }
.fo-page a { color: inherit; }

/* ---------- layout helpers ---------- */
.fo-container { max-width: var(--container-max); margin: 0 auto; padding: 0 28px; }
.fo-section { padding: clamp(56px, 9vw, 112px) 0; }

/* ---------- type helpers ---------- */
.fo-eyebrow {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  font-size: var(--text-sm);
  color: var(--fo-accent);
  margin: 0;
}
.fo-eyebrow.on-dark { color: var(--green-300); }
.fo-h2 {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.04;
  color: var(--text-strong);
  margin: 0;
  font-size: clamp(32px, 4.4vw, 56px);
}
.fo-lead {
  font-weight: var(--weight-light);
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  color: var(--text-muted);
}

/* ---------- section heading block ---------- */
.fo-head { text-align: center; max-width: 720px; margin: 0 auto clamp(36px, 5vw, 64px); }
.fo-head .fo-eyebrow { margin-bottom: 14px; }
.fo-rule { width: 64px; height: 3px; background: var(--fo-accent); margin: 20px auto 0; border-radius: 2px; }

/* ============================================================
   BUTTON  (ported from the FO design-system Button component)
   ============================================================ */
.fo-btn {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 14px;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.fo-btn:active { transform: scale(0.98); }
.fo-btn.pill { border-radius: var(--radius-pill); }
.fo-btn.full { width: 100%; }
.fo-btn[disabled] { opacity: 0.5; cursor: not-allowed; }

.fo-btn-sm { padding: 8px 16px; font-size: 12px; }
.fo-btn-lg { padding: 16px 34px; font-size: 16px; }

.fo-btn-primary { background: var(--brand); color: var(--text-inverse); border-color: var(--brand); }
.fo-btn-primary:hover { background: var(--brand-strong); border-color: var(--brand-strong); }

.fo-btn-outline { background: rgba(255,255,255,0.14); color: var(--text-inverse); border-color: var(--brand-strong); }
.fo-btn-outline:hover { background: rgba(255,255,255,0.26); }

.fo-btn-ghost { background: transparent; color: var(--text-strong); border-color: var(--border-default); }
.fo-btn-ghost:hover { background: var(--surface-sunken); border-color: var(--border-strong); }

.fo-btn-link { background: transparent; color: var(--text-strong); border-color: transparent; padding: 0; text-decoration: underline; text-underline-offset: 3px; }
.fo-btn-link:hover { color: var(--brand); }

/* ============================================================
   BADGE  (ported from the FO design-system Badge component)
   ============================================================ */
.fo-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  border-radius: var(--radius-pill);
  line-height: 1;
  white-space: nowrap;
  font-size: 11px;
  padding: 4px 11px;
}
.fo-badge-sm { font-size: 10px; padding: 3px 8px; }
.fo-badge-forest  { background: var(--green-100); color: var(--green-700); }
.fo-badge-solid   { background: var(--brand); color: var(--text-inverse); }
.fo-badge-kraft   { background: var(--kraft-100); color: var(--kraft-600); }
.fo-badge-neutral { background: var(--fog); color: var(--text-muted); }
.fo-badge-danger  { background: #f5e0db; color: var(--danger); }

/* ============================================================
   ANNOUNCE BAR + HEADER
   ============================================================ */
.fo-announce {
  background: var(--green-900);
  color: var(--text-on-forest);
  text-align: center;
  font-family: var(--font-display);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  font-size: 12.5px;
  padding: 9px 16px;
}
.fo-announce strong { color: var(--green-300); font-weight: var(--weight-semibold); }

.fo-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.0);
  transition: background var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.fo-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-subtle);
  backdrop-filter: saturate(1.1) blur(4px);
}
.fo-header.on-hero:not(.scrolled) { color: #fff; }
.fo-header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.fo-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; flex-shrink: 0; }
.fo-header .fo-logo img { height: 38px; width: auto; transition: filter var(--dur-base); }
.fo-header.on-hero:not(.scrolled) .fo-logo img { filter: brightness(0) invert(1); }

.fo-nav { display: flex; align-items: center; gap: 30px; }
.fo-nav a {
  font-family: var(--font-display);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-size: 14px;
  color: inherit;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  opacity: 0.92;
  transition: opacity var(--dur-fast), color var(--dur-fast);
}
.fo-header:not(.on-hero) .fo-nav a, .fo-header.scrolled .fo-nav a { color: var(--text-strong); }
.fo-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--fo-accent); transition: right var(--dur-base) var(--ease-out);
}
.fo-nav a:hover { opacity: 1; }
.fo-nav a:hover::after { right: 0; }

.fo-header-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.fo-iconbtn {
  background: none; border: none; cursor: pointer; color: inherit;
  display: inline-flex; align-items: center; gap: 7px; padding: 4px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wide);
  font-size: 13px; font-weight: var(--weight-medium);
}
.fo-header:not(.on-hero) .fo-iconbtn, .fo-header.scrolled .fo-iconbtn { color: var(--text-strong); }
.fo-iconbtn svg { width: 19px; height: 19px; }
.fo-cart-wrap { position: relative; }
.fo-cart-count {
  position: absolute; top: -7px; right: -10px;
  background: var(--fo-accent); color: #fff;
  font-family: var(--font-display); font-weight: var(--weight-bold);
  font-size: 10px; min-width: 17px; height: 17px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
  transform: scale(0); transition: transform var(--dur-base) var(--ease-out);
}
.fo-cart-count.show { transform: scale(1); }
.fo-menu-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.fo-hero { position: relative; min-height: min(86vh, 760px); display: flex; align-items: center; overflow: hidden; margin-top: calc(var(--header-h) * -1); }
.fo-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); }
.fo-hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(20,28,24,0.82) 0%, rgba(20,28,24,0.55) 44%, rgba(20,28,24,0.12) 100%),
    linear-gradient(0deg, rgba(20,28,24,0.55) 0%, rgba(20,28,24,0) 40%);
}
.fo-hero-inner { position: relative; z-index: 2; padding-top: var(--header-h); }
.fo-hero-content { max-width: 660px; color: #fff; }
.fo-hero .fo-eyebrow { color: var(--green-300); margin-bottom: 18px; }
.fo-hero h1 {
  font-family: var(--font-display); font-weight: var(--weight-bold);
  text-transform: uppercase; line-height: 0.96; letter-spacing: -0.012em;
  font-size: clamp(46px, 7.4vw, 104px); margin: 0 0 22px; color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.fo-hero h1 em { font-style: normal; color: var(--green-300); }
.fo-hero p { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: rgba(255,255,255,0.9); max-width: 520px; margin: 0 0 32px; font-weight: var(--weight-light); }
.fo-hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.fo-scrolldown {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,0.8); display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-caps); font-size: 11px;
  animation: fo-bob 2.4s var(--ease-in-out) infinite; cursor: pointer;
}
@keyframes fo-bob { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(7px); } }

/* ============================================================
   ABOUT
   ============================================================ */
.fo-about { position: relative; }
.fo-about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.fo-about-photo { position: relative; }
.fo-about-photo img { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.fo-about-badge {
  position: absolute; right: -22px; bottom: -22px;
  width: 132px; height: 132px; border-radius: 999px;
  background: var(--green-800); color: #fff; border: 3px solid var(--fo-accent);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-display); box-shadow: var(--shadow-md); padding: 10px;
}
.fo-about-badge .n { font-size: 38px; font-weight: var(--weight-bold); line-height: 1; color: var(--green-300); }
.fo-about-badge .l { font-size: 10px; text-transform: uppercase; letter-spacing: var(--tracking-caps); margin-top: 5px; }
.fo-about-body h2 { margin-bottom: 22px; }
.fo-about-body p { font-size: var(--text-md); line-height: var(--leading-relaxed); color: var(--text-muted); margin: 0 0 18px; }
.fo-about-body p .hl { color: var(--text-strong); font-weight: var(--weight-medium); }
.fo-about-actions { margin-top: 30px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.fo-mtn { display: block; width: 100%; height: auto; }

/* ============================================================
   PODCAST FEATURE (editorial band)
   ============================================================ */
.fo-feature { position: relative; overflow: hidden; background: var(--green-900); }
.fo-feature-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.42; }
.fo-feature-bg::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(20,28,24,0.85), rgba(20,28,24,0.3)); }
.fo-ghost {
  position: absolute; left: 0; right: 0; bottom: -2%; z-index: 1; text-align: center; pointer-events: none;
  font-family: var(--font-display); font-weight: var(--weight-bold); text-transform: uppercase;
  font-size: clamp(54px, 13vw, 200px); line-height: 0.8; color: rgba(255,255,255,0.06);
  letter-spacing: -0.02em; white-space: nowrap;
}
.fo-feature-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.fo-feature-copy { color: #fff; }
.fo-feature-copy h2 { color: #fff; margin: 16px 0 18px; }
.fo-feature-copy p { color: rgba(255,255,255,0.82); font-size: var(--text-md); line-height: var(--leading-relaxed); margin: 0 0 26px; max-width: 460px; }
.fo-feature-meta { display: flex; gap: 22px; margin: 0 0 28px; flex-wrap: wrap; }
.fo-feature-meta .m { color: #fff; }
.fo-feature-meta .m .k { font-family: var(--font-display); font-size: 11px; text-transform: uppercase; letter-spacing: var(--tracking-caps); color: var(--green-300); }
.fo-feature-meta .m .v { font-family: var(--font-display); font-weight: var(--weight-medium); font-size: 18px; }
.fo-feature-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.fo-feature-card { background: var(--paper); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); overflow: hidden; }
.fo-feature-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.fo-feature-card .body { padding: 22px 24px 24px; }
.fo-waveform { display: flex; align-items: flex-end; gap: 3px; height: 30px; margin-top: 4px; }
.fo-waveform span { flex: 1; background: var(--fo-accent); border-radius: 2px; opacity: 0.5; }

/* ============================================================
   MERCH
   ============================================================ */
.fo-merch { background: var(--surface-sunken); }
.fo-merch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.fo-merch-card {
  display: flex; flex-direction: column; height: 100%;
  background: var(--paper); border-radius: var(--radius-md); box-shadow: var(--shadow-card);
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.fo-merch-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.fo-merch-art {
  position: relative; aspect-ratio: 1/1; border-radius: var(--radius-md) var(--radius-md) 0 0;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: linear-gradient(180deg, var(--paper), var(--fog));
}
.fo-merch-art svg { width: 78%; height: 78%; }
.fo-merch-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fo-shop-content .fo-merch-art {
  aspect-ratio: 1 / 1;
  padding: 34px;
  background: radial-gradient(125% 100% at 50% 14%, var(--paper) 0%, var(--kraft-100) 70%, var(--green-100) 100%);
}
.fo-shop-content .fo-merch-art img {
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(30, 41, 34, 0.22));
  transition: transform var(--dur-slow) var(--ease-out);
}
.fo-shop-content .fo-merch-card:hover .fo-merch-art img { transform: scale(1.05) translateY(-6px); }
.fo-shop-content .fo-merch-name a { color: inherit; text-decoration: none; }
.fo-shop-content .fo-merch-name a:hover { color: var(--brand-strong); }

/* ---- Single product page ---- */
.fo-product-content .fo-product-hero { padding-top: 48px; }
.fo-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate);
}
.fo-breadcrumb a { color: var(--slate); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
.fo-breadcrumb a:hover { color: var(--brand-strong); }
.fo-breadcrumb svg { opacity: 0.5; }
.fo-breadcrumb span { color: var(--ink); font-weight: 600; }

.fo-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.fo-product-art {
  position: sticky;
  top: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: clamp(28px, 5vw, 64px);
  border-radius: var(--radius-lg, 24px);
  background: radial-gradient(125% 100% at 50% 12%, var(--paper) 0%, var(--kraft-100) 65%, var(--green-100) 100%);
  box-shadow: var(--shadow-card);
}
.fo-product-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 32px rgba(30, 41, 34, 0.24));
}
.fo-product-info { display: flex; flex-direction: column; }
.fo-product-info .fo-eyebrow { margin-bottom: 14px; }
.fo-product-info h1 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 18px;
}
.fo-product-price {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--brand-strong);
  margin: 0 0 22px;
}
.fo-product-price del { color: var(--slate); opacity: 0.6; font-size: 0.7em; margin-right: 8px; }
.fo-product-price ins { text-decoration: none; }
.fo-product-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--graphite);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--fog);
}
.fo-product-desc p:last-child { margin-bottom: 0; }

.fo-product-cart { margin-bottom: 32px; }
.fo-product-cart form.cart { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.fo-product-cart table.variations { width: 100%; border: 0; margin: 0 0 18px; }
.fo-product-cart table.variations tr { display: block; margin-bottom: 14px; }
.fo-product-cart table.variations th,
.fo-product-cart table.variations td { display: block; padding: 0; border: 0; text-align: left; }
.fo-product-cart table.variations th label {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 8px;
  display: inline-block;
}
.fo-product-cart table.variations td { margin-top: 8px; }
.fo-product-cart select {
  width: 100%;
  max-width: 360px;
  padding: 13px 16px;
  border: 1px solid var(--fog);
  border-radius: 10px;
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.fo-product-cart select:focus { outline: none; border-color: var(--brand); }
.fo-product-cart .reset_variations {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--slate);
  text-decoration: underline;
}
.fo-product-cart .woocommerce-variation-price { font-family: var(--font-display); font-size: 22px; color: var(--brand-strong); margin-bottom: 4px; }
.fo-product-cart .woocommerce-variation-availability { font-family: var(--font-body); font-size: 14px; color: var(--slate); margin-bottom: 16px; }
.fo-product-cart .woocommerce-variation { margin-bottom: 18px; }
.fo-product-cart .quantity { display: inline-flex; }
.fo-product-cart .quantity input.qty {
  width: 76px;
  padding: 13px 14px;
  border: 1px solid var(--fog);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  text-align: center;
}
.fo-product-cart .single_add_to_cart_button {
  font-family: var(--font-display) !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600 !important;
  font-size: 15px !important;
  padding: 16px 36px !important;
  border-radius: var(--radius-pill) !important;
  border: none !important;
  background: var(--brand) !important;
  color: var(--paper) !important;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.fo-product-cart .single_add_to_cart_button:hover { background: var(--brand-strong) !important; transform: translateY(-2px); }
.fo-product-cart .single_add_to_cart_button.disabled,
.fo-product-cart .single_add_to_cart_button.disabled:hover {
  background: var(--fog) !important;
  color: var(--slate) !important;
  cursor: not-allowed;
  transform: none;
}
.fo-product-cart p.stock {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--slate);
  margin: 0;
}
.fo-product-cart p.stock.out-of-stock { color: var(--kraft-600); font-weight: 600; }

.fo-product-trust {
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--fog);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fo-product-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--graphite);
}
.fo-product-trust li svg { flex: none; width: 16px; height: 16px; color: var(--brand); }

/* ---- Single blog post ---- */
.fo-single-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}
.fo-single-meta-dot { opacity: 0.45; }

/* ---- Custom audio player ---- */
.fo-player-wrap {
  margin: 40px 0 36px;
}
.fo-player {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--green-900);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15,22,18,0.32);
  position: relative;
}
.fo-player-art {
  flex: none;
  width: 240px;
  height: 135px;
  margin: 14px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--green-800);
}
.fo-player-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fo-player-art-fallback {
  background: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
}
.fo-player-panel {
  flex: 1;
  min-width: 0;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fo-player-info { display: flex; flex-direction: column; gap: 4px; }
.fo-player-show {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-400, #6fa882);
  font-weight: 600;
}
.fo-player-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 18px);
  color: #fff;
  margin: 0;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fo-player-progress-wrap { display: flex; flex-direction: column; gap: 6px; }
.fo-player-bar {
  position: relative;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  cursor: pointer;
}
.fo-player-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: var(--brand);
  border-radius: 2px;
  pointer-events: none;
  transition: width 0.1s linear;
}
.fo-player-seek {
  position: absolute;
  inset: -10px 0;
  width: 100%;
  height: calc(100% + 20px);
  opacity: 0;
  cursor: pointer;
  margin: 0;
  padding: 0;
}
.fo-player-times {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}
.fo-player-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fo-player-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: var(--green-900);
  border: none;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  flex: none;
}
.fo-player-play-btn:hover { transform: scale(1.07); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.fo-player--playing .fo-player-play-btn { background: var(--brand); color: #fff; }
.fo-player-skip {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 8px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.fo-player-skip:hover { background: rgba(255,255,255,0.16); color: #fff; }
.fo-player-speed {
  margin-left: auto;
  padding: 6px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
  letter-spacing: 0.03em;
}
.fo-player-speed:hover { background: rgba(255,255,255,0.16); color: #fff; }

@media (max-width: 560px) {
  .fo-player-art { display: none; }
  .fo-player-panel { padding: 20px; }
  .fo-player-play-btn { width: 46px; height: 46px; }
}
/* Gallery section: override EAEL white wrapper bg */
.elementor-element-6d4f7e8 .eael-filter-gallery-wrapper {
  background-color: transparent !important;
}
.fo-single-hero .fo-hero-content h1 { font-size: clamp(26px, 3.8vw, 50px); }

.fo-single-body-wrap { background: var(--paper); }
.fo-single-body { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.fo-single-article {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.78;
  color: var(--graphite);
  padding: 8px 0 48px;
}
.fo-single-article p,
.fo-single-article .wp-block-paragraph { margin: 0 0 22px; }
.fo-single-article p:last-child,
.fo-single-article .wp-block-paragraph:last-child { margin-bottom: 0; }
.fo-single-article strong { font-weight: 700; color: var(--ink); }
.fo-single-article em { font-style: italic; }
.fo-single-article a { color: var(--brand-strong); text-decoration: underline; text-decoration-color: var(--green-300); text-underline-offset: 3px; transition: color var(--dur-fast) var(--ease-out); }
.fo-single-article a:hover { color: var(--brand); }
.fo-single-article h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--ink);
  margin: 40px 0 16px;
  letter-spacing: 0.01em;
}
.fo-single-article h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink);
  margin: 32px 0 12px;
}
.fo-single-article ul, .fo-single-article ol { padding-left: 26px; margin: 0 0 22px; }
.fo-single-article li { margin-bottom: 8px; }
.fo-single-article blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--brand);
  background: var(--green-100);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--ink);
}
.fo-single-article blockquote p { margin: 0; }
.fo-single-article img { width: 100%; height: auto; border-radius: 12px; margin: 24px 0; display: block; }
.fo-single-article figure { margin: 24px 0; }
.fo-single-article figure img { margin: 0; }
.fo-single-article figcaption { font-size: 13px; color: var(--slate); text-align: center; margin-top: 8px; }

/* Responsive iframes (YouTube embeds) */
.fo-single-article iframe {
  width: 100% !important;
  aspect-ratio: 16 / 9;
  height: auto !important;
  border: none;
  display: block;
  margin: 32px auto;
  border-radius: 14px;
  overflow: hidden;
}
.fo-single-article .wp-block-embed { margin: 32px 0; }
.fo-single-article .wp-block-embed__wrapper iframe { border-radius: 14px; }

.fo-single-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--fog);
}
.fo-single-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--fog);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.fo-single-nav-item:hover { border-color: var(--brand); box-shadow: 0 4px 14px rgba(69,116,84,0.12); transform: translateY(-2px); }
.fo-single-nav-right { justify-content: flex-end; text-align: right; }
.fo-single-nav-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.fo-single-nav-label { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); font-weight: 600; }
.fo-single-nav-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 640px) {
  .fo-single-nav { grid-template-columns: 1fr; }
  .fo-single-nav-right { justify-content: flex-start; text-align: left; }
}

@media (max-width: 860px) {
  .fo-product-grid { grid-template-columns: 1fr; gap: 32px; }
  .fo-product-art { position: static; aspect-ratio: 4 / 3; }
}
.fo-merch-body { padding: 18px 18px 22px; text-align: center; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.fo-merch-name { font-family: var(--font-display); font-weight: var(--weight-semibold); font-size: var(--text-md); color: var(--text-strong); margin: 0; letter-spacing: -0.01em; }
.fo-merch-type { font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-caps); font-size: 11px; color: var(--text-faint); }
.fo-merch-price { font-family: var(--font-display); font-weight: var(--weight-medium); font-size: 17px; color: var(--text-muted); margin: 6px 0 14px; }
.fo-merch-card .fo-merch-cta { margin-top: auto; }
.fo-merch-card:hover .fo-merch-cta .fo-btn-ghost { background: var(--brand); color: var(--text-inverse); border-color: var(--brand); }

/* ============================================================
   LATEST
   ============================================================ */
.fo-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.fo-tab {
  font-family: var(--font-display); font-weight: var(--weight-medium); text-transform: uppercase;
  letter-spacing: var(--tracking-wide); font-size: 14px; color: var(--text-muted);
  background: none; border: none; cursor: pointer; padding: 11px 22px; border-radius: var(--radius-pill);
  transition: all var(--dur-base) var(--ease-out);
}
.fo-tab:hover { color: var(--text-strong); }
.fo-tab.active { background: var(--green-800); color: #fff; }
.fo-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.fo-post { background: var(--paper); border-radius: var(--radius-md); box-shadow: var(--shadow-card); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.fo-post:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fo-post-img { aspect-ratio: 16/10; overflow: hidden; }
.fo-post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.fo-post:hover .fo-post-img img { transform: scale(1.05); }
.fo-post-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.fo-post-meta { display: flex; align-items: center; gap: 12px; }
.fo-post-date { font-size: 13px; color: var(--text-faint); font-weight: var(--weight-light); }
.fo-post-title { font-family: var(--font-display); font-weight: var(--weight-semibold); font-size: 21px; line-height: 1.15; color: var(--text-strong); margin: 0; letter-spacing: -0.01em; }
.fo-post-excerpt { font-size: 15px; line-height: 1.6; color: var(--text-muted); margin: 0; }
.fo-post-more { margin-top: auto; }
.fo-readmore {
  display: inline-flex; align-items: center; gap: 6px; background: none; border: none; cursor: pointer; padding: 0;
  font-family: var(--font-display); font-weight: var(--weight-semibold); text-transform: uppercase;
  letter-spacing: var(--tracking-wide); font-size: 13px; color: var(--fo-accent-strong);
}
.fo-readmore svg { width: 15px; height: 15px; transition: transform var(--dur-base) var(--ease-out); }
.fo-readmore:hover svg { transform: translateX(4px); }
.fo-latest-foot { text-align: center; margin-top: 52px; }

/* ============================================================
   GALLERY
   ============================================================ */
.fo-gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: clamp(180px, 21vw, 250px); gap: 16px; }
.fo-gallery-item { overflow: hidden; border-radius: var(--radius-md); position: relative; cursor: pointer; }
.fo-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.fo-gallery-item:hover img { transform: scale(1.06); }
.fo-gallery-item::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(20,28,24,0.4), rgba(0,0,0,0)); opacity: 0; transition: opacity var(--dur-base); }
.fo-gallery-item:hover::after { opacity: 1; }
.fo-g-a { grid-column: span 8; }
.fo-g-b { grid-column: span 4; }
.fo-g-c { grid-column: span 4; }
.fo-g-d { grid-column: span 4; }
.fo-g-e { grid-column: span 4; }

/* ============================================================
   FOOTER
   ============================================================ */
.fo-footer { background: var(--surface-forest); color: var(--text-on-forest); }
.fo-footer-top { padding: clamp(56px, 7vw, 88px) 0 clamp(40px, 5vw, 56px); }
.fo-footer-logo { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 44px; }
.fo-footer-logo img { height: 64px; width: auto; margin-bottom: 8px; }
.fo-footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.fo-foot-h { font-family: var(--font-display); font-weight: var(--weight-semibold); text-transform: uppercase; letter-spacing: var(--tracking-caps); font-size: 13px; color: var(--green-300); margin: 0 0 18px; }
.fo-foot-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.fo-foot-links a { color: var(--text-on-forest); text-decoration: none; font-family: var(--font-display); font-weight: var(--weight-light); text-transform: uppercase; letter-spacing: var(--tracking-wide); font-size: 14px; transition: color var(--dur-fast); }
.fo-foot-links a:hover { color: #fff; }
.fo-newsletter p { color: rgba(214,224,218,0.78); line-height: 1.6; margin: 0 0 18px; font-size: 15px; }
.fo-news-form { display: flex; gap: 10px; }
.fo-news-form input {
  flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm); padding: 12px 14px; color: #fff; font-family: var(--font-body);
  font-weight: var(--weight-light); font-size: 15px; outline: none; transition: border-color var(--dur-fast);
}
.fo-news-form input::placeholder { color: rgba(255,255,255,0.45); }
.fo-news-form input:focus { border-color: var(--green-300); }
.fo-news-ok { color: var(--green-300); font-family: var(--font-display); text-transform: uppercase; letter-spacing: var(--tracking-wide); font-size: 14px; margin-top: 14px; display: flex; align-items: center; gap: 8px; }
.fo-socials { display: flex; gap: 12px; margin-top: 22px; }
.fo-social { width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: var(--text-on-forest); transition: all var(--dur-base) var(--ease-out); text-decoration: none; }
.fo-social:hover { background: var(--fo-accent); border-color: var(--fo-accent); color: #fff; transform: translateY(-2px); }
.fo-social svg { width: 18px; height: 18px; }
.fo-footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 22px 0; }
.fo-footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: rgba(214,224,218,0.6); font-family: var(--font-display); letter-spacing: var(--tracking-wide); text-transform: uppercase; }
.fo-footer-legal { display: flex; align-items: center; gap: 20px; }
.fo-footer-legal a { color: rgba(214,224,218,0.55); text-decoration: none; font-family: var(--font-display); font-size: 12.5px; letter-spacing: var(--tracking-wide); text-transform: uppercase; transition: color var(--dur-fast) var(--ease-out); white-space: nowrap; }
.fo-footer-legal a:hover { color: rgba(214,224,218,0.9); }

/* ============================================================
   TOAST
   ============================================================ */
.fo-toast-wrap { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: 10px; align-items: center; pointer-events: none; }
.fo-toast {
  background: var(--green-800); color: #fff; padding: 14px 22px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: var(--weight-medium); letter-spacing: var(--tracking-wide); font-size: 14px;
  animation: fo-toast-in var(--dur-base) var(--ease-out);
}
.fo-toast svg { width: 18px; height: 18px; color: var(--green-300); flex-shrink: 0; }
@keyframes fo-toast-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- scroll reveal ---------- */
.fo-page .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fo-page .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .fo-page .reveal { opacity: 1; transform: none; transition: none; } .fo-scrolldown { animation: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .fo-merch-grid { grid-template-columns: repeat(2, 1fr); }
  .fo-posts { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .fo-about-grid { grid-template-columns: 1fr; }
  .fo-about-photo { max-width: 380px; margin: 0 auto; }
  .fo-feature-inner { grid-template-columns: 1fr; }
  .fo-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .fo-g-a { grid-column: span 2; }
  .fo-g-b, .fo-g-c, .fo-g-d, .fo-g-e { grid-column: span 1; grid-row: span 1; }
  .fo-footer-grid { grid-template-columns: 1fr; text-align: center; }
  .fo-foot-links { align-items: center; }
  .fo-socials { justify-content: center; }
}
@media (max-width: 720px) {
  .fo-nav, .fo-header .fo-search-label { display: none; }
  .fo-menu-toggle { display: inline-flex; }
  .fo-merch-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

.fo-footer-tagline { text-align: center; }
.fo-footer-tagline p { color: rgba(214,224,218,0.7); font-size: 14px; line-height: 1.6; margin: 0; }

/* ---- Blog/Podcast index: small hero + pagination ---- */
.fo-hero-sm { min-height: min(50vh, 460px); margin-top: 0; }
.fo-hero-sm .fo-hero-inner { padding-top: 0; width: 100%; }
.fo-hero-sm .fo-hero-content { max-width: 640px; margin: 0 auto; text-align: center; }
.fo-hero-sm .fo-hero-content p { margin-left: auto; margin-right: auto; }
.fo-hero-sm h1 { font-size: clamp(34px, 5.6vw, 60px); margin-bottom: 16px; }
.fo-hero-sm .fo-hero-cta { justify-content: center; }
.fo-hero-sm .fo-hero-scrim { background: linear-gradient(180deg, rgba(20,28,24,0.4) 0%, rgba(20,28,24,0.8) 100%); }
.fo-pagination ul { list-style: none; display: flex; justify-content: center; align-items: center; gap: 8px; padding: 0; margin: 0; flex-wrap: wrap; }
.fo-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-width: 42px; height: 42px; padding: 0 16px; border-radius: 999px; border: 1px solid var(--border-default); font-family: var(--font-display); font-size: 14px; letter-spacing: var(--tracking-wide); text-decoration: none; color: var(--text-strong); transition: all var(--dur-fast) var(--ease-out); }
.fo-pagination .page-numbers.current { background: var(--green-800); color: #fff; border-color: var(--green-800); }
.fo-pagination a.page-numbers:hover { background: var(--surface-sunken); border-color: var(--border-strong); }
.fo-pagination .page-numbers.dots { border-color: transparent; }
