/* Hurricane Ridge v2 — Hunt Camp (imagery-first rewrite)
   Fix: no ultra-wide crops, no empty black voids, hero subjects fully visible.
   Type: Oswald + Barlow | Colors: logo red/black */

:root {
  --ink: #231f20;
  --ink-2: #2e292a;
  --red: #e2361a;
  --red-2: #f04a2e;
  --cream: #f0ebe3;
  --paper: #f7f4ef;
  --mute: #5c554e;
  --line: rgba(35, 31, 32, 0.12);
  --line-inv: rgba(240, 235, 227, 0.14);
  --display: "Oswald", "Arial Narrow", Impact, sans-serif;
  --body: "Barlow", "Avenir Next", system-ui, sans-serif;
  --shell: 70rem;
  --top: 6rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 4.5rem;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.65rem, 3.6vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.shell {
  width: min(100% - 1.5rem, var(--shell));
  margin-inline: auto;
}
@media (min-width: 768px) {
  .shell { width: min(100% - 2.5rem, var(--shell)); }
}

.skip {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--red); color: #fff; padding: 0.5rem 0.9rem;
  font-weight: 700; text-decoration: none;
}
.skip:focus { top: 0.75rem; }

.kicker {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-2);
}
.kicker--dark { color: var(--red); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 3rem; padding: 0.7rem 1.35rem;
  border: 2px solid transparent;
  border-radius: 2px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-2); color: #fff; }
.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}
.btn--ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }
.btn--wide { width: 100%; }

.textlink {
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.textlink:hover { border-bottom-color: var(--red); }

/* Header */
.top {
  position: sticky; top: 0; z-index: 100;
  background: rgba(240, 235, 227, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--ink);
}
.top__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--top);
  padding-block: 0.55rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
}
.brand img {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
}
@media (min-width: 768px) {
  .brand img { width: 88px; height: 88px; }
}
.brand__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  line-height: 1;
  transform: translateY(1px);
}
.brand__text strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}
.brand__text span {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1;
}
@media (min-width: 768px) {
  .brand__text strong { font-size: 1.45rem; }
  .brand__text span { font-size: 0.9rem; letter-spacing: 0.18em; }
}
.brand--foot { color: #fff; }
.brand--foot .brand__text span { color: var(--red-2); }

.menu {
  position: fixed;
  inset: var(--top) 0 auto 0;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
  display: flex; flex-direction: column;
  padding: 0.75rem 1.25rem 1.25rem;
  transform: translateY(-130%); opacity: 0; visibility: hidden;
  transition: 0.3s var(--ease); z-index: 90;
}
.menu.is-open { transform: none; opacity: 1; visibility: visible; }
.menu a {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 0.35rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}
.menu a:hover { color: var(--red); }
.menu__go {
  margin-top: 0.55rem !important;
  border: none !important;
  background: var(--red);
  color: #fff !important;
  text-align: center;
  padding: 0.85rem !important;
}
.ham {
  width: 2.6rem; height: 2.6rem;
  border: 2px solid var(--ink);
  background: transparent;
  display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  cursor: pointer;
}
.ham span { display: block; width: 1.1rem; height: 2px; background: var(--ink); }

@media (min-width: 900px) {
  .ham { display: none; }
  .menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    background: transparent; border: none; flex-direction: row;
    align-items: center; padding: 0; gap: 0.1rem;
  }
  .menu a { border: none; padding: 0.4rem 0.75rem; font-size: 0.9rem; }
  .menu__go {
    margin: 0 0 0 0.35rem !important;
    padding: 0.55rem 1rem !important;
    font-size: 0.9rem !important;
  }
}

/* ===== HERO =====
   Desktop: full natural 3:2 photo + left overlay type.
   Mobile: full photo first, then solid copy panel (no text on faces). */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: #141110;
}
.hero__media {
  position: relative;
  width: 100%;
  line-height: 0;
}
.hero__media img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile: stacked — image then dark copy block */
.hero__fade {
  display: none;
}
.hero__content {
  position: static;
  transform: none;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1.35rem 1.25rem 1.65rem;
  background: var(--ink);
  line-height: 1.55;
  box-sizing: border-box;
}
.hero h1 {
  color: #fff;
  max-width: none;
  font-size: clamp(1.85rem, 8.5vw, 2.35rem);
  margin-bottom: 0.55rem;
  text-shadow: none;
}
.hero__lead {
  color: rgba(240, 235, 227, 0.88);
  font-size: 0.98rem;
  font-weight: 500;
  margin-bottom: 1.1rem;
  max-width: none;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}
