/* adopt.css — Adopt-a-Foxhole program styles */

/* ============================================================ */
/* HERO */
/* ============================================================ */
.adopt-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.adopt-hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.adopt-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.adopt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,13,13,0.25) 0%, rgba(13,13,13,0.85) 65%, rgba(13,13,13,0.97) 100%);
}
.adopt-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 48px 72px;
  max-width: 900px;
}
.adopt-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.adopt-eyebrow-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-light, #6B7D33);
}
.adopt-eyebrow-sep { color: #444; font-size: 12px; }
.adopt-hero-headline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #F0EDE6;
  margin: 0 0 20px;
}
.adopt-hero-sub {
  font-size: 17px;
  color: #A89E83;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 32px;
}
.adopt-hero-counters {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 4px;
}
.adopt-counter {
  text-align: center;
  padding: 12px 28px;
  background: rgba(26,26,26,0.8);
  border: 1px solid #2a2a2a;
}
.adopt-counter-num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #6B7D33;
  line-height: 1;
}
.adopt-counter-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
  margin-top: 4px;
}
.adopt-counter-divider {
  width: 1px;
  height: 48px;
  background: #2a2a2a;
}
.adopt-hero-cta {
  display: inline-block;
  background: var(--orange, #C4621A);
  color: #F0EDE6;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  transition: background 0.2s;
}
.adopt-hero-cta:hover { background: #D4721A; }

/* ============================================================ */
/* PAGE SECTIONS */
/* ============================================================ */
.adopt-section {
  padding: 80px 48px;
  background: #0D0D0D;
}
.adopt-section:nth-child(even) { background: #111; }
.adopt-section-inner {
  max-width: 960px;
  margin: 0 auto;
}
.adopt-section-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #6B7D33;
  margin-bottom: 12px;
}
.adopt-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #F0EDE6;
  margin: 0 0 12px;
}
.adopt-section-sub {
  font-size: 15px;
  color: #A89E83;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 40px;
}
.adopt-page-wrap { min-height: 60vh; }

/* ============================================================ */
/* FOUNDER NOTE */
/* ============================================================ */
.founder-note-card {
  background: #111;
  border: 1px solid #2a2a2a;
  border-left: 3px solid #6B7D33;
  padding: 40px 40px 32px;
  max-width: 720px;
  position: relative;
}
.founder-note-quote-mark {
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 0.5;
  color: #2a2a2a;
  position: absolute;
  top: 28px;
  left: 32px;
}
.founder-note-body {
  font-size: 15px;
  color: #A89E83;
  line-height: 1.75;
  margin-bottom: 16px;
  padding-left: 0;
}
.founder-note-sig {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #6B7D33;
  margin-top: 24px;
  border-top: 1px solid #2a2a2a;
  padding-top: 16px;
}

/* ============================================================ */
/* HOW IT WORKS */
/* ============================================================ */
.adopt-how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
}
.adopt-how-step {
  background: #111;
  padding: 32px 28px;
  border: 1px solid #1a1a1a;
  transition: border-color 0.2s;
}
.adopt-how-step:hover { border-color: #4A5D23; }
.adopt-how-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #6B7D33;
  margin-bottom: 12px;
}
.adopt-how-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #F0EDE6;
  margin: 0 0 10px;
}
.adopt-how-body {
  font-size: 14px;
  color: #A89E83;
  line-height: 1.65;
  margin: 0;
}

/* ============================================================ */
/* TIERS */
/* ============================================================ */
.adopt-tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  margin-bottom: 32px;
}
.adopt-tier-card {
  background: #111;
  border: 1px solid #2a2a2a;
  padding: 36px 28px 28px;
  position: relative;
  transition: border-color 0.2s;
}
.adopt-tier-card:hover { border-color: #4A5D23; }
.adopt-tier-card--featured {
  border-color: #4A5D23;
}
.adopt-tier-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: #4A5D23;
  color: #F0EDE6;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.adopt-tier-bags {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6B7D33;
  margin-bottom: 8px;
}
.adopt-tier-label {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #F0EDE6;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.adopt-tier-price {
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #F0EDE6;
  line-height: 1;
  margin-bottom: 12px;
}
.adopt-tier-desc {
  font-size: 13px;
  color: #A89E83;
  line-height: 1.55;
  margin-bottom: 24px;
  min-height: 40px;
}
.adopt-tier-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: transparent;
  border: 1px solid #4A5D23;
  color: #F0EDE6;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.adopt-tier-btn:hover { background: #4A5D23; border-color: #6B7D33; }
