/* Heavenly Rosaries — marble, gold, prayer card. */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

:root {
    --hr-ink: #2b2118;
    --hr-ink-soft: #4a3b2e;
    --hr-muted: #7a6a5a;
    --hr-gold: #b0894f;
    --hr-gold-deep: #8d6b38;
    --hr-gold-soft: #d4bf93;
    --hr-blush: #c9a39a;
    --hr-cream: #f4ebe0;
    --hr-paper: #faf6ee;
    --hr-foam: #fffdf8;
    --hr-rule: color-mix(in srgb, var(--hr-ink) 12%, transparent);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.hr-body {
    margin: 0;
    font-family: Outfit, ui-sans-serif, system-ui, sans-serif;
    color: var(--hr-ink);
    background-color: var(--hr-cream);
    background-image:
        radial-gradient(circle at 18% 12%, color-mix(in srgb, var(--hr-gold-soft) 28%, transparent), transparent 36%),
        radial-gradient(circle at 88% 0%, color-mix(in srgb, var(--hr-blush) 18%, transparent), transparent 32%),
        linear-gradient(180deg, color-mix(in srgb, white 40%, transparent), transparent 18%);
    line-height: 1.55;
}

.hr-body img {
    max-width: 100%;
    display: block;
}

.hr-body a {
    color: inherit;
}

.hr-body a:focus-visible,
.hr-body button:focus-visible,
.hr-body input:focus-visible,
.hr-body select:focus-visible,
.hr-body textarea:focus-visible {
    outline: 2px solid var(--hr-gold);
    outline-offset: 3px;
}

.hr-skip {
    position: absolute;
    left: 1rem;
    top: -4rem;
    background: var(--hr-ink);
    color: var(--hr-foam);
    padding: 0.5rem 0.8rem;
    z-index: 40;
}

.hr-skip:focus {
    top: 0.6rem;
}

.hr-ticker {
    margin: 0;
    padding: 0.45rem 1rem;
    background: var(--hr-ink);
    color: var(--hr-cream);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem 0.9rem;
}

.hr-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem clamp(1rem, 5vw, 4rem);
    position: sticky;
    top: 0;
    z-index: 20;
    background: color-mix(in srgb, var(--hr-paper) 90%, white);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--hr-gold-soft);
}

.hr-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}

.hr-brand span {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.hr-brand img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--hr-foam);
}

.hr-brand strong {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.7rem;
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.02em;
}

.hr-brand em {
    font-style: normal;
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--hr-gold-deep);
    font-weight: 700;
    margin-top: 0.12rem;
}

.hr-nav {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    font-size: 0.94rem;
}

.hr-nav a {
    text-decoration: none;
    color: var(--hr-muted);
    padding: 0.15rem 0;
    border-bottom: 1px solid transparent;
}

.hr-nav a:hover,
.hr-nav a[aria-current="page"] {
    color: var(--hr-ink);
}

.hr-nav a[aria-current="page"] {
    border-bottom-color: var(--hr-gold);
}

.hr-nav-cta {
    color: var(--hr-gold-deep) !important;
    font-weight: 700;
}

.hr-nav-toggle {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--hr-rule);
    background: transparent;
    border-radius: 999px;
}

.hr-nav-toggle span:not(.sr-only) {
    display: block;
    width: 1rem;
    height: 1.5px;
    margin: 0.28rem auto;
    background: var(--hr-ink);
}

.hr-main {
    padding-bottom: 5rem;
}

.hr-kicker,
.hr-section-label,
.hr-kind {
    margin: 0 0 0.45rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--hr-gold-deep);
}

h1, h2, h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.12;
}

h1 {
    margin: 0 0 0.7rem;
    font-size: clamp(2.6rem, 7vw, 4.6rem);
}

h1 em {
    font-style: italic;
    color: var(--hr-gold-deep);
}

h2 {
    margin: 0 0 0.8rem;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

h3 {
    margin: 0 0 0.35rem;
    font-size: 1.45rem;
}

.hr-lede,
.hr-hero-copy p,
.hr-intro p,
.hr-split p,
.hr-note p {
    color: var(--hr-ink-soft);
}

.hr-lede {
    font-size: 1.08rem;
    max-width: 40rem;
}

.hr-hero,
.hr-intro,
.hr-prices,
.hr-featured,
.hr-split,
.hr-steps,
.hr-page-hero,
.hr-gallery,
.hr-pin-types,
.hr-addons,
.hr-charms,
.hr-note,
.hr-order {
    width: min(1120px, calc(100% - 2rem));
    margin-left: auto;
    margin-right: auto;
}

.hr-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
    padding: 2.4rem 0 3rem;
}

.hr-hero-copy .hr-lede {
    margin-bottom: 1.1rem;
}

