/* ============================================================
   jade owls — v2 public site (Home / Careers / Owners)
   Minimalist holding-company design. Mobile-first.
   portal.html + credits.html keep the old style.css — do not
   load this file there.
   Reference language: image-first, whisper
   chrome) · Ellis Brigham (one giant line, human scale) ·
   Tesla/SpaceX (negative space, one idea per view) · Zerorez
   (central scroll spine) · Guardian (dimensional dotted map).
   ============================================================ */

:root {
  --jade: #3A5320;
  --jade-deep: #2C3F18;
  --jade-night: #1E2C11;
  --jade-bright: #7BA340;
  --jade-mist: #E6ECD8;
  --sand: #F7F3EC;
  --sand-deep: #EFE7D9;
  --sandstone: #C9A876;
  --ink: #1A1F1D;
  --ink-soft: #4A5550;
  --line: #E2DACB;
  --white: #FFFFFF;

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Newsreader", Georgia, serif;

  /* Airier, larger scale than v1 */
  --step--1: 0.9rem;
  --step-0: 1.0625rem;
  --step-1: clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem);
  --step-2: clamp(1.5rem, 1.25rem + 1vw, 2.1rem);
  --step-3: clamp(1.9rem, 1.5rem + 1.8vw, 3rem);
  --step-4: clamp(2.4rem, 1.7rem + 3vw, 4.2rem);
  --step-hero: clamp(2.75rem, 1.6rem + 6vw, 6.5rem);

  --container: 68rem;
  --measure: 38rem;
  --gutter: clamp(1.1rem, 4vw, 2rem);
  --band: clamp(4.5rem, 3rem + 8vw, 9rem);   /* generous section padding */
  --header-h: 5rem;
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset-ish + overflow guard (the mobile fix) ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }          /* nothing may widen the page */
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; margin: 0 0 0.5em; text-wrap: balance; overflow-wrap: break-word; }
p { margin: 0 0 1em; overflow-wrap: break-word; }
a { color: var(--jade); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 300;
  background: var(--jade); color: var(--sand);
  padding: 0.5rem 1rem; border-radius: 8px; transition: top 0.15s var(--ease);
}
.skip-link:focus { top: 0.75rem; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.measure { max-width: var(--measure); }
.center { text-align: center; }
.center .measure { margin-inline: auto; }

/* ---------- Whisper header ---------- */
.v2-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.v2-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--header-h); max-width: none;
  padding-inline: clamp(1.1rem, 3vw, 2.5rem);
}
.v2-brand img { height: 3.8rem; width: auto; }
@media (max-width: 36em) { .v2-brand img { height: 2.9rem; } .v2-brand .logo-dark { padding: 0.22rem 0.45rem; border-radius: 8px; } }
/* green logo everywhere (no white joi logo); a sand chip lifts it off
   media mastheads, and drops away once the header goes solid */
