/* iHydroseed "Under Construction" treatment — site-wide stripe + character helpers.
   Owns its own variables so it never inherits a stale --blue / --green and breaks. */

:root {
  --ihy-cone:      #ffb71a;
  --ihy-cone-dark: #b87600;
  --ihy-stripe:    #1b1b1b;
  --ihy-vest:      #d9f02b;
}

/* ===== Site-wide stripe at the very top of every page ===== */
.ihy-construction-stripe {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-family: Lato, Arial, sans-serif;
  border-bottom: 3px solid #000;
  position: relative;
  z-index: 30;
}
.ihy-construction-stripe .stripe-tape {
  flex: 0 0 64px;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--ihy-cone) 0 14px,
    var(--ihy-stripe) 14px 28px
  );
}
.ihy-construction-stripe .stripe-msg {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}
.ihy-construction-stripe .stripe-msg strong {
  color: var(--ihy-cone);
  letter-spacing: .03em;
}
.ihy-construction-stripe .stripe-msg em {
  font-style: normal;
  color: #d8d8d8;
  font-weight: 400;
}
.ihy-construction-stripe:hover .stripe-msg strong { text-decoration: underline; }
@media (max-width: 640px) {
  .ihy-construction-stripe .stripe-tape { flex-basis: 28px; }
  .ihy-construction-stripe .stripe-msg  { padding: 8px 10px; font-size: 12px; }
  .ihy-construction-stripe .stripe-msg em { display: none; }
}

/* ===== "Pardon our dust" homepage hero callout ===== */
.ihy-dust-callout {
  position: relative;
  background: #fffaf0;
  border: 2px solid #1b1b1b;
  border-radius: 22px;
  padding: 0;
  margin: 36px auto 0;
  max-width: 1180px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(5,43,95,.12);
}
.ihy-dust-callout::before,
.ihy-dust-callout::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 12px;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--ihy-cone) 0 12px,
    var(--ihy-stripe) 12px 24px
  );
}
.ihy-dust-callout::before { top: 0; }
.ihy-dust-callout::after  { bottom: 0; }
.ihy-dust-callout .dust-grid {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 0;
  align-items: stretch;
}
.ihy-dust-callout .dust-photo {
  background: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px 18px 0;
  border-right: 2px dashed #1b1b1b;
}
.ihy-dust-callout .dust-photo img {
  display: block;
  max-width: 100%;
  height: auto;
  /* Crop the character turnaround to the "Front" pose on the left side */
  object-fit: cover;
  object-position: 8% center;
  aspect-ratio: 3/4;
  width: 100%;
}
.ihy-dust-callout .dust-copy {
  padding: 28px 30px 30px;
}
.ihy-dust-callout .dust-eyebrow {
  display: inline-block;
  background: #1b1b1b;
  color: var(--ihy-cone);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.ihy-dust-callout h3 {
  font-family: Fraunces, Georgia, serif;
  color: #052b5f;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  margin: 0 0 12px;
}
.ihy-dust-callout p {
  color: #3a4660;
  font-size: 16px;
  margin: 0 0 10px;
}
.ihy-dust-callout .dust-quote {
  margin-top: 18px;
  padding: 14px 16px;
  background: #fff;
  border-left: 4px solid var(--ihy-cone);
  border-radius: 6px;
  font-style: italic;
  color: #1b1b1b;
  font-size: 15px;
}
.ihy-dust-callout .dust-quote strong { font-style: normal; display: block; margin-top: 6px; font-size: 12px; color: #5f6f86; letter-spacing: .05em; text-transform: uppercase; }
@media (max-width: 760px) {
  .ihy-dust-callout .dust-grid { grid-template-columns: 1fr; }
  .ihy-dust-callout .dust-photo { border-right: 0; border-bottom: 2px dashed #1b1b1b; padding: 18px 18px 0; }
  .ihy-dust-callout .dust-photo img { aspect-ratio: 16/9; object-position: 8% 22%; }
  .ihy-dust-callout .dust-copy { padding: 22px 22px 24px; }
}

/* ===== Generic character figure block (used on inner pages) ===== */
.ihy-char {
  display: flex;
  gap: 22px;
  align-items: center;
  background: #fff;
  border: 1px solid #d9e4f2;
  border-radius: 16px;
  padding: 20px;
  margin: 28px 0;
  box-shadow: 0 12px 30px rgba(5,43,95,.07);
}
.ihy-char img {
  flex: 0 0 auto;
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  border: 2px solid #f0f0f0;
  background: #fff;
}
.ihy-char .char-body { flex: 1 1 auto; min-width: 0; }
.ihy-char .char-body h4 {
  font-family: Fraunces, Georgia, serif;
  color: #052b5f;
  font-size: 20px;
  margin: 0 0 6px;
}
.ihy-char .char-body p { color: #5f6f86; margin: 0; font-size: 15px; }
.ihy-char.flip { flex-direction: row-reverse; }
@media (max-width: 640px) {
  .ihy-char { flex-direction: column; text-align: center; }
  .ihy-char.flip { flex-direction: column; }
  .ihy-char img { width: 100%; max-width: 320px; height: auto; aspect-ratio: 1/1; }
}

/* Image-only feature variant: full-width responsive picture, no card chrome */
.ihy-feature-img {
  display: block;
  width: 100%;
  max-width: 720px;
  margin: 28px auto;
  border-radius: 16px;
  border: 1px solid #d9e4f2;
  box-shadow: 0 18px 44px rgba(5,43,95,.10);
}

/* === Character placements added 2026-06-25 === */

/* Small inline portrait for sponsor strip */
.ihy-sponsor-portrait {
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 2px solid #d9e4f2;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(5,43,95,.12));
}

/* Dusty endorsement badge inside path card */
.ihy-dusty-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 14px;
  background: #fffdf5;
  border: 1px solid #e8d98a;
  border-radius: 10px;
}
.ihy-dusty-badge img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  flex-shrink: 0;
}
.ihy-dusty-badge span {
  font-size: 13px;
  color: #5f6f86;
  font-style: italic;
}

/* Small character image above CTA section */
.ihy-cta-char {
  display: block;
  width: 100px;
  height: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 8px 16px rgba(5,43,95,.15));
}

/* Dusty "Wanted List" teaser section */
.ihy-dusty-teaser {
  background: #fffdf5;
  border-top: 1px solid #e8d98a;
  border-bottom: 1px solid #e8d98a;
  padding: 48px 0;
}
.ihy-dusty-teaser .ihy-char {
  background: #fff8e6;
  border-color: #e8d98a;
  max-width: 820px;
  margin: 0 auto;
}
.ihy-dusty-teaser .ihy-char img {
  border-color: #e8d98a;
}
.ihy-dusty-teaser .char-body h4 {
  font-family: Fraunces, Georgia, serif;
  color: #6b4400;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.15;
  margin: 0 0 8px;
}
.ihy-dusty-teaser .char-body p {
  color: #5f6f86;
  margin: 0 0 16px;
}

@media (max-width: 640px) {
  .ihy-cta-char { width: 80px; }
}