.hr-hours-chip {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border: 1px solid var(--hr-gold-soft);
    background: var(--hr-foam);
    font-size: 0.88rem;
    margin: 0 0 1.2rem;
}

.hr-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.hr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0.74rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
}

.hr-btn-solid {
    background: var(--hr-gold-deep);
    color: var(--hr-foam);
}

.hr-btn-solid:hover {
    background: color-mix(in srgb, var(--hr-gold-deep) 82%, black);
}

.hr-btn-ghost {
    border-color: var(--hr-gold);
    color: var(--hr-ink);
    background: transparent;
}

.hr-btn-ink {
    background: var(--hr-ink);
    color: var(--hr-foam);
}

.hr-body a.hr-btn-solid,
.hr-body a.hr-btn-ink {
    color: var(--hr-foam);
}

.hr-hero-frame {
    margin: 0;
    background: var(--hr-paper);
    padding: 0.7rem;
    border: 1px solid var(--hr-gold-soft);
}

.hr-hero-frame img,
.hr-split figure img,
.hr-featured-list img,
.hr-product-grid img,
.hr-pin-grid img,
.hr-chart img,
.hr-inset-photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hr-hero-frame figcaption,
.hr-chart span {
    display: block;
    padding: 0.55rem 0.2rem 0.15rem;
    font-size: 0.82rem;
    color: var(--hr-muted);
}

.hr-intro,
.hr-prices,
.hr-featured,
.hr-split,
.hr-steps,
.hr-gallery,
.hr-pin-types,
.hr-addons,
.hr-charms,
.hr-note,
.hr-order {
    padding: 2.6rem 0 1.2rem;
}

.hr-intro-grid,
.hr-split,
.hr-order {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(1.4rem, 4vw, 3rem);
    align-items: start;
}

.hr-split-reverse {
    grid-template-columns: 0.85fr 1.15fr;
}

.hr-split-reverse figure {
    order: 2;
}

.hr-factsheet,
.hr-price-grid li,
.hr-note,
.hr-form {
    background: var(--hr-foam);
    border: 1px solid var(--hr-rule);
}

.hr-factsheet {
    padding: 1.1rem 1.2rem;
}

.hr-factsheet p {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 0;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--hr-rule);
    font-size: 0.95rem;
}

.hr-factsheet p:last-child {
    border-bottom: 0;
}

.hr-factsheet span {
    color: var(--hr-muted);
}

.hr-intro-link a,
.hr-footer a,
.hr-form a {
    color: var(--hr-gold-deep);
}

.hr-section-head {
    max-width: 40rem;
    margin-bottom: 1.5rem;
}

.hr-section-head p {
    margin: 0;
    color: var(--hr-muted);
}

.hr-price-grid,
.hr-step-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.hr-price-grid li,
.hr-step-grid li {
    padding: 1.15rem 1.2rem 1.3rem;
}

.hr-price {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    margin: 0 0 0.4rem;
    color: var(--hr-gold-deep);
}

.hr-fine {
    font-size: 0.88rem;
    color: var(--hr-muted);
}

.hr-featured-list,
.hr-product-grid,
.hr-pin-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.1rem;
}

.hr-featured-list {
    grid-template-columns: repeat(3, 1fr);
}

.hr-featured-list li,
.hr-product-grid li,
.hr-pin-grid li {
    background: var(--hr-foam);
    border: 1px solid var(--hr-rule);
    overflow: hidden;
}

.hr-featured-list img,
.hr-product-grid img {
    aspect-ratio: 4 / 5;
}

.hr-pin-grid img,
.hr-chart img {
    background: var(--hr-paper);
}

.hr-featured-list div,
.hr-product-grid figcaption,
.hr-pin-grid div {
    padding: 0.9rem 1rem 1.15rem;
}

.hr-product-grid {
    grid-template-columns: repeat(3, 1fr);
}

.hr-product-grid figure {
    margin: 0;
}

.hr-pin-grid {
    grid-template-columns: 1fr 1fr;
}

.hr-section-cta {
    margin: 1.4rem 0 0;
}

.hr-occasion-list,
.hr-step-list {
    margin: 0 0 1.2rem;
    padding: 0;
    list-style: none;
}

.hr-occasion-list li,
.hr-step-list li {
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--hr-rule);
}

.hr-step-num {
    display: inline-flex;
    width: 1.8rem;
    height: 1.8rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--hr-gold);
    border-radius: 999px;
    font-size: 0.85rem;
    margin-bottom: 0.55rem;
    color: var(--hr-gold-deep);
}

.hr-page-hero {
    padding: 2.4rem 0 0.4rem;
}

.hr-page-hero .hr-lede {
    margin-bottom: 0;
}

.hr-prices-compact {
    padding-top: 1.2rem;
}

.hr-prices-compact .hr-price-grid {
    grid-template-columns: repeat(3, 1fr);
}