.v2-brand .logo-light { display: none; }
.v2-brand .logo-dark {
  display: block;
  background: rgba(247, 243, 236, 0.9); border-radius: 10px; padding: 0.3rem 0.55rem;
  box-shadow: 0 4px 18px rgba(20, 28, 14, 0.25);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background 300ms var(--ease), box-shadow 300ms var(--ease);
}
.v2-brand { flex: none; }                 /* never let flex squeeze the logo */
.v2-brand .brand-word {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 500;
  text-transform: lowercase; text-decoration: none; color: var(--sand);
  text-shadow: 0 1px 12px rgba(20, 28, 14, 0.5); letter-spacing: 0.01em;
}
.v2-header.is-scrolled .brand-word, .v2-header.is-solid .brand-word { color: var(--jade-night); text-shadow: none; }
.v2-footer .brand-word { display: block; font-family: var(--font-display); font-size: 1.35rem; color: var(--sand); margin-bottom: 1rem; }
.v2-brand { cursor: pointer; display: inline-flex; align-items: center; }
/* hamburger — reads as a menu without needing to be learned */
.brand-caret {
  position: relative; width: 19px; height: 2px; margin-left: 0.6rem;
  background: var(--sand); border-radius: 2px;
  filter: drop-shadow(0 1px 4px rgba(20, 28, 14, 0.5));
  transition: background-color 200ms var(--ease);
}
.brand-caret::before, .brand-caret::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 2px;
  background: inherit; border-radius: 2px;
  transition: transform 250ms var(--ease), top 200ms var(--ease), background-color 200ms var(--ease);
}
.brand-caret::before { top: -6px; }
.brand-caret::after  { top: 6px; }
.v2-header.is-scrolled .brand-caret, .v2-header.is-solid .brand-caret,
.v2-header.is-scrolled .brand-caret::before, .v2-header.is-solid .brand-caret::before,
.v2-header.is-scrolled .brand-caret::after, .v2-header.is-solid .brand-caret::after { background: var(--jade-night); filter: none; }
.v2-brand[aria-expanded="true"] .brand-caret { background: transparent; filter: none; }
.v2-brand[aria-expanded="true"] .brand-caret::before { top: 0; transform: rotate(45deg); background: var(--sand); }
.v2-brand[aria-expanded="true"] .brand-caret::after  { top: 0; transform: rotate(-45deg); background: var(--sand); }
.v2-header.is-scrolled .v2-brand[aria-expanded="true"] .brand-caret::before,
.v2-header.is-solid .v2-brand[aria-expanded="true"] .brand-caret::before,
.v2-header.is-scrolled .v2-brand[aria-expanded="true"] .brand-caret::after,
.v2-header.is-solid .v2-brand[aria-expanded="true"] .brand-caret::after { background: var(--jade-night); }
.brand-menu {
  position: absolute; top: calc(100% + 0.2rem); left: clamp(1.1rem, 3vw, 2.5rem); z-index: 120;
  min-width: 12.5rem; background: var(--sand); border: 1px solid var(--line);
  border-radius: 12px; padding: 0.45rem; box-shadow: 0 4px 12px rgba(26, 31, 29, 0.10), 0 18px 40px rgba(26, 31, 29, 0.18);
}
.brand-menu a {
  display: block; padding: 0.55rem 0.9rem; border-radius: 8px;
  color: var(--jade-night); text-decoration: none; font-size: 0.9rem; font-weight: 600;
}
.brand-menu a:hover { background: var(--sand-deep); }
.v2-nav { display: flex; align-items: center; gap: clamp(0.9rem, 2.5vw, 2rem); flex-wrap: nowrap; }
.v2-nav a {
  color: var(--sand); text-decoration: none; white-space: nowrap;
  font-size: 1.1rem; font-weight: 600; letter-spacing: 0.04em;
}
.v2-nav a:hover { text-decoration: underline; text-underline-offset: 4px; }
.v2-nav .nav-login {
  border: 1.5px solid rgba(247, 243, 236, 0.55);
  border-radius: 999px; padding: 0.5rem 1.25rem;
}
/* phones: short login label + compact chrome, always one line */
.login-short { display: none; }
@media (max-width: 36em) {
  .login-full { display: none; }
  .login-short { display: inline; }
}
@media (max-width: 30rem) {
  .v2-nav { gap: 0.75rem; }
  .v2-nav a { font-size: 0.9rem; }
  .v2-nav .nav-login { padding: 0.4rem 0.9rem; }
}
/* wordmark header (owners pages): must fit 5 items at phone width — placed after
   the base rules above so these compact values win by order */