.hero__cta .btn {
  width: 100%;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 235, 227, 0.65);
}
.hero__meta li {
  position: relative;
  padding-left: 0.8rem;
}
.hero__meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.32rem;
  height: 0.32rem;
  background: var(--red);
}
.hero .kicker {
  max-width: none;
  margin-bottom: 0.55rem;
}

/* Desktop: overlay on left sky; photo stays full */
@media (min-width: 768px) {
  .hero__fade {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      90deg,
      rgba(20, 17, 16, 0.9) 0%,
      rgba(20, 17, 16, 0.78) 24%,
      rgba(20, 17, 16, 0.4) 40%,
      rgba(20, 17, 16, 0.1) 52%,
      transparent 65%
    );
    pointer-events: none;
  }
  .hero__content {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(100% - 2.5rem, var(--shell));
    padding: 0;
    background: transparent;
  }
  .hero h1 {
    max-width: 14ch;
    font-size: clamp(2.2rem, 5.5vw, 3.4rem);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  }
  .hero__lead {
    max-width: 26rem;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
  }
  .hero__cta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1rem;
  }
  .hero__cta .btn {
    width: auto;
  }
  .hero__meta {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    gap: 0.5rem 1.1rem;
  }
  .hero .kicker {
    max-width: 26rem;
    margin-bottom: 0.75rem;
  }
}