.hr-inset-photo {
    margin: 1rem 0 1.2rem;
    border: 1px solid var(--hr-gold-soft);
    padding: 0.45rem;
    background: var(--hr-paper);
}

.hr-chart {
    margin: 0 0 2rem;
}

.hr-chart a {
    display: block;
    text-decoration: none;
    background: var(--hr-foam);
    border: 1px solid var(--hr-rule);
    padding: 0.7rem;
}

.hr-note {
    padding: 2rem 1.4rem 2.2rem;
    margin-bottom: 2rem;
}

.hr-success {
    width: min(1120px, calc(100% - 2rem));
    margin: 1rem auto 0;
    padding: 0.9rem 1.1rem;
    background: color-mix(in srgb, var(--hr-gold-soft) 35%, white);
    border: 1px solid var(--hr-gold);
}

.hr-form {
    display: grid;
    gap: 0.9rem;
    padding: 1.2rem 1.15rem 1.4rem;
}

.hr-form label,
.hr-form fieldset {
    display: grid;
    gap: 0.35rem;
    margin: 0;
    border: 0;
    padding: 0;
}

.hr-form span,
.hr-form legend {
    font-size: 0.86rem;
    font-weight: 600;
}

.hr-form i {
    font-style: normal;
    font-weight: 400;
    color: var(--hr-muted);
}

.hr-form input,
.hr-form select,
.hr-form textarea {
    width: 100%;
    font: inherit;
    padding: 0.7rem 0.75rem;
    border: 1px solid var(--hr-rule);
    background: var(--hr-paper);
    color: var(--hr-ink);
    border-radius: 0.4rem;
}

.hr-check {
    display: flex !important;
    align-items: center;
    gap: 0.55rem;
    grid-template-columns: none;
}

.hr-check input {
    width: auto;
}

.hr-form em {
    color: #8a2c2c;
    font-size: 0.82rem;
    font-style: normal;
}

.hr-form-error {
    margin: 0;
    color: #8a2c2c;
}

.hr-estimate {
    margin: 0.2rem 0 0;
    padding: 0.75rem 0.85rem;
    background: var(--hr-paper);
    border: 1px dashed var(--hr-gold);
}

.hr-honeypot {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.hr-footer {
    background: var(--hr-ink);
    color: color-mix(in srgb, var(--hr-foam) 88%, var(--hr-gold));
    padding: 3rem clamp(1rem, 5vw, 4rem) 6rem;
}

.hr-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr;
    gap: 2rem;
}

.hr-footer-name {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.8rem;
    font-style: italic;
    margin: 0 0 0.3rem;
}

.hr-footer-tag,
.hr-footer-label {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: var(--hr-gold-soft);
}

.hr-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hr-footer li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid color-mix(in srgb, white 12%, transparent);
}

.hr-footer nav {
    display: grid;
    gap: 0.45rem;
}

.hr-footer-note {
    margin: 2rem 0 0;
    font-size: 0.84rem;
    color: color-mix(in srgb, var(--hr-foam) 55%, transparent);
}

.hr-mobile-bar {
    display: none;
}

@media (max-width: 960px) {
    .hr-hero,
    .hr-intro-grid,
    .hr-split,
    .hr-split-reverse,
    .hr-order,
    .hr-footer-grid,
    .hr-featured-list,
    .hr-product-grid,
    .hr-price-grid,
    .hr-step-grid,
    .hr-prices-compact .hr-price-grid,
    .hr-pin-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hr-split-reverse figure {
        order: 0;
    }
}

@media (max-width: 760px) {
    .hr-ticker {
        flex-wrap: nowrap;
        overflow: hidden;
        white-space: nowrap;
    }

    .hr-nav-toggle {
        display: inline-block;
    }

    .hr-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--hr-foam);
        border-bottom: 1px solid var(--hr-rule);
        padding: 0.4rem 1rem 1rem;
    }

    .hr-nav.is-open {
        display: flex;
    }

    .hr-nav a {
        padding: 0.7rem 0;
        border-bottom: 1px solid var(--hr-rule);
    }

    .hr-hero,
    .hr-intro-grid,
    .hr-split,
    .hr-order,
    .hr-footer-grid,
    .hr-featured-list,
    .hr-product-grid,
    .hr-price-grid,
    .hr-step-grid,
    .hr-prices-compact .hr-price-grid,
    .hr-pin-grid {
        grid-template-columns: 1fr;
    }

    .hr-mobile-bar {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--hr-foam);
        border-top: 1px solid var(--hr-rule);
        z-index: 30;
    }

    .hr-mobile-bar a {
        text-align: center;
        padding: 0.85rem 0.4rem;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.88rem;
    }

    .hr-mobile-bar .is-primary {
        background: var(--hr-gold-deep);
        color: var(--hr-foam);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
