/* ============================================================
   Historic Rivermill — weddings.css
   The weddings hub and the wedding package landing pages.
   Layers on home.css (bands, rails, facts), celebrate.css
   (sub-hero, occasion rows, buttons) and party-packages.css
   (package cards).
   ============================================================ */

/* Package cards, wedding flavour: two across, a guest-count badge
   over the photo, and a "What's included" disclosure. */
.hr-wpkgs { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 920px) { .hr-wpkgs { grid-template-columns: 1fr; } }
.hr-wpkgs--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 920px) { .hr-wpkgs--3 { grid-template-columns: 1fr; } }
.hr-pkg__media { position: relative; }
.hr-pkg__cap--badge { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(255,255,255,.94); color: var(--rm-text); padding: 7px 13px; border-radius: 999px; box-shadow: 0 2px 10px rgba(0,0,0,.14); backdrop-filter: blur(4px); }
.hr-pkg__more { border-top: 1px solid rgba(0,0,0,.09); margin-top: 14px; }
.hr-pkg__more > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 0 0; font-family: var(--rm-font-ui); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.hr-pkg__more > summary::-webkit-details-marker { display: none; }
.hr-pkg__chev { width: 9px; height: 9px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translate(-2px,-2px); transition: transform .2s ease; }
.hr-pkg__more[open] .hr-pkg__chev { transform: rotate(225deg) translate(-2px,-2px); }
.hr-pkg__more > summary:hover { opacity: .75; }
.hr-pkg__more .hr-pkg__incl { margin-top: 12px; }

/* On its own landing page the package spreads into one wide card,
   photo beside the detail, inclusions open with no disclosure. */
.hr-pkg--wide { display: grid; grid-template-columns: 1fr 1fr; max-width: 1040px; margin: 44px auto 0; }
.hr-pkg--wide .hr-pkg__media { min-height: 380px; }
@media (max-width: 820px) { .hr-pkg--wide { grid-template-columns: 1fr; } .hr-pkg--wide .hr-pkg__media { min-height: 240px; } }

/* Catering: the three menu styles as cards. */
.hr-cater { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
@media (max-width: 820px) { .hr-cater { grid-template-columns: 1fr; } }
.hr-cater__card { background: var(--rm-white); border: 1px solid var(--rm-border); border-radius: 14px; box-shadow: var(--hr-shadow-card); padding: 26px 28px 30px; text-align: center; }
.hr-cater__style { font-family: var(--rm-font-heading); font-weight: 500; font-size: 24px; color: var(--rm-head); margin: 0 0 6px; }
.hr-cater__price { font-family: var(--rm-font-heading); font-size: 28px; color: var(--accent); margin: 0; }
.hr-cater__price small { font-size: 14px; color: #7A6A55; }
.hr-cater__desc { font-size: 15.5px; line-height: 1.55; color: #3E463E; margin: 12px 0 0; }

/* FAQ accordions, the card flavour the weddings pages use. */
.hr-faq { max-width: 820px; margin: 52px auto 0; display: grid; gap: 14px; }
.hr-faq details { background: #fff; border: 1px solid var(--rm-border-soft); border-radius: 14px; box-shadow: var(--hr-shadow-card); overflow: hidden; }
.hr-faq summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 24px; font-family: var(--rm-font-heading); font-weight: 500; font-size: 20px; color: var(--rm-head); }
.hr-faq summary::-webkit-details-marker { display: none; }
.hr-faq summary::after { content: "+"; font-family: var(--rm-font-heading); font-size: 26px; line-height: 1; color: var(--accent); flex: none; transition: transform .25s ease; }
.hr-faq details[open] summary::after { transform: rotate(45deg); }
.hr-faq details p { margin: 0; padding: 0 24px 22px; font-family: var(--rm-font-body); font-size: 16.5px; line-height: 1.65; color: var(--rm-text-light); }

/* Closing band: the tour and enquiry buttons side by side. */
.hr-wed-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 26px; }
.hr-wed-cta__note { font-size: 16px; line-height: 1.6; color: #5a625a; margin: 22px auto 0; max-width: 60ch; text-align: center; }
.hr-wed-cta__note a { color: var(--accent); }
