/* Booking info (shared style with party-packages.css) */
.hr-bookinfo { list-style: none; padding: 0; margin: 0 auto; max-width: 720px; display: flex; flex-direction: column; gap: 16px; }
.hr-bookinfo li { position: relative; padding-left: 34px; font-size: 16.5px; line-height: 1.6; color: #3E463E; }
.hr-bookinfo li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B5462E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 8v4M12 16h.01'/%3E%3C/svg%3E");
}

/* ============================================================
   Historic Rivermill — celebrate.css
   Styles for the /celebrate/ hub page. Layers on home.css +
   the design system (colors_and_type.css + assets/site.css).
   ============================================================ */

/* Sub-page hero (shorter than the homepage hero) */
.hr-subhero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hr-subhero--tall { min-height: 82vh; }
.hr-subhero__media { position: absolute; inset: 0; z-index: 0; }
.hr-subhero__media img,
.hr-subhero__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
  animation: hr-kenburns 26s ease-in-out infinite alternate;
}
.hr-subhero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(8,6,4,0.82) 0%, rgba(8,6,4,0.34) 46%, rgba(8,6,4,0.30) 100%);
}
.hr-subhero__inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--hr-shell);
  margin: 0 auto;
  padding: 0 var(--hr-gutter) clamp(54px, 9vh, 96px);
  color: var(--rm-white);
}
.hr-subhero__eyebrow {
  font-family: var(--rm-font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  margin: 0 0 18px;
}
.hr-subhero h1 {
  font-family: var(--rm-font-heading);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--rm-white);
  max-width: 16ch;
  text-shadow: 0 2px 40px rgba(0,0,0,0.35);
}
.hr-subhero__sub {
  font-family: var(--rm-font-body);
  font-style: italic;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  max-width: 52ch;
  margin: 22px 0 0;
}

/* Quick jump chips */
.hr-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  justify-content: center;
}
.hr-jump a {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: var(--rm-white);
  border: 1px solid var(--rm-border);
  border-radius: 100px;
  font-family: var(--rm-font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--rm-text);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.hr-jump a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Occasion rows — alternating image / text */
.hr-occ {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
  scroll-margin-top: 120px;
  padding: 56px 0;
  border-bottom: 1px solid var(--rm-border);
}
.hr-occ:last-of-type { border-bottom: 0; }
.hr-occ__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--rm-border);
  box-shadow: var(--hr-shadow-card);
}
.hr-occ__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.hr-occ:hover .hr-occ__media img { transform: scale(1.04); }
.hr-occ--flip .hr-occ__media { order: 2; }
.hr-occ__num {
  font-family: var(--rm-font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}
.hr-occ__body h2 {
  font-family: var(--rm-font-heading);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  margin: 0 0 16px;
}
.hr-occ__body p {
  font-size: 18px;
  line-height: 1.75;
  color: #3E463E;
  margin: 0 0 14px;
  max-width: 52ch;
}
.hr-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; border-radius: 999px;
  font-size: 15px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: background 0.2s ease, transform 0.2s ease;
}
.hr-btn--primary { background: var(--accent, #B5462E); color: #fff; }
.hr-btn--primary:hover { background: var(--accent-hover, #953823); transform: translateY(-2px); }
.hr-occ__list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 22px;
  max-width: 52ch;
}
.hr-occ__list li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  color: #3E463E;
  line-height: 1.5;
}
.hr-occ__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hr-occ__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-family: var(--rm-font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.hr-occ__more svg { width: 15px; height: 15px; transition: transform 0.25s ease; }
.hr-occ__more:hover svg { transform: translateX(4px); }

/* Enquiry form */
.hr-enquiry { background: var(--rm-bg-footer); }
.hr-enquiry__card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--rm-white);
  border: 1px solid var(--rm-border);
  border-radius: 16px;
  box-shadow: var(--hr-shadow-card);
  padding: clamp(34px, 5vw, 60px);
}
.hr-enquiry__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}
.hr-field { display: flex; flex-direction: column; gap: 7px; }
.hr-field--full { grid-column: 1 / -1; }
.hr-field label {
  font-family: var(--rm-font-ui);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rm-text-light);
}
.hr-field input,
.hr-field select,
.hr-field textarea {
  padding: 13px 16px;
  font-family: var(--rm-font-ui);
  font-size: 16px;
  color: var(--rm-text);
  background: var(--rm-bg);
  border: 1px solid var(--rm-border);
  border-radius: 9px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.hr-field input:focus,
.hr-field select:focus,
.hr-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--rm-white);
}
.hr-field textarea { resize: vertical; min-height: 110px; }
.hr-enquiry__submit {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: var(--accent);
  color: #fff;
  font-family: var(--rm-font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hr-enquiry__submit:hover { background: var(--rm-black); transform: translateY(-1px); }
.hr-enquiry__ok {
  grid-column: 1 / -1;
  font-family: var(--rm-font-body);
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  min-height: 1.4em;
  margin: 4px 0 0;
}

@media (max-width: 860px) {
  .hr-occ { grid-template-columns: 1fr; gap: 26px; padding: 40px 0; }
  .hr-occ--flip .hr-occ__media { order: 0; }
  .hr-enquiry__grid { grid-template-columns: 1fr; }
}