@media (max-width: 36em) {
  .v2-brand .brand-word { font-size: 1.15rem; }
  .v2-nav { gap: 0.45rem; }
  .v2-nav a { font-size: 0.72rem; }
  .v2-nav .nav-login { padding: 0.32rem 0.6rem; }
}
@media (max-width: 24em) {
  .v2-nav { gap: 0.36rem; }
  .v2-nav a { font-size: 0.64rem; }
  .v2-nav .nav-login { padding: 0.26rem 0.48rem; }
}
@media (max-width: 21em) {   /* 320px: nav alone cannot recover it, shrink the logo too */
  .v2-brand .brand-word { font-size: 1rem; }
  .v2-brand img { height: 2.3rem; }
  .v2-nav { gap: 0.28rem; }
  .v2-nav a { font-size: 0.58rem; }
  .v2-nav .nav-login { padding: 0.22rem 0.4rem; }
  .v2-header .container { padding-inline: 0.7rem; }
}
/* solid state after scroll (and always on non-hero pages via .is-solid) */
.v2-header.is-scrolled, .v2-header.is-solid {
  background: rgba(247, 243, 236, 0.94);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.v2-header.is-scrolled .v2-nav a, .v2-header.is-solid .v2-nav a { color: var(--jade-night); }
.v2-header.is-scrolled .nav-login, .v2-header.is-solid .nav-login { border-color: var(--jade); color: var(--jade); }
.v2-header.is-scrolled .logo-dark, .v2-header.is-solid .logo-dark {
  background: transparent; box-shadow: none;
  -webkit-backdrop-filter: none; backdrop-filter: none;
}

/* ---------- Full-bleed hero ---------- */
.v2-hero {
  position: relative; min-height: 86svh;   /* stops short of full screen so the
                                              next section peeks — the scroll cue */
  display: grid; place-items: end start;
  color: var(--sand); isolation: isolate;
}
.v2-hero.hero-short { min-height: 72svh; }
.v2-hero video, .v2-hero .hero-still {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.v2-hero::after {                     /* quiet scrim, bottom-weighted */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(20, 28, 14, 0.62) 0%, rgba(20, 28, 14, 0.12) 45%, rgba(20, 28, 14, 0.18) 100%);
}
.hero-copy { padding: 0 0 clamp(3rem, 8vh, 6rem); width: 100%; }
.hero-copy .container { max-width: none; padding-inline: clamp(1.1rem, 5vw, 4rem); }
.hero-title { font-size: var(--step-hero); letter-spacing: -0.01em; margin-bottom: 0.35em; max-width: 12ch; }
.hero-line { font-size: var(--step-1); max-width: 34ch; margin-bottom: 1.6em; color: rgba(247, 243, 236, 0.92); }
.scroll-cue {
  position: absolute; left: 50%; bottom: 1.1rem; translate: -50% 0;
  width: 1.5rem; height: 2.4rem; border: 2px solid rgba(247, 243, 236, 0.6);
  border-radius: 999px; pointer-events: none;
}
.scroll-cue::after {
  content: ""; position: absolute; left: 50%; top: 0.45rem; translate: -50% 0;
  width: 4px; height: 8px; border-radius: 2px; background: rgba(247, 243, 236, 0.85);
  animation: cue 1.8s var(--ease) infinite;
}
@keyframes cue { 0%,100% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(0.7rem); opacity: 0; } }
@media (max-height: 31.25em) {            /* landscape phones: hero title clears the header */
  .v2-hero, .v2-hero.hero-short { min-height: 100svh; }
  .hero-title { font-size: 2rem; }
  .hero-line { font-size: 0.9rem; margin-bottom: 0.7em; }
  .hero-copy { padding-bottom: 1.2rem; }
}

