/* ============================================================
   Historic Rivermill — host-event.css
   Styles for the "Host an Event With Us" page (for event &
   community organisers). Layers on home.css + celebrate.css
   (sub-hero + enquiry form) + the design system.
   ============================================================ */

/* Sub-hero clearance for the fixed header on this page */
.hr-subhero { min-height: 66vh; }
.hr-subhero__inner { padding-top: 140px; }

/* ============================================================
   STAT STRIP — quick reasons to host here
   ============================================================ */
.hr-reasons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 38px auto 0;
  max-width: 980px;
}
.hr-reason {
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  padding: 22px 20px;
  background: var(--rm-white);
  border: 1px solid var(--rm-border);
  border-radius: 14px;
  box-shadow: var(--hr-shadow-card);
}
.hr-reason__num {
  font-family: var(--rm-font-heading);
  font-size: 34px;
  line-height: 1;
  color: var(--accent);
}
.hr-reason__lbl {
  margin-top: 8px;
  font-family: var(--rm-font-body);
  font-size: 15px;
  line-height: 1.5;
  color: #3E463E;
}

/* ============================================================
   EVENT TYPES — icon cards
   ============================================================ */
.hr-evtypes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.hr-evtype {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px 30px 32px;
  background: var(--rm-white);
  border: 1px solid var(--rm-border);
  border-radius: 16px;
  box-shadow: var(--hr-shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hr-evtype:hover { transform: translateY(-5px); box-shadow: var(--hr-shadow-card-hover); }
.hr-evtype__icon {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--accent-tint);
}
.hr-evtype__icon svg { width: 27px; height: 27px; fill: var(--accent); }
.hr-evtype h3 {
  font-family: var(--rm-font-heading);
  font-weight: 500;
  font-size: 23px;
  line-height: 1.12;
  color: var(--rm-head);
  margin: 4px 0 0;
}
.hr-evtype p {
  font-family: var(--rm-font-body);
  font-size: 16px;
  line-height: 1.62;
  color: var(--rm-text-light);
  margin: 0;
}

/* ============================================================
   THE SETTING — split band with a checklist
   ============================================================ */
.hr-setting {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 480px;
}
.hr-setting__media { position: relative; overflow: hidden; background: var(--rm-border); }
.hr-setting__media img { width: 100%; height: 100%; object-fit: cover; }
.hr-setting__body {
  background: #F4EEE7;
  padding: clamp(44px, 5.5vw, 84px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hr-setting__body h2 {
  font-family: var(--rm-font-heading);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1;
  color: var(--rm-head);
  margin: 14px 0 22px;
}
.hr-setting__list {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hr-setting__list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-family: var(--rm-font-body);
  font-size: 17px;
  line-height: 1.5;
  color: #3E463E;
}
.hr-setting__list svg {
  width: 22px; height: 22px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   HOW IT WORKS — numbered steps
   ============================================================ */
.hr-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
  counter-reset: step;
}
.hr-step {
  position: relative;
  padding: 32px 26px 30px;
  background: var(--rm-white);
  border: 1px solid var(--rm-border);
  border-radius: 14px;
  box-shadow: var(--hr-shadow-card);
}
.hr-step__n {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--rm-font-heading);
  font-size: 21px;
  line-height: 1;
  margin-bottom: 18px;
}
.hr-step h3 {
  font-family: var(--rm-font-heading);
  font-weight: 500;
  font-size: 21px;
  color: var(--rm-head);
  margin: 0 0 8px;
}
.hr-step p {
  font-family: var(--rm-font-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--rm-text-light);
  margin: 0;
}

/* ============================================================
   ALREADY HOSTING — small reassurance line
   ============================================================ */
.hr-already {
  margin-top: 44px;
  text-align: center;
  font-family: var(--rm-font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--rm-text-light);
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}
.hr-already strong { color: var(--rm-head); font-weight: 600; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hr-evtypes { grid-template-columns: repeat(2, 1fr); }
  .hr-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hr-setting { grid-template-columns: 1fr; }
  .hr-setting__media { min-height: 300px; }
}
@media (max-width: 600px) {
  .hr-evtypes { grid-template-columns: 1fr; }
  .hr-steps { grid-template-columns: 1fr; }
}
