/*
 * Home page design — "Vilna" direction
 * Corde faite main, sans colle, inspirée par la mer. Noir profond + or + crème.
 * Scoped under .home-redesign so the rest of the site is untouched.
 */

:root {
    --navbar-height: 76px;

    --hr-ink: #0A0907;
    --hr-ink-soft: #13110D;
    --hr-ink-softer: #1A1611;
    --hr-cream: #E8D9B8;
    --hr-gold: #E9A23B;
    --hr-gold-dark: #C98A2C;
    --hr-gold-light: #F4C876;
    --hr-muted: #7A6F5E;
    --hr-line-on-dark: rgba(233, 162, 59, 0.18);
    --hr-line-on-dark-strong: rgba(233, 162, 59, 0.4);
    --hr-line-on-light: rgba(10, 9, 7, 0.12);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-mono: 'Inter', sans-serif;
}

.home-redesign {
    background: var(--hr-ink);
    color: var(--hr-cream);
}

/* app.css sets html { scroll-behavior: smooth } globally. On the
   homepage that fights the section-snap controller: raw wheel/touch
   scrolling would already be getting browser-eased before our own
   debounce + glide ever kicks in, so the two animations stack and
   produce inconsistent, direction-dependent jitter (most visible
   scrolling up). The controller owns 100% of the "smooth" feel here,
   so native smoothing is turned back to instant for this page. */
html:has(body.home-page) {
    scroll-behavior: auto;
    /* The full-bleed footer trust bar / rule (width: 100vw) are wider
       than the visible viewport by the scrollbar's own width, which
       triggers a horizontal scrollbar. Nothing on this page needs
       horizontal scroll, so it's safe to just suppress it here. */
    overflow-x: hidden;
}

/* Section anchoring is handled by the section-snap Stimulus controller
   (assets/controllers/section-snap_controller.js): it glides the page
   to the nearest section with a custom eased animation once scrolling
   settles, which reads far softer than the browser's native CSS
   scroll-snap completion (fixed duration, no easing control). We keep
   scroll-margin-top here so the #philosophy / #featured-products
   anchor links still land below the sticky navbar.
   (Le pied de page a la même règle, déclarée dans footer.css qui, lui,
   est chargé sur toutes les pages.) */
body.home-page .hr-hero,
body.home-page .hr-section--full {
    scroll-margin-top: var(--navbar-height);
}

.home-redesign * {
    box-sizing: border-box;
}

.home-redesign a {
    color: inherit;
}

.home-redesign h1,
.home-redesign h2,
.home-redesign h3,
.home-redesign .hr-display {
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: -0.01em;
    color: inherit;
    margin: 0;
}

.home-redesign em {
    font-style: italic;
    font-weight: 400;
    color: var(--hr-gold);
}

/* ===========================
   Section scaffold
   =========================== */
.hr-section {
    position: relative;
    padding: clamp(3.5rem, 7vw, 8rem) 0;
    overflow: hidden;
}

.hr-section > .container {
    position: relative;
    z-index: 1;
}

.hr-section--ink {
    background: var(--hr-ink);
    color: var(--hr-cream);
}

.hr-section--soft {
    /* Starts and ends on the exact same tone as the plain --ink
       sections above and below it, so the seam between sections is
       never a visible step — just a very soft glow breathing in
       across the middle of this one. */
    background: linear-gradient(180deg, var(--hr-ink) 0%, var(--hr-ink-soft) 50%, var(--hr-ink) 100%);
    color: var(--hr-cream);
}

.hr-section--wool {
    background: var(--hr-ink-soft);
    color: var(--hr-cream);
}

/* ===========================
   Full-height section scaffold
   =========================== */
.hr-section--full {
    min-height: calc(100vh - var(--navbar-height));
    min-height: calc(100dvh - var(--navbar-height));
    padding-top: clamp(1.5rem, 3vw, 3rem);
    padding-bottom: clamp(1.5rem, 3vw, 3rem);
    display: flex;
    align-items: center;
}

.hr-section--full > .container {
    width: 100%;
}

.hr-section--tall {
    min-height: calc(100vh - var(--navbar-height));
    min-height: calc(100dvh - var(--navbar-height));
}

@media (min-width: 992px) {
    .hr-section--tall {
        min-height: calc(116vh - var(--navbar-height));
        min-height: calc(116dvh - var(--navbar-height));
    }
}