/* ---------- Bands (one idea per view) ---------- */
.band { padding-block: var(--band); }
.band-tight { padding-block: calc(var(--band) * 0.55); }
.band-first { padding-top: calc(var(--band) * 0.4); }
.band-alt { background: var(--sand-deep); }
.band-dark {
  background: linear-gradient(168deg, var(--jade-night) 0%, #07231c 100%);
  color: rgba(247, 243, 236, 0.9);
}
.band-dark h2, .band-dark h3 { color: var(--sand); }
.eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--jade-bright); margin: 0 0 1rem;
}
.band h2 { font-size: var(--step-3); }
.statement { font-size: var(--step-2); font-family: var(--font-display); line-height: 1.25; }
.lede { font-size: var(--step-1); color: var(--ink-soft); }
.band-dark .lede { color: rgba(247, 243, 236, 0.75); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; border-radius: 999px; text-decoration: none;
  font-weight: 600; font-size: var(--step--1); letter-spacing: 0.02em;
  padding: 0.85rem 1.9rem; transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--jade); color: var(--sand); }
.btn-solid:hover { background: var(--jade-deep); }
.btn-ghost { border: 1.5px solid currentColor; color: var(--jade); }
.band-dark .btn-solid { background: var(--sand); color: var(--jade-night); }
.band-dark .btn-ghost { color: var(--sand); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.center .btn-row { justify-content: center; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Owl milestone spine (Zerorez pattern) ---------- */
.spine { position: relative; }
.spine::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 1.1rem;
  width: 2px; background: linear-gradient(var(--line), var(--jade-bright), var(--line));
}
.spine-owl {
  position: sticky; top: 40vh; z-index: 2;
  width: 3.4rem; height: 3.4rem; margin-left: 0;
  translate: calc(1.1rem - 1.7rem + 1px) 0;
  filter: drop-shadow(0 4px 10px rgba(30, 44, 17, 0.25));
  will-change: transform;
}
.milestones { list-style: none; margin: 0; padding: 0 0 0 3.4rem; display: grid; gap: clamp(3.5rem, 9vh, 6.5rem); }
.milestone .ms-year {
  font-family: var(--font-display); font-size: var(--step-2);
  color: var(--jade); display: block; margin-bottom: 0.2em;
}
.milestone p { max-width: 34rem; color: var(--ink-soft); margin: 0; }
@media (min-width: 48em) {
  .spine::before { left: 50%; }
  .spine-owl { margin-left: calc(50% - 1.7rem); translate: none; }  /* dead-center on the line */
  .milestones { padding: 0; }
  .milestone { width: calc(50% - 3.5rem); }
  .milestone:nth-child(odd) { text-align: right; margin-right: auto; }
  .milestone:nth-child(even) { margin-left: auto; }
  .milestone:nth-child(odd) p { margin-left: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .spine-owl { position: static; translate: none; margin-bottom: 2rem; }
}

/* ---------- Dotted map (Guardian-inspired: parchment + lift) ---------- */
.map-band {
  background:
    radial-gradient(90% 70% at 50% 18%, rgba(201, 168, 118, 0.16), transparent 68%),
    radial-gradient(120% 90% at 12% 100%, rgba(58, 83, 32, 0.08), transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.45 0 0 0 0 0.40 0 0 0 0 0.30 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E"),
    var(--sand-deep);
}
.v2-map {
  width: min(56rem, 100%); margin-inline: auto;
  filter: drop-shadow(0 22px 30px rgba(30, 44, 17, 0.16)) drop-shadow(0 3px 6px rgba(30, 44, 17, 0.10));
}
.v2-map .state { fill: #E7E2D1; }
.v2-map .wy, .v2-map .ok, .v2-map .tx { stroke: var(--jade-deep); stroke-width: 1; }
.v2-map .borders { stroke: var(--sand); stroke-width: 1; }
.v2-map .separator1 { stroke: var(--sandstone); stroke-width: 1.5; opacity: 0.35; }
.v2-map .wy, .v2-map .ok, .v2-map .tx { fill: var(--jade); }
.v2-map .dccircle { display: none; }
.v2-map .people-dot { fill: var(--sandstone); stroke: var(--jade-night); stroke-width: 1.5; }
.map-caption { text-align: center; color: var(--ink-soft); font-size: var(--step--1); margin-top: 1rem; }

/* ---------- Attributes band (full-bleed still + copy) ---------- */
.attr-band { position: relative; color: var(--sand); isolation: isolate; padding-block: calc(var(--band) * 1.15); }
.attr-band .attr-bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 70% 22%; }
.attr-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to right, rgba(24, 32, 16, 0.78) 0%, rgba(24, 32, 16, 0.55) 45%, rgba(24, 32, 16, 0.28) 100%);
}
.attr-band h2 { color: var(--sand); font-size: var(--step-4); max-width: 14ch; }
.attr-band .lede { color: rgba(247, 243, 236, 0.88); }
.stjude {
  margin-top: 2.5rem; border-left: 3px solid var(--sandstone);
  padding: 0.4rem 0 0.4rem 1.2rem; max-width: 34rem;
}
.stjude p { margin: 0; font-size: var(--step--1); color: rgba(247, 243, 236, 0.85); }

/* ---------- Values / leadership / cards ---------- */
.values-atom { width: min(320px, 72%); margin: 0 auto 2.5rem; }
.trio { display: grid; gap: 1.1rem; }
@media (min-width: 48em) { .trio { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.trio h3 { font-size: var(--step-1); margin-bottom: 0.3em; }
.trio p { color: var(--ink-soft); font-size: var(--step--1); margin: 0; }
.band-dark .trio p { color: rgba(247, 243, 236, 0.75); }

.leads { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; text-align: center; }
@media (min-width: 48em) { .leads { grid-template-columns: repeat(3, 1fr); } }
.leads .lead-name { font-family: var(--font-display); font-size: var(--step-1); display: block; }
.leads .lead-role { color: var(--ink-soft); font-size: var(--step--1); }

/* ---------- Careers specifics ---------- */
.gh-shell {
  max-width: 720px; margin: 2.5rem auto 0;
  background: var(--white); border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2.5rem);
  box-shadow: 0 2px 6px rgba(26, 31, 29, 0.05), 0 16px 40px rgba(26, 31, 29, 0.07);
}
.gh-shell #grnhse_app { min-height: 4rem; }
.note { font-size: var(--step--1); color: var(--ink-soft); }
.band-dark .note { color: rgba(247, 243, 236, 0.6); }
.flag { font-size: 0.78rem; color: #8a6d3b; }

/* ---------- FAQ / owners ---------- */
.faq { max-width: 44rem; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 1rem 0; }
.faq summary { font-weight: 600; cursor: pointer; font-size: var(--step-0); }
.faq p { margin: 0.8rem 0 0; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.v2-footer { background: var(--jade-night); color: rgba(247, 243, 236, 0.75); text-align: center; padding: clamp(3rem, 6vw, 5rem) 0 2rem; }
.v2-footer img { height: 2.6rem; width: auto; margin: 0 auto 1.2rem;
  background: rgba(247, 243, 236, 0.92); border-radius: 8px; padding: 0.22rem 0.45rem; }
.v2-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; margin-bottom: 1.4rem; }
.v2-footer a { color: rgba(247, 243, 236, 0.85); text-decoration: none; font-size: var(--step--1); }
.v2-footer a:hover { text-decoration: underline; }
.v2-footer .fo-li { display: inline-flex; align-items: center; }
.v2-footer .fo-li svg { display: block; }
.v2-footer .fine { font-size: 0.8rem; color: rgba(247, 243, 236, 0.45); }

/* ---------- Motion prefs / mobile video ---------- */
@media (max-width: 48em), (prefers-reduced-motion: reduce) {
  .v2-hero video { display: none; }        /* posters carry mobile */
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue::after { animation: none; }
}

/* ---------- one-screen image-first variant — additive only ---------- */
.home-stage {
  position: relative; height: 100dvh; overflow: hidden;
  isolation: isolate; background: var(--jade-night);
}
.home-stage video, .home-stage .hero-still {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.home-stage::after {                 /* quiet scrim for the bar only */
  content: ""; position: absolute; inset: auto 0 0 0; height: 9rem; z-index: 1;
  background: linear-gradient(to top, rgba(20, 28, 14, 0.55), transparent);
}
.home-bar {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem clamp(1.1rem, 3vw, 2.5rem) calc(1.1rem + env(safe-area-inset-bottom));
}
.home-bar .v2-brand img { height: 3rem; width: auto; }
.home-bar nav { display: flex; align-items: center; gap: clamp(0.9rem, 2.5vw, 2rem); flex-wrap: nowrap; }
.home-bar nav a {
  color: var(--sand); text-decoration: none; white-space: nowrap;
  font-size: 1.05rem; font-weight: 600; letter-spacing: 0.05em;
}
.home-bar nav a:hover { text-decoration: underline; text-underline-offset: 4px; }
.home-bar .nav-login { border: 1.5px solid rgba(247, 243, 236, 0.55); border-radius: 999px; padding: 0.45rem 1.15rem; }
.home-bar .fo-li { display: inline-flex; align-items: center; color: var(--sand); }
@media (max-width: 36em) {
  .home-bar { flex-direction: column; gap: 0.8rem; padding-bottom: calc(1.3rem + env(safe-area-inset-bottom)); }
  .home-bar .v2-brand img { height: 2.5rem; }
  .home-bar nav { gap: 0.9rem; }
  .home-bar nav a { font-size: 0.92rem; }
  .home-bar .nav-login { padding: 0.35rem 0.9rem; }
}

/* Ethos-style centered interior hero */
.v2-hero.hero-center { place-items: center; text-align: center; }
.hero-center .hero-copy { padding: 0; }
.hero-center .hero-title { max-width: none; margin: 0; }
.hero-chevron {
  position: absolute; left: 50%; bottom: 1.4rem; translate: -50% 0; z-index: 2;
  color: rgba(247, 243, 236, 0.85); font-size: 1.6rem; text-decoration: none; line-height: 1;
}
.hero-chevron:hover { color: var(--sand); }

/* ---------- Owner relations: entity chooser + entity pages ---------- */
/* per-entity accents set on <html data-entity>; defaults keep jade */
:root { --accent: var(--jade); --accent-deep: var(--jade-deep); --accent-tint: #EDE7DA; }
html[data-entity="barn-owls"]        { --accent: #B98A4A; --accent-deep: #8A6534; --accent-tint: #F3E9D8; }
html[data-entity="great-horned-owls"]{ --accent: #6B4A2B; --accent-deep: #4E3620; --accent-tint: #EDE2D5; }
html[data-entity="snowy-owl"]        { --accent: #5F7A96; --accent-deep: #45596E; --accent-tint: #E7EDF2; }

.entity-cards { display: grid; gap: 1.1rem; margin-top: 2.5rem; }
@media (min-width: 48em) { .entity-cards { grid-template-columns: repeat(3, 1fr); } }
.entity-card {
  display: block; text-decoration: none; color: var(--ink); text-align: left;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border-top: 6px solid var(--ec, var(--jade));
  box-shadow: 0 2px 6px rgba(26,31,29,.05), 0 14px 34px rgba(26,31,29,.08);
  padding: 1.6rem 1.5rem 1.5rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.entity-card:hover { transform: translateY(-4px); box-shadow: 0 4px 10px rgba(26,31,29,.07), 0 22px 44px rgba(26,31,29,.12); }
.entity-card h3 { font-size: 1.45rem; margin-bottom: .2em; }
.entity-card .ec-state {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ec, var(--jade)); margin-bottom: .8rem;
}
.entity-card p { margin: 0; font-size: .92rem; color: var(--ink-soft); }
.entity-card .ec-go { display: inline-block; margin-top: 1rem; font-weight: 600; font-size: .9rem; color: var(--ec, var(--jade)); }
.ec-barn  { --ec: #B98A4A; }
.ec-gho   { --ec: #6B4A2B; }
.ec-snowy { --ec: #5F7A96; }

/* entity page masthead — "slightly different color header":
   full-bleed owl film under a duotone tint in the entity color. Text sits
   on the solid side; the owl breathes through the open side. */
.entity-mast {
  position: relative; isolation: isolate;
  min-height: 52svh; display: grid; align-items: end;
  color: var(--sand); padding: calc(var(--header-h) + 3rem) 0 2.6rem;
  overflow: hidden;
}
.entity-mast .em-bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 15%;   /* keep the owls' heads in frame */
}
.entity-mast .em-bg.flip { transform: scaleX(-1); }  /* put the owl on the open side */
.entity-mast .container { width: 100%; text-align: left; }
.entity-mast::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  /* neutral scrim for text legibility only — no color cast (owner request);
     the entity color lives in the strip below + all page accents */
  background: linear-gradient(to top, rgba(20, 25, 15, 0.55) 0%, rgba(20, 25, 15, 0.12) 45%, rgba(20, 25, 15, 0.25) 100%);
}
.entity-mast h1 { color: var(--sand); font-size: clamp(1.9rem, 1.4rem + 2.4vw, 3.2rem); margin-bottom: .15em; }
.entity-mast .em-sub { font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(247,243,236,.75); }
.entity-strip { height: 10px; background: linear-gradient(90deg, var(--accent-deep), var(--accent)); }

/* frequent tasks: details/summary forms */
.tasks { max-width: 46rem; margin-inline: auto; }
.task {
  background: var(--white); border-radius: var(--radius); border-left: 5px solid var(--accent);
  box-shadow: 0 1px 3px rgba(26,31,29,.05), 0 8px 22px rgba(26,31,29,.06);
  margin-bottom: 1rem; overflow: hidden;
}
.task > summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.4rem;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.task > summary::-webkit-details-marker { display: none; }
.task > summary::after { content: "+"; font-family: var(--font-body); color: var(--accent); font-size: 1.4rem; line-height: 1; }
.task[open] > summary::after { content: "\2212"; }
.task-body { padding: 0 1.4rem 1.4rem; }
.task-body p { font-size: .92rem; color: var(--ink-soft); }

.oform { display: grid; gap: .85rem; margin-top: .6rem; }
@media (min-width: 40em) { .oform { grid-template-columns: 1fr 1fr; } .oform .of-full { grid-column: 1 / -1; } }
.of-field label { display: block; font-size: .8rem; font-weight: 600; margin-bottom: .3rem; }
.of-field input, .of-field select, .of-field textarea {
  width: 100%; font: inherit; font-size: .95rem; color: var(--ink);
  padding: .6rem .7rem; border: 1px solid var(--line); border-radius: 9px; background: var(--white);
}
.of-field input:focus-visible, .of-field select:focus-visible, .of-field textarea:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent);
}
.of-btn {
  grid-column: 1 / -1; justify-self: start;
  background: var(--accent); color: var(--sand); border: 0; cursor: pointer;
  border-radius: 999px; font: inherit; font-weight: 600; font-size: .9rem;
  padding: .75rem 1.8rem; transition: background .2s var(--ease), transform .2s var(--ease);
}
.of-btn:hover { background: var(--accent-deep); transform: translateY(-1px); }
.of-note { grid-column: 1 / -1; font-size: .78rem; color: var(--ink-soft); margin: 0; }
.of-confirm { grid-column: 1 / -1; font-size: .85rem; font-weight: 600; color: var(--accent-deep); display: none; margin: 0; }
.oform.sent .of-confirm { display: block; }

/* entity page sell band tint */
.sell-band { background: linear-gradient(168deg, var(--accent-deep) 0%, var(--accent) 160%); color: rgba(247,243,236,.92); }
.sell-band h2 { color: var(--sand); }
.sell-band .btn-solid { background: var(--sand); color: var(--accent-deep); }