/* Alert */
.alert-bar {
  background: var(--red);
  color: #fff;
  padding: 0.9rem 0;
}
.alert-bar__in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  font-size: 0.98rem;
}
@media (max-width: 640px) {
  .alert-bar__in {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
  .alert-bar a {
    margin-left: 0;
    margin-top: 0.2rem;
  }
}
.alert-bar strong {
  font-family: var(--display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
.alert-bar a {
  margin-left: auto;
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
}
.alert-bar a:hover { border-bottom-color: #fff; }

/* ===== 50/50 splits — natural frames, no ultra-wide crops ===== */
.split {
  background: var(--paper);
  padding: 3.5rem 0;
}
.split--dark {
  background: var(--ink);
  color: #fff;
}
.split--dark p { color: rgba(240, 235, 227, 0.78); }
.split--dark h2 { color: #fff; }

.split__grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .split--flip .split__copy { order: 1; }
  .split--flip .frame { order: 2; }
}
.split__copy { max-width: 34rem; }
.split__copy p { color: var(--mute); }
.split--dark .split__copy p { color: rgba(240, 235, 227, 0.78); }

/* Image frames: 4:3 landscape — shows full dogs/people */
.frame {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1717;
  border-radius: 2px;
}
.frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame--field img { object-position: 55% 48%; }
.frame--retrieve img { object-position: 58% 45%; }

/* Programs */
.programs {
  background: var(--cream);
  padding: 4rem 0 4.5rem;
  border-top: 2px solid var(--ink);
}
.programs__head { max-width: 36rem; margin-bottom: 2rem; }
.programs__sub { color: var(--mute); font-size: 1.05rem; }
.rows { border-top: 2px solid var(--ink); }
.row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 700px) {
  .row {
    grid-template-columns: 4.5rem 1fr;
    gap: 1.5rem 2rem;
    padding: 1.65rem 0;
  }
}
.row__n {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
  line-height: 1;
  padding-top: 0.15rem;
}
.row__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  margin-bottom: 0.4rem;
}
.row__title h3 { margin: 0; }
.row__time {
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.row__body p {
  margin: 0;
  color: var(--mute);
  max-width: 40rem;
}

/* ===== Gallery: 3 equal tiles, full subjects ===== */
.gallery {
  background: var(--paper);
  padding: 3.5rem 0 4rem;
  border-top: 2px solid var(--ink);
}
.gallery__title { margin-bottom: 1.5rem; }
.gallery__grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
.tile {
  margin: 0;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #1a1717;
  border-radius: 2px;
}
.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Per-image focal points so dogs + people stay whole */
.tile--work img { object-position: 40% 65%; }   /* dog + Ian standing */
.tile--bird img { object-position: 48% 40%; }   /* lab face + bird */
.tile--team img { object-position: center 18%; } /* Ian head + dog */

/* Voices */
.voices {
  background: var(--cream);
  padding: 4rem 0;
  border-top: 2px solid var(--ink);
}
.voices h2 { margin-bottom: 1.75rem; }
.voices__list {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--ink);
}
@media (min-width: 800px) {
  .voices__list {
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
  }
  .voice + .voice {
    border-left: 1px solid var(--line);
    padding-left: 3rem;
  }
}
.voice {
  margin: 0;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 800px) {
  .voice { border-bottom: none; }
}
.voice p {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  max-width: 36rem;
  margin-bottom: 0.85rem;
}
.voice cite {
  font-style: normal;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

/* Lineage */
.lineage {
  background: var(--ink);
  color: #fff;
  padding: 4rem 0;
}
.lineage h2 { color: #fff; margin-bottom: 1.5rem; }
.lineage__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .lineage__grid { grid-template-columns: 1fr 1fr; gap: 0; }
}
.line {
  padding: 1.5rem 0;
  border-top: 2px solid var(--red);
}
@media (min-width: 700px) {
  .line { padding: 1.5rem 2rem 1.5rem 0; }
  .line + .line {
    padding-left: 2rem;
    border-left: 1px solid var(--line-inv);
  }
}
.line h3 { color: #fff; }
.line__aka {
  margin: -0.25rem 0 0.75rem;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-2);
}
.line p:not(.line__aka) {
  margin: 0;
  color: rgba(240, 235, 227, 0.75);
}

/* Apply */
.apply {
  background: var(--paper);
  padding: 4rem 0 5rem;
  border-top: 2px solid var(--ink);
}
.apply__grid {
  display: grid;
  gap: 2.25rem;
}
@media (min-width: 900px) {
  .apply__grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
    align-items: start;
  }
}
.ticks {
  margin: 1.2rem 0;
  display: grid;
  gap: 0.45rem;
}
.ticks li {
  position: relative;
  padding-left: 1.25rem;
  font-weight: 600;
  color: var(--mute);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--red);
}
.apply__touch {
  display: grid;
  gap: 0.3rem;
  padding-top: 1.1rem;
  border-top: 2px solid var(--ink);
}
.apply__touch a {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.05rem;
}
.apply__touch a:hover { color: var(--red); }
.apply__touch p {
  color: var(--mute);
  font-size: 0.95rem;
  margin: 0.35rem 0 0.55rem;
}

.form {
  background: var(--ink);
  color: #fff;
  padding: 1.5rem 1.25rem;
  border-top: 4px solid var(--red);
}
@media (min-width: 600px) { .form { padding: 1.85rem 1.75rem; } }
.form label {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 235, 227, 0.6);
}
.form input, .form select, .form textarea {
  width: 100%;
  min-height: 2.9rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(240, 235, 227, 0.2);
  border-radius: 2px;
  background: rgba(240, 235, 227, 0.06);
  color: #fff;
  outline: none;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.form textarea { min-height: auto; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--red);
}
.form select option { color: var(--ink); }
.duo { display: grid; gap: 0.85rem; }
@media (min-width: 520px) { .duo { grid-template-columns: 1fr 1fr; } }
.form__note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgba(240, 235, 227, 0.5);
}
.form__note a { color: var(--red-2); }
.form__ok, .form__err {
  margin-top: 1rem;
  padding: 0.9rem;
  font-size: 0.95rem;
}
.form__ok {
  background: rgba(226, 54, 26, 0.15);
  border: 1px solid rgba(226, 54, 26, 0.4);
}
.form__ok strong { display: block; color: var(--red-2); margin-bottom: 0.25rem; }
.form__err {
  background: rgba(220, 80, 60, 0.15);
  border: 1px solid rgba(220, 80, 60, 0.4);
  color: #ffc9bf;
}

/* Footer */
.foot {
  background: var(--ink);
  color: rgba(240, 235, 227, 0.7);
  padding-top: 3rem;
  border-top: 4px solid var(--red);
}
.foot__grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .foot__grid { grid-template-columns: 1.3fr 0.8fr 1fr; }
}
.foot h3 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}
.foot ul { display: grid; gap: 0.4rem; }
.foot a { text-decoration: none; }
.foot a:hover { color: var(--red-2); }
.foot__tag { margin-top: 0.9rem; max-width: 20rem; font-size: 0.95rem; }
.foot__social { display: flex; gap: 1rem; margin-top: 1rem; }
.foot__social a {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.foot__legal {
  border-top: 1px solid var(--line-inv);
  padding: 1.1rem 0 1.35rem;
  font-size: 0.82rem;
}
.foot__legal p { margin: 0; }

.stick {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(35, 31, 32, 0.96);
  border-top: 2px solid var(--red);
  transition: transform 0.3s var(--ease);
  /* Default hidden — only show after hero/alert scroll away (see main.js) */
}
.stick.is-hidden {
  transform: translateY(110%);
  pointer-events: none;
  visibility: hidden;
}
@media (min-width: 768px) { .stick { display: none; } }

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}
/* mobile-hero-stack-v10 */