/* ===========================
   Scroll reveal
   =========================== */
.hr-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.hr-reveal.is-visible {
    opacity: 1;
    transform: none;
}

.hr-reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hr-reveal-stagger.is-visible > * {
    opacity: 1;
    transform: none;
}

.hr-reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.hr-reveal-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.hr-reveal-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.hr-reveal-stagger > *:nth-child(5) { transition-delay: 0.4s; }
.hr-reveal-stagger > *:nth-child(6) { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
    .hr-reveal,
    .hr-reveal-stagger > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ===========================
   Parallax image layer
   =========================== */
.hr-parallax-img {
    transform: scale(1.12);
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .hr-parallax-img {
        transform: none;
    }
}

/* ===========================
   Scroll cue (hero → next section)
   =========================== */
.hr-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: clamp(1.5rem, 4vw, 2.75rem);
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: var(--hr-cream);
    opacity: 0.55;
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.hr-scroll-cue:hover {
    opacity: 0.9;
    color: var(--hr-cream);
}

.hr-scroll-cue__line {
    width: 1px;
    height: 34px;
    background: linear-gradient(180deg, var(--hr-gold) 0%, transparent 100%);
}

@media (prefers-reduced-motion: no-preference) {
    .hr-scroll-cue__line {
        animation: hr-scroll-cue-pulse 2s ease-in-out infinite;
    }
}

@keyframes hr-scroll-cue-pulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.6); opacity: 0.5; }
}

@media (max-width: 767px) {
    .hr-scroll-cue { display: none; }
}

.hr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--hr-gold);
    margin-bottom: 1.25rem;
}

.hr-eyebrow::before,
.hr-eyebrow::after {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--hr-gold);
    opacity: 0.5;
    flex: none;
}


/* ===========================
   Hero
   =========================== */
.hr-hero {
    min-height: calc(100vh - var(--navbar-height));
    min-height: calc(100dvh - var(--navbar-height));
    display: flex;
    align-items: center;
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
    text-align: center;
    z-index: 0;
}

.hr-hero > .container {
    width: 100%;
}

.hr-hero--has-image {
    background-repeat: no-repeat;
}

.hr-hero__slides {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.hr-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    transition: opacity 3.2s cubic-bezier(0.45, 0, 0.2, 1), transform 10s cubic-bezier(0.25, 0, 0.2, 1);
}

.hr-hero__slide.is-active {
    opacity: 1;
    transform: scale(1.07);
}

@media (prefers-reduced-motion: reduce) {
    .hr-hero__slide {
        transition: none;
        transform: none;
    }
}

.hr-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(10, 9, 7, 0.55) 0%, rgba(10, 9, 7, 0.8) 70%, rgba(10, 9, 7, 0.94) 100%),
        linear-gradient(180deg, rgba(10, 9, 7, 0.55) 0%, rgba(10, 9, 7, 0.35) 40%, rgba(10, 9, 7, 0.9) 100%);
}

.hr-hero__inner {
    max-width: 760px;
    margin: 0 auto;
}

