/* ============================================================
   Hold Your Horses — shared stylesheet
   Built from Notion wireframe v8 (synced May 18, 2026).
   Brown-dominant palette. Sancreek headings + Lora body.
   Mobile responsiveness uses intrinsic CSS (auto-fit grids,
   clamp, flex-wrap) so there are NO @media queries.
   ============================================================ */

:root {
  --brown: #56473a;   /* nav, hero, all body sections, CTA band bg */
  --sand:  #f2d8a4;   /* body text, headings, button bg, dividers  */
  --white: #fcfeff;   /* form inputs, contact cards, placeholders   */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Lora', Georgia, serif;
  line-height: 1.6;
  color: var(--sand);
  background: var(--brown);
}

/* ---- Typography ------------------------------------------- */
h1, h2, h3, .hyh-poem-title {
  font-family: 'Sancreek', 'Georgia', serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}
h1 { font-size: 25px; line-height: 1.2; color: var(--sand); margin: 0 0 12px; }
h2 { font-size: 25px; color: var(--sand); margin: 0 0 12px; }
h3 { font-size: 25px; color: var(--sand); margin: 0 0 8px; letter-spacing: 0.04em; }
p  { font-size: 16px; line-height: 1.7; color: var(--sand); margin: 0 0 10px; }

/* ---- Page shell ------------------------------------------- */
.hyh-site { background: var(--brown); }
.hyh-inner { max-width: 1000px; margin: 0 auto; }   /* centres content on wide screens */

/* ---- Navigation (wraps on small screens, no media query) -- */
.hyh-site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px 24px;
  padding: 24px clamp(16px, 4vw, 28px);
  background: var(--brown);
  border-bottom: 1px solid var(--sand);
}
.hyh-logo-img {
  height: clamp(130px, 28vw, 280px);   /* 230px on desktop, scales down on mobile */
  width: auto;
  display: block;
}
.hyh-site-nav-links {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(8px, 2.5vw, 24px);
  font-size: clamp(12.5px, 3.2vw, 17px);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hyh-site-nav-links a {
  white-space: nowrap;
  color: var(--sand);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.hyh-site-nav-links a:hover { opacity: 1; }
.hyh-site-nav-links a.hyh-active-page {
  opacity: 1;
  text-decoration: underline;
}

/* ---- Sections --------------------------------------------- */
.hyh-section {
  padding: 40px clamp(16px, 5vw, 24px);
  background: var(--brown);
  color: var(--sand);
  border-top: 1px solid rgba(242, 216, 164, 0.2);
}
.hyh-section p { opacity: 0.9; }

/* ---- Hero ------------------------------------------------- */
.hyh-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 24px;
  align-items: center;
  padding: 40px clamp(16px, 5vw, 24px);
  background: var(--brown);
}
.hyh-hero-full { padding: 40px clamp(16px, 5vw, 24px); background: var(--brown); }
.hyh-hero p { font-size: 16px; }

/* ---- Buttons ---------------------------------------------- */
.hyh-cta-btn {
  display: inline-block;
  background: var(--sand);
  color: var(--brown);
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'Sancreek', 'Georgia', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, filter 0.12s ease;
}
.hyh-cta-btn:hover { filter: brightness(0.95); transform: translateY(-1px); }

/* ---- CTA band --------------------------------------------- */
.hyh-cta-band {
  background: var(--brown);
  color: var(--sand);
  padding: 40px clamp(16px, 5vw, 24px);
  text-align: center;
  border-top: 2px solid var(--sand);
}
.hyh-cta-band h2 { font-style: italic; margin-bottom: 14px; }
.hyh-cta-band p  { opacity: 0.8; margin-bottom: 16px; }

/* ---- Placeholders (replaced when Katie's assets arrive) ---- */
.hyh-img-placeholder {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  color: var(--brown);
  padding: 40px 12px;
}
.hyh-video-placeholder {
  background: #1a1a1a;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  padding: 50px 20px;
  border-radius: 6px;
}
.hyh-video-placeholder .hyh-play-icon { font-size: 32px; margin-bottom: 8px; }

/* ---- Embedded videos (responsive 16:9) -------------------- */
.hyh-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--sand);
}
.hyh-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- About: story split (flex wraps to stack on mobile) --- */
.hyh-split-30-70 {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.hyh-circle-stack {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.hyh-split-30-70 > div:last-child { flex: 3 1 280px; }
.hyh-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  color: var(--brown);
  padding: 8px;
  object-fit: cover;   /* makes <img class="hyh-circle"> fill the circle cleanly */
  object-position: center top;   /* bias crop toward the top so heads/faces stay in frame */
  overflow: hidden;
}

/* ---- Real photos ------------------------------------------ */
.hyh-hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  border: 1px solid var(--sand);
}
.hyh-img-full {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  border: 1px solid var(--sand);
  margin-bottom: 20px;
}

/* ---- Contact form + cards --------------------------------- */
.hyh-form { display: grid; gap: 12px; }
.hyh-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 12px;
}
.hyh-input {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: 'Lora', Georgia, serif;
  font-size: 14px;
  color: var(--brown);
  width: 100%;
}
.hyh-input.textarea { min-height: 100px; resize: vertical; }

.hyh-contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 12px;
  margin-top: 24px;
}
.hyh-contact-item {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 6px;
  padding: 14px;
}
.hyh-contact-label {
  font-size: 10px;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  opacity: 0.7;
}
.hyh-contact-value { font-size: 13px; color: var(--brown); font-weight: 600; }

/* ---- Poem ------------------------------------------------- */
.hyh-poem-full {
  font-style: italic;
  color: var(--sand);
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}
.hyh-poem-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--sand);
  font-style: normal;
  letter-spacing: 0.1em;
}
.hyh-attribution {
  font-size: 11px;
  color: var(--sand);
  font-style: normal;
  margin-top: 12px;
  opacity: 0.7;
}