.adopt-tier-card--featured .adopt-tier-btn {
  background: #4A5D23;
  border-color: #6B7D33;
}
.adopt-tier-card--featured .adopt-tier-btn:hover { background: #6B7D33; }

/* Custom amount row */
.adopt-custom {
  margin-top: 24px;
  padding: 24px;
  background: #111;
  border: 1px solid #2a2a2a;
}
.adopt-custom-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 12px;
}
.adopt-custom-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.adopt-custom-input {
  background: #0D0D0D;
  border: 1px solid #333;
  color: #F0EDE6;
  padding: 10px 14px;
  font-size: 15px;
  font-family: 'DM Mono', monospace;
  width: 120px;
}
.adopt-custom-hint {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: #666;
  letter-spacing: 0.08em;
}
.adopt-custom-btn {
  background: transparent;
  border: 1px solid #4A5D23;
  color: #F0EDE6;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.adopt-custom-btn:hover { background: #4A5D23; }

/* ============================================================ */
/* MODAL */
/* ============================================================ */
.adopt-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.adopt-modal {
  background: #111;
  border: 1px solid #2a2a2a;
  padding: 40px;
  width: 100%;
  max-width: 520px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.adopt-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #666;
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
}
.adopt-modal-close:hover { color: #F0EDE6; }
.adopt-modal-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  border-bottom: 1px solid #2a2a2a;
  padding-bottom: 16px;
}
.adopt-modal-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #F0EDE6;
}
.adopt-modal-price {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #6B7D33;
}
.adopt-modal-submit {
  width: 100%;
  background: #C4621A;
  border: none;
  color: #F0EDE6;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.adopt-modal-submit:hover { background: #D4721A; }
.adopt-modal-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.adopt-modal-error {
  background: #250a0a;
  border: 1px solid #C45A1A;
  color: #C4621A;
  padding: 10px 14px;
  font-size: 13px;
  font-family: 'DM Mono', monospace;
  margin-top: 12px;
}

/* ============================================================ */
/* FORM ELEMENTS */
/* ============================================================ */
.adopt-form-group { margin-bottom: 20px; }
.adopt-form-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #A89E83;
  margin-bottom: 6px;
}
.adopt-form-req { color: #C4621A; }
.adopt-form-input, .adopt-form-select {
  width: 100%;
  background: #0D0D0D;
  border: 1px solid #2a2a2a;
  color: #F0EDE6;
  padding: 11px 14px;
  font-size: 14px;
  font-family: 'Source Sans 3', sans-serif;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.adopt-form-input:focus, .adopt-form-select:focus {
  outline: none;
  border-color: #4A5D23;
}
.adopt-form-textarea {
  width: 100%;
  background: #0D0D0D;
  border: 1px solid #2a2a2a;
  color: #F0EDE6;
  padding: 11px 14px;
  font-size: 14px;
  font-family: 'Source Sans 3', sans-serif;
  resize: vertical;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.adopt-form-textarea:focus { outline: none; border-color: #4A5D23; }
.adopt-form-hint {
  display: block;
  font-size: 11px;
  color: #555;
  margin-top: 4px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.05em;
}
.adopt-form-group--check { display: flex; align-items: flex-start; gap: 10px; }
.adopt-check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #A89E83;
  cursor: pointer;
}
.adopt-check-input { accent-color: #6B7D33; width: 16px; height: 16px; }
.adopt-form-error {
  background: #250a0a;
  border: 1px solid #C45A1A;
  color: #C4621A;
  padding: 12px 16px;
  font-size: 13px;
  font-family: 'DM Mono', monospace;
  margin-bottom: 24px;
}

/* ============================================================ */
/* REQUEST FORM PAGE */
/* ============================================================ */
.adopt-back-link {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #666;
  text-decoration: none;
  margin-bottom: 24px;
}
.adopt-back-link:hover { color: #A89E83; }
.adopt-request-form {
  max-width: 680px;
  margin-top: 32px;
}
.adopt-form-fieldset {
  border: 1px solid #2a2a2a;
  padding: 28px 24px 12px;
  margin-bottom: 24px;
}
.adopt-form-legend {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6B7D33;
  margin-bottom: 20px;
}
.adopt-form-sub {
  font-size: 12px;
  color: #555;
  font-family: 'DM Mono', monospace;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.adopt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.adopt-form-group--zip { max-width: 120px; }
.adopt-request-submit {
  background: #C4621A;
  border: none;
  color: #F0EDE6;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.adopt-request-submit:hover { background: #D4721A; }

/* ============================================================ */
/* SUCCESS STATES */
/* ============================================================ */
.adopt-request-success, .adopt-success-page {
  text-align: center;
  padding: 60px 24px;
}
.adopt-success-icon {
  font-size: 48px;
  color: #6B7D33;
  margin-bottom: 24px;
}
.adopt-success-note {
  background: #111;
  border: 1px solid #2a2a2a;
  border-left: 3px solid #6B7D33;
  padding: 16px 20px;
  max-width: 480px;
  margin: 24px auto;
  text-align: left;
}
.adopt-success-note-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 6px;
}
.adopt-success-note-body {
  font-style: italic;
  color: #D4C5A9;
  font-size: 14px;
  line-height: 1.6;
}
.adopt-success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.adopt-success-back {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #A89E83;
  text-decoration: none;
  padding: 12px 20px;
  border: 1px solid #2a2a2a;
}
.adopt-success-back:hover { border-color: #4A5D23; color: #F0EDE6; }

/* ============================================================ */
/* SPONSOR WALL */
/* ============================================================ */
.adopt-wall-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.adopt-wall-entry {
  background: #111;
  border: 1px solid #2a2a2a;
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
}
.adopt-wall-name {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: #F0EDE6;
  letter-spacing: 0.05em;
}
.adopt-wall-city {
  font-size: 11px;
  color: #666;
  margin-top: 2px;
  font-family: 'DM Mono', monospace;
}

/* ============================================================ */
/* REQUEST CTA BANNER */
/* ============================================================ */
.adopt-request-cta { background: #111; }
.adopt-request-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.adopt-request-cta-text .adopt-section-sub { margin-bottom: 0; }
.adopt-request-cta-btn {
  display: inline-block;
  background: transparent;
  border: 1px solid #4A5D23;
  color: #F0EDE6;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  white-space: nowrap;
  transition: background 0.2s;
}
.adopt-request-cta-btn:hover { background: #4A5D23; }

/* ============================================================ */
/* HOMEPAGE BANNER (adopt-banner.ejs partial) */
/* ============================================================ */
.adopt-banner-section {
  background: #0a1a0a;
  border-top: 1px solid #1a2a1a;
  border-bottom: 1px solid #1a2a1a;
  padding: 36px 48px;
}
.adopt-banner-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.adopt-banner-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.adopt-banner-icon {
  font-size: 28px;
  flex-shrink: 0;
}
.adopt-banner-text {
  display: flex;
  flex-direction: column;
}
.adopt-banner-headline {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #F0EDE6;
  margin: 0 0 4px;
}
.adopt-banner-sub {
  font-size: 13px;
  color: #A89E83;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.04em;
}
.adopt-banner-sub span { color: #6B7D33; font-weight: bold; }
.adopt-banner-cta {
  display: inline-block;
  background: #4A5D23;
  color: #F0EDE6;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 24px;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.adopt-banner-cta:hover { background: #6B7D33; }

/* ============================================================ */
/* RESPONSIVE */
/* ============================================================ */
@media (max-width: 768px) {
  .adopt-hero-content { padding: 0 24px 48px; }
  .adopt-section { padding: 60px 24px; }
  .adopt-how-grid { grid-template-columns: 1fr; }
  .adopt-tiers-grid { grid-template-columns: 1fr; }
  .adopt-form-row { grid-template-columns: 1fr; }
  .adopt-request-cta-inner { flex-direction: column; align-items: flex-start; }
  .adopt-banner-section { padding: 28px 24px; }
  .adopt-banner-inner { flex-direction: column; align-items: flex-start; }
}