@media (prefers-reduced-motion: no-preference) {
    .hr-hero__inner .hr-eyebrow,
    .hr-hero__inner .hr-hero__title,
    .hr-hero__inner .hr-hero__lead,
    .hr-hero__inner .hr-hero__actions {
        opacity: 0;
        transform: translateY(18px);
        animation: hr-hero-fade-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .hr-hero__inner .hr-eyebrow { animation-delay: 0.1s; }
    .hr-hero__inner .hr-hero__title { animation-delay: 0.28s; }
    .hr-hero__inner .hr-hero__lead { animation-name: hr-hero-fade-up-soft; animation-delay: 0.46s; }
    .hr-hero__inner .hr-hero__actions { animation-delay: 0.62s; }
}

@keyframes hr-hero-fade-up {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes hr-hero-fade-up-soft {
    to { opacity: 0.75; transform: translateY(0); }
}

.hr-hero__title {
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.015em;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--hr-cream) 0%, var(--hr-gold-light) 55%, var(--hr-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hr-hero__title em {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--hr-gold) 0%, var(--hr-gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hr-hero__lead {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.75;
    max-width: 46ch;
    margin: 0 auto 2.5rem;
    color: var(--hr-cream);
    opacity: 0.75;
}

.hr-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ===========================
   Buttons
   =========================== */
.hr-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    border: 1px solid var(--hr-gold);
    color: var(--hr-gold);
    background: transparent;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.hr-btn--primary:hover {
    background: var(--hr-gold-light);
    border-color: var(--hr-gold-light);
    transform: translateY(-2px);
    color: var(--hr-ink);
}

.hr-btn--ghost {
    border-color: var(--hr-line-on-dark-strong);
    color: var(--hr-cream);
}

.hr-btn--ghost:hover {
    border-color: var(--hr-gold);
    color: var(--hr-gold);
    transform: translateY(-2px);
}

.hr-btn--dark {
    border-color: var(--hr-line-on-dark-strong);
    color: var(--hr-cream);
}

.hr-btn--dark:hover {
    border-color: var(--hr-gold);
    color: var(--hr-gold);
    transform: translateY(-2px);
}

.home-redesign .hr-btn:focus-visible {
    outline: 2px solid var(--hr-gold);
    outline-offset: 3px;
}

/* ===========================
   Traditions → Nos univers (categories)
   =========================== */
.hr-traditions__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hr-traditions__title {
    font-size: clamp(1.9rem, 4vw, 3.25rem);
    font-weight: 300;
}

.hr-traditions__lead {
    font-family: var(--font-mono);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.75;
    max-width: 46ch;
    margin: 0.25rem auto 0;
    color: var(--hr-cream);
    opacity: 0.7;
}

.hr-traditions__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* Photo and caption are two separate, stacked blocks — not text
   overlaid on a darkened image. No overlay gradient anywhere near an
   image edge means no clip/compositing seam to chase. */
.hr-trad {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--hr-cream);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hr-trad:hover {
    transform: translateY(-8px);
}

.hr-trad__frame {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--hr-ink-softer);
    border: 1px solid var(--hr-line-on-dark);
    transition: border-color 0.5s ease;
}

.hr-trad:hover .hr-trad__frame {
    border-color: var(--hr-gold);
}

.hr-trad__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.92);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.hr-trad:hover .hr-trad__img {
    transform: scale(1.08);
    filter: brightness(1);
}

.hr-trad__index {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
    padding: 0.3rem 0.65rem;
    background: var(--hr-ink);
    border: 1px solid var(--hr-line-on-dark-strong);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--hr-gold-light);
}

.hr-trad__body {
    padding-top: 1.1rem;
}

.hr-trad__label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--hr-gold);
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.hr-trad__name {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    font-weight: 400;
    color: var(--hr-cream);
    margin-bottom: 0.5rem;
    transition: color 0.4s ease;
}

.hr-trad:hover .hr-trad__name {
    color: var(--hr-gold-light);
}

.hr-trad__desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--hr-cream);
    opacity: 0.65;
    margin: 0;
}

.hr-trad__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--hr-gold);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.hr-trad__cta span {
    display: inline-block;
    transition: transform 0.35s ease;
}

.hr-trad:hover .hr-trad__cta {
    opacity: 1;
    transform: translateY(0);
}

.hr-trad:hover .hr-trad__cta span {
    transform: translateX(4px);
}

/* ===========================
   Philosophy — three pillars
   =========================== */
.hr-spec__head {
    margin-bottom: 2rem;
    text-align: center;
}

.hr-spec__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.hr-spec__row {
    padding: 1.5rem 1.5rem;
    border: 1px solid var(--hr-line-on-dark);
    background: rgba(233, 162, 59, 0.015);
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease, background-color 0.4s ease, transform 0.4s ease;
}

.hr-spec__row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--hr-gold);
    transition: width 0.6s ease;
}

.hr-spec__row:hover {
    border-color: var(--hr-line-on-dark-strong);
    background: rgba(233, 162, 59, 0.035);
    transform: translateY(-4px);
}

.hr-spec__row:hover::before {
    width: 100%;
}

.hr-spec__row--has-image {
    padding-top: 0;
    display: flex;
    flex-direction: column;
}

.hr-spec__image {
    position: relative;
    width: calc(100% + 3rem);
    margin: 0 -1.5rem 1.1rem;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 1px solid var(--hr-line-on-dark);
}

.hr-spec__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hr-spec__row--has-image .hr-spec__label,
.hr-spec__row--has-image .hr-spec__value,
.hr-spec__row--has-image .hr-spec__note {
    padding-left: 0;
}

.hr-spec__row--has-image .hr-spec__label {
    margin-top: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.hr-spec__row--has-image .hr-spec__value,
.hr-spec__row--has-image .hr-spec__note {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.hr-spec__row--has-image .hr-spec__note {
    padding-bottom: 1.25rem;
}

.hr-spec__label {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.7rem;
    color: var(--hr-gold);
    opacity: 0.85;
    line-height: 1;
    margin-bottom: 0.6rem;
}

.hr-spec__value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--hr-cream);
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

.hr-spec__note {
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--hr-cream);
    opacity: 0.65;
    margin: 0;
}

/* ===========================
   Featured products
   =========================== */
.hr-products__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    text-align: center;
}

.hr-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.hr-product {
    display: flex;
    flex-direction: column;
    background: transparent;
}

.hr-product__frame {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--hr-line-on-dark);
    margin-bottom: 1.25rem;
    background: var(--hr-ink-softer);
}

.hr-product__frame img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    filter: brightness(0.96);
    transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.7s ease;
}

.hr-product:hover .hr-product__frame img {
    transform: scale(1.05);
    filter: brightness(1.04);
}

.hr-product__placeholder {
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
    background:
        repeating-linear-gradient(135deg, rgba(233, 162, 59, 0.05) 0 2px, transparent 2px 14px),
        var(--hr-ink-softer);
}

.hr-product__placeholder span {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--hr-gold);
    opacity: 0.55;
}

.hr-product__category {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    background: var(--hr-ink);
    color: var(--hr-gold);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    border: 1px solid var(--hr-line-on-dark-strong);
}

.hr-product__name {
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
    min-height: 1.69rem;
    margin-bottom: 0.4rem;
}

.hr-product__desc {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 1.5;
    min-height: 2.625rem;
    color: var(--hr-cream);
    opacity: 0.65;
    margin-bottom: 1rem;
}

.hr-product__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hr-product__price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--hr-gold-light);
}

.hr-product__actions {
    display: flex;
    gap: 0.5rem;
}

.hr-product__actions .btn {
    border-radius: 2px;
}

.hr-product__stock {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--hr-gold);
    margin-top: 0.75rem;
    opacity: 0.85;
}

/* ===========================
   Custom quote CTA
   =========================== */
.hr-cta {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

@media (max-width: 991px) {
    .hr-cta {
        grid-template-columns: 1fr;
    }
}

.hr-cta__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--hr-cream);
    opacity: 0.85;
}

.hr-cta__list li {
    display: flex;
    align-items: baseline;
    gap: 0.9rem;
}

.hr-cta__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hr-gold);
    flex: none;
    transform: translateY(-2px);
}

.hr-cta__visual {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--hr-ink-softer);
    border: 1px solid var(--hr-line-on-dark);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hr-cta__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(233, 162, 59, 0.14), transparent 70%);
}

.hr-cta__visual svg {
    position: relative;
    width: 46%;
    height: auto;
    overflow: visible;
}

.hr-cta__visual .hr-heart-path {
    fill: none;
    stroke: var(--hr-gold);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 2600;
    stroke-dashoffset: 2600;
    transition: stroke-dashoffset 2.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hr-cta__visual.is-visible .hr-heart-path {
    stroke-dashoffset: 0;
}

.hr-cta__visual .hr-heart-outline {
    fill: none;
    stroke: var(--hr-gold-light);
    stroke-width: 1.2;
    opacity: 0;
    transition: opacity 1.2s ease 0.6s;
}

.hr-cta__visual.is-visible .hr-heart-outline {
    opacity: 0.5;
}

@media (prefers-reduced-motion: reduce) {
    .hr-cta__visual .hr-heart-path {
        stroke-dashoffset: 0;
        transition: none;
    }
    .hr-cta__visual .hr-heart-outline {
        opacity: 0.5;
        transition: none;
    }
}


@media (max-width: 767px) {
    .hr-hero__title { font-size: 2.5rem; }
    .hr-spec__label { font-size: 1.8rem; }

}

/* Le fil d'Ariane ondulé vit maintenant dans assets/styles/rope.css : il
   n'a rien de propre à l'accueil et sert désormais sur d'autres pages.
   Le markup est dans templates/partials/_rope.html.twig. */
