:root {
    color-scheme: light;
    --r7-ink: #0d1012;
    --r7-ink-soft: #171b1e;
    --r7-paper: #eeeae3;
    --r7-paper-soft: #e3ded5;
    --r7-white: #fbfaf7;
    --r7-gold: #f4f4f0;
    --r7-gold-deep: #9b8b78;
    --r7-red: #b4885d;
    --r7-text: #17191b;
    --r7-muted: #60615f;
    --r7-line: rgba(23, 25, 27, 0.15);
    --r7-line-light: rgba(255, 255, 255, 0.2);
    --r7-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --r7-container: 1376px;
    --r7-pad: clamp(18px, 3vw, 48px);
    --r7-section: clamp(64px, 7vw, 112px);
    --r7-font-sans: "Rosmouka Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --r7-font-body: "Rosmouka Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --r7-font-display: "Rosmouka Prata", Georgia, "Times New Roman", serif;
}

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

html {
    min-width: 320px;
    scroll-behavior: smooth;
    background: var(--r7-ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: clip;
    color: var(--r7-text);
    background: var(--r7-paper);
    font-family: var(--r7-font-body);
    font-size: 16px;
    line-height: 1.6;
}

body.rm-modal-open {
    overflow: hidden;
}

img,
video {
    display: block;
    max-width: 100%;
}

img {
    outline: 1px solid rgba(0, 0, 0, 0.1);
    outline-offset: -1px;
}

a,
button,
input,
select,
textarea {
    font: inherit;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

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

h1,
h2,
h3,
p,
figure,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

strong,
b,
.rm-calc-result__price,
.rm-price-table td {
    font-variant-numeric: tabular-nums;
}

.rm-container {
    width: min(100% - (var(--r7-pad) * 2), var(--r7-container));
    margin-inline: auto;
}

.rm-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100001;
    padding: 12px 18px;
    color: var(--r7-ink);
    background: var(--r7-gold);
    transform: translateY(-180%);
    transition: transform 180ms ease-out;
}

.rm-skip-link:focus {
    transform: translateY(0);
}

.rm-main {
    min-height: 60vh;
}

.rm-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: 74px;
    color: var(--r7-white);
    background: rgba(8, 10, 12, 0.88);
    border-bottom: 1px solid rgba(248, 248, 245, 0.12);
    backdrop-filter: blur(22px) saturate(120%);
}

.rm-header__inner {
    display: flex;
    width: min(100% - 28px, 1380px);
    height: 100%;
    margin-inline: auto;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.rm-brand {
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.rm-brand img {
    width: 92px;
    height: auto;
    outline: 0;
}

.rm-burger {
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-content: center;
    gap: 7px;
    color: var(--r7-white);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.rm-burger span {
    display: block;
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: transform 240ms var(--r7-ease);
}

.rm-burger[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.rm-burger[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.rm-nav {
    position: fixed;
    inset: 74px 0 0;
    z-index: 1001;
    display: flex;
    padding: 34px var(--r7-pad) 42px;
    flex-direction: column;
    gap: 4px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    color: var(--r7-white);
    background: var(--r7-ink);
    transform: translateY(-12px);
    transition: opacity 220ms ease-out, transform 320ms var(--r7-ease), visibility 220ms;
}

.rm-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.rm-nav > a {
    padding: 12px 0;
    color: inherit;
    font-family: var(--r7-font-body);
    font-size: clamp(1.85rem, 8vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.1;
    text-decoration: none;
}

.rm-nav__meta {
    display: grid;
    margin-top: auto;
    padding-top: 28px;
    gap: 10px;
    border-top: 1px solid var(--r7-line-light);
}

.rm-nav__eyebrow,
.rm-header__status {
    color: rgba(255, 253, 248, 0.55);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rm-nav__phone,
.rm-header__phone {
    color: inherit;
    font-weight: 700;
    text-decoration: none;
}

.rm-nav__actions {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.rm-header__meta,
.rm-header__actions {
    display: none;
}

.rm-scroll-progress {
    position: fixed;
    inset: 73px 0 auto;
    z-index: 1001;
    height: 1px;
    pointer-events: none;
}

.rm-scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--r7-gold);
}

.r7-button,
.rm-button,
.rm-header__cta {
    display: inline-flex;
    min-height: 54px;
    padding: 12px 22px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--r7-white);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    background: var(--r7-ink);
    border: 1px solid var(--r7-ink);
    border-radius: 0;
    box-shadow: none;
    transition: color 180ms ease-out, background-color 180ms ease-out, border-color 180ms ease-out, transform 120ms ease-out;
}

.r7-button:hover,
.rm-button:hover,
.rm-header__cta:hover {
    color: var(--r7-white);
    background: #25292d;
    border-color: #25292d;
}

.r7-button:active,
.rm-button:active,
.rm-header__cta:active {
    transform: scale(0.96);
}

.r7-button--primary,
.rm-button--primary {
    color: var(--r7-ink);
    background: var(--r7-white);
    border-color: var(--r7-gold);
}

.r7-button--primary:hover,
.rm-button--primary:hover {
    color: var(--r7-white);
    background: transparent;
    border-color: rgba(248, 248, 245, 0.72);
}

.r7-button--line,
.rm-button--secondary,
.rm-button--ghost {
    color: inherit;
    background: transparent;
    border-color: currentColor;
}

.r7-link {
    display: inline-flex;
    min-height: 44px;
    padding: 8px 0;
    align-items: center;
    color: inherit;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
}

.r7-link--light {
    color: var(--r7-white);
}

.rm-text-link {
    display: inline-flex;
    min-height: 44px;
    padding: 8px 0;
    align-items: center;
    color: var(--r7-text);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
}

.rm-page-hero .rm-text-link,
.rm-section--dark .rm-text-link,
.rv6-directory__hero .rm-text-link,
.rv6-directory__final .rm-text-link {
    color: var(--r7-white);
}

.r7-kicker,
.rm-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--r7-red);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.r7-kicker::before,
.rm-kicker::before {
    content: "";
    width: 30px;
    height: 1px;
    background: currentColor;
}

.r7-heading {
    max-width: 860px;
    margin-bottom: clamp(54px, 9vw, 110px);
}

.r7-heading h2 {
    margin: 18px 0 24px;
    color: var(--r7-text);
    font-family: var(--r7-font-body);
    font-size: clamp(2.65rem, 8vw, 6rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.055em;
}

.r7-heading h2 em,
.r7-home h2 em,
.r7-home h1 em {
    font-family: var(--r7-font-body);
    font-style: normal;
    font-weight: inherit;
    letter-spacing: inherit;
}

.r7-heading > p {
    max-width: 580px;
    margin-bottom: 0;
    color: var(--r7-muted);
    line-height: 1.75;
}

.r7-heading--center {
    margin-inline: auto;
    text-align: center;
}

.r7-heading--center .r7-kicker {
    justify-content: center;
}

.r7-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    color: var(--r7-white);
    background: var(--r7-ink);
}

.r7-hero__media,
.r7-hero__shade {
    position: absolute;
    inset: 0;
}

.r7-hero__media img,
.r7-hero__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    outline: 0;
}

.r7-hero__media video {
    position: absolute;
    inset: 0;
}

.r7-hero__shade {
    background:
        linear-gradient(180deg, rgba(5, 7, 9, 0.38), rgba(5, 7, 9, 0.16) 40%, rgba(5, 7, 9, 0.9)),
        linear-gradient(90deg, rgba(5, 7, 9, 0.92), rgba(5, 7, 9, 0.52) 58%, rgba(5, 7, 9, 0.18));
}

.r7-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 100svh;
    padding: 118px 0 26px;
    flex-direction: column;
}

.r7-hero__eyebrow {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 253, 248, 0.62);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.r7-hero__eyebrow span:last-child {
    display: none;
}

.r7-hero__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin-block: auto;
    gap: 42px;
}

.r7-hero h1 {
    min-width: 0;
    max-width: 820px;
    margin: 0;
    font-size: clamp(2.3rem, 9.2vw, 4rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.r7-hero h1 em {
    color: inherit;
}

.r7-hero__title-mobile {
    display: none;
}

.r7-hero__lead {
    min-width: 0;
    max-width: 510px;
}

.r7-hero__lead p {
    margin-bottom: 28px;
    color: rgba(248, 248, 245, 0.76);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.68;
}

.r7-actions {
    display: grid;
    gap: 12px;
}

.r7-hero__facts {
    display: none;
}

.r7-intro,
.r7-services,
.r7-price,
.r7-process,
.r7-reviews,
.r7-gift {
    padding: var(--r7-section) 0;
}

.r7-intro__grid {
    display: grid;
    gap: 34px;
}

.r7-intro__grid > p {
    margin: 0;
    font-family: var(--r7-font-body);
    font-size: clamp(1.7rem, 4.6vw, 3.2rem);
    font-weight: 500;
    line-height: 1.22;
    letter-spacing: -0.04em;
}

.r7-intro__marks {
    display: grid;
    border-top: 1px solid var(--r7-line);
}

.r7-intro__marks span {
    padding: 16px 0;
    color: var(--r7-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--r7-line);
}

.r7-services {
    background: var(--r7-white);
}

.r7-services__list {
    border-top: 1px solid var(--r7-line);
}

.r7-service {
    display: grid;
    gap: 24px;
    padding: 30px 0 40px;
    border-bottom: 1px solid var(--r7-line);
}

.r7-service__media {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--r7-paper-soft);
}

.r7-service__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms var(--r7-ease);
}

.r7-service__media:hover img {
    transform: scale(1.025);
}

.r7-service__content {
    display: flex;
    flex-direction: column;
}

.r7-service__meta,
.r7-service__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.r7-service__meta {
    color: var(--r7-muted);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.r7-service__meta strong {
    color: var(--r7-text);
    font-size: 0.86rem;
    letter-spacing: 0;
}

.r7-service h3 {
    margin: 30px 0 14px;
    font-family: var(--r7-font-body);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.r7-service p {
    max-width: 580px;
    margin-bottom: 30px;
    color: var(--r7-muted);
}

.r7-service__actions {
    justify-content: flex-start;
}

.r7-service__actions a,
.r7-service__actions button {
    min-height: 44px;
    padding: 8px 0;
    color: var(--r7-text);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    background: none;
    border: 0;
    border-bottom: 1px solid currentColor;
}

.r7-service__actions button {
    color: var(--r7-red);
}

.r7-services__all {
    margin-top: 44px;
}

.r7-proof {
    padding: var(--r7-section) 0;
    color: var(--r7-white);
    background: var(--r7-ink);
}

.r7-proof__grid {
    display: grid;
    gap: 64px;
}

.r7-proof__copy h2 {
    margin: 20px 0 28px;
    font-size: clamp(2.65rem, 8vw, 5.8rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.055em;
}

.r7-proof__copy p {
    max-width: 540px;
    color: rgba(255, 253, 248, 0.6);
}

.r7-proof__gallery {
    display: grid;
    gap: 22px;
}

.r7-proof__item {
    margin: 0;
}

.r7-proof__item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    outline-color: rgba(255, 255, 255, 0.1);
}

.r7-proof__item figcaption {
    display: flex;
    padding-top: 12px;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255, 253, 248, 0.55);
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.r7-price__grid {
    display: grid;
    gap: 64px;
}

.r7-price__list {
    border-top: 1px solid var(--r7-line);
}

.r7-price__list > div {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    gap: 12px;
    padding: 24px 0;
    align-items: start;
    border-bottom: 1px solid var(--r7-line);
}

.r7-price__list > div > span {
    color: var(--r7-red);
    font-size: 0.68rem;
}

.r7-price__list strong,
.r7-price__list small {
    display: block;
}

.r7-price__list strong {
    font-size: 1.05rem;
}

.r7-price__list small {
    margin-top: 5px;
    color: var(--r7-muted);
}

.r7-price__list b {
    font-size: 0.98rem;
}

.r7-price__list .r7-button {
    width: 100%;
    margin-top: 30px;
}

.r7-process {
    color: var(--r7-white);
    background: var(--r7-ink-soft);
}

.r7-process .r7-heading h2 {
    color: var(--r7-white);
}

.r7-process__steps {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--r7-line-light);
}

.r7-process__steps li {
    padding: 28px 0;
    border-bottom: 1px solid var(--r7-line-light);
}

.r7-process__steps span {
    color: rgba(248, 248, 245, 0.48);
    font-size: 0.68rem;
}

.r7-process__steps h3 {
    margin: 16px 0 10px;
    color: var(--r7-white);
    font-family: var(--r7-font-body);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.035em;
}

.r7-process__steps p {
    margin-bottom: 0;
    color: rgba(255, 253, 248, 0.56);
}

.r7-reviews__headline {
    display: grid;
    gap: 36px;
    padding-bottom: 54px;
    border-bottom: 1px solid var(--r7-line);
}

.r7-reviews__headline > div {
    display: grid;
}

.r7-reviews__headline > div span {
    font-family: var(--r7-font-body);
    font-size: clamp(3.8rem, 16vw, 7rem);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 1;
}

.r7-reviews__headline small {
    color: var(--r7-muted);
}

.r7-reviews blockquote {
    margin-bottom: 0;
    font-family: var(--r7-font-body);
    font-size: clamp(1.5rem, 4vw, 2.7rem);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.035em;
}

.r7-reviews__list article {
    padding: 28px 0;
    border-bottom: 1px solid var(--r7-line);
}

.r7-reviews__list span {
    color: var(--r7-red);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.r7-reviews__list p {
    margin: 14px 0 0;
}

.r7-gift {
    color: var(--r7-white);
    background: var(--r7-ink);
}

.r7-gift__grid {
    display: grid;
    gap: 64px;
}

.r7-gift h2 {
    margin: 20px 0 28px;
    font-size: clamp(2.65rem, 8vw, 5.6rem);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.065em;
}

.r7-gift__copy > p {
    max-width: 520px;
    color: rgba(255, 253, 248, 0.6);
}

.r7-gift__cards {
    display: grid;
    gap: 12px;
}

.r7-gift__cards button {
    display: flex;
    min-height: 138px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    color: var(--r7-white);
    text-align: left;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 60%),
        #171a1d;
    border: 1px solid rgba(248, 248, 245, 0.18);
    border-radius: 0;
    transition: transform 200ms var(--r7-ease), filter 200ms ease-out;
}

.r7-gift__cards button:hover {
    transform: translateY(-4px);
    background-color: #202428;
    border-color: rgba(248, 248, 245, 0.42);
}

.r7-gift__cards button:active {
    transform: scale(0.96);
}

.r7-gift__cards span,
.r7-gift__cards small {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.r7-gift__cards strong {
    font-family: var(--r7-font-body);
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.r7-contact {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    color: var(--r7-white);
    background: var(--r7-ink);
}

.r7-contact__media,
.r7-contact__shade {
    position: absolute;
    inset: 0;
}

.r7-contact__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    outline: 0;
}

.r7-contact__shade {
    background: linear-gradient(90deg, rgba(5, 7, 9, 0.96), rgba(5, 7, 9, 0.52));
}

.r7-contact__inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 760px;
    padding-block: 110px 70px;
    flex-direction: column;
    justify-content: center;
}

.r7-contact h2 {
    margin: 22px 0 28px;
    font-size: clamp(2.8rem, 9vw, 6.2rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.055em;
}

.r7-contact p {
    color: rgba(255, 253, 248, 0.66);
}

.r7-contact__phone {
    margin-top: 36px;
    color: inherit;
    font-size: clamp(1.5rem, 6vw, 2.8rem);
    font-weight: 700;
    text-decoration: none;
}

[data-r7-reveal] {
    opacity: 1;
    transform: none;
}

html.r7-motion [data-r7-reveal] {
    opacity: 0.34;
    transform: translateY(10px);
    transition: opacity 360ms ease-out, transform 440ms var(--r7-ease);
}

html.r7-motion [data-r7-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.r7-spotlight {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    --r7-pointer-x: 50%;
    --r7-pointer-y: 50%;
}

.r7-spotlight::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    opacity: 0;
    background: radial-gradient(
        420px circle at var(--r7-pointer-x) var(--r7-pointer-y),
        rgba(248, 248, 245, 0.09),
        transparent 68%
    );
    transition: opacity 420ms ease-out;
    pointer-events: none;
}

.r7-spotlight:hover::before,
.r7-spotlight:focus-within::before {
    opacity: 1;
}

/* Shared internal pages */
.rm-page-hero,
.rm-price-hero,
.rv6-directory__hero {
    padding: 132px 0 76px;
    color: var(--r7-white);
    background:
        radial-gradient(circle at 80% 10%, rgba(248, 248, 245, 0.08), transparent 28%),
        var(--r7-ink);
}

.rm-page-hero h1,
.rm-price-hero h1,
.rv6-directory__hero h1 {
    max-width: 1050px;
    margin: 18px 0 26px;
    color: var(--r7-white);
    font-family: var(--r7-font-body);
    font-size: clamp(2.8rem, 11vw, 7rem);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.065em;
}

.rm-page-hero p,
.rm-price-hero p,
.rv6-directory__hero p {
    max-width: 650px;
    color: rgba(255, 253, 248, 0.62);
}

@media (max-width: 1023px) {
    .rm-page-hero--privacy h1 {
        font-size: clamp(2rem, 8.5vw, 4.2rem);
        line-height: 1.02;
    }
}

/* Final mobile header contract: keep the weather status compact and reserve
   a stable lane between the brand and the menu on narrow screens. */
@media (max-width: 760px) {
    html body .rm-header {
        height: calc(72px + var(--r7-safe-top)) !important;
        padding-top: var(--r7-safe-top) !important;
    }

    html body .rm-scroll-progress {
        top: calc(71px + var(--r7-safe-top)) !important;
    }

    html body .rm-nav {
        inset: calc(72px + var(--r7-safe-top)) 0 0 !important;
        height: calc(100dvh - 72px - var(--r7-safe-top)) !important;
        min-height: calc(100dvh - 72px - var(--r7-safe-top)) !important;
    }

    html body .rm-header__inner > .rm-weather-offer,
    html body .rm-header__inner > .rm-weather-offer.is-forecast {
        top: 14px !important;
        right: 56px !important;
        left: auto !important;
        width: 148px !important;
        max-width: 148px !important;
        transform: none !important;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__forecast,
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast {
        box-sizing: border-box;
        width: 148px !important;
        max-width: 148px !important;
        min-height: 42px;
        max-height: 42px !important;
        padding: 6px 10px !important;
        border-radius: 13px !important;
        overflow: hidden;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__forecast-kicker,
    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__forecast-days {
        display: none !important;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__forecast-head {
        min-height: 28px;
        gap: 6px;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__forecast-head strong {
        max-width: 7ch;
        margin-top: 0;
        overflow: hidden;
        font-size: 0.7rem;
        line-height: 1.1;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__forecast-temp {
        flex: 0 0 auto;
        font-size: 0.98rem;
        line-height: 1;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock {
        width: 148px !important;
        min-height: 42px;
        padding-inline: 10px;
        gap: 6px;
        border-radius: 13px;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-label {
        max-width: 6ch;
        overflow: hidden;
        font-size: 0.58rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-discount {
        font-size: 0.68rem;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock strong {
        font-size: 0.78rem;
    }
}

/* Final mobile viewport guard: keep the hero inside the readable column. */
@media (max-width: 760px) {
    html body .r7-hero,
    html body .r7-hero__inner,
    html body .r7-hero__content,
    html body .r7-hero__lead,
    html body .r7-hero__lead p,
    html body .r7-hero .r7-actions,
    html body .r7-hero__facts {
        box-sizing: border-box !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    html body .r7-hero__inner {
        width: 100% !important;
        padding-inline: 18px !important;
    }

    html body .r7-hero__content {
        display: block !important;
        width: calc(100vw - 36px) !important;
        max-width: calc(100vw - 36px) !important;
    }

    html body .r7-hero h1 {
        display: block !important;
        width: calc(100vw - 36px) !important;
        max-width: calc(100vw - 36px) !important;
        margin-inline: 0 !important;
        text-align: left !important;
        font-size: clamp(2rem, 8.6vw, 2.65rem) !important;
        line-height: 1.03 !important;
        letter-spacing: -0.04em !important;
        white-space: normal !important;
        overflow: visible !important;
    }

    html body .r7-hero__lead,
    html body .r7-hero__lead p {
        display: block !important;
        width: calc(100vw - 36px) !important;
        max-width: calc(100vw - 36px) !important;
        margin-inline: 0 !important;
        font-size: 0.94rem !important;
        line-height: 1.5 !important;
        overflow-wrap: anywhere !important;
    }

    html body .r7-hero .r7-actions,
    html body .r7-hero .r7-button,
    html body .r7-hero .r7-link {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
}

/* Final mobile viewport guard: the hero is a readable column, never a
   desktop-width canvas. Keep this last so legacy layers cannot re-expand it. */
@media (max-width: 760px) {
    html body,
    html body .r7-hero,
    html body .r7-hero__inner,
    html body .r7-hero__content,
    html body .r7-hero__lead,
    html body .r7-hero__lead p,
    html body .r7-hero .r7-actions,
    html body .r7-hero__facts {
        box-sizing: border-box !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    html body .r7-hero__inner {
        width: 100% !important;
        padding-inline: 18px !important;
    }

    html body .r7-hero__content {
        display: block !important;
        width: calc(100vw - 36px) !important;
        max-width: calc(100vw - 36px) !important;
    }

    html body .r7-hero h1 {
        display: block !important;
        width: calc(100vw - 36px) !important;
        max-width: calc(100vw - 36px) !important;
        margin-inline: 0 !important;
        text-align: left !important;
        font-size: clamp(2rem, 8.6vw, 2.65rem) !important;
        line-height: 1.03 !important;
        letter-spacing: -0.04em !important;
        white-space: normal !important;
        overflow: visible !important;
    }

    html body .r7-hero__lead,
    html body .r7-hero__lead p {
        display: block !important;
        width: calc(100vw - 36px) !important;
        max-width: calc(100vw - 36px) !important;
        margin-inline: 0 !important;
        font-size: 0.94rem !important;
        line-height: 1.5 !important;
        overflow-wrap: anywhere !important;
    }

    html body .r7-hero .r7-actions,
    html body .r7-hero .r7-button,
    html body .r7-hero .r7-link {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
}

/* V14 final cascade: compact forecast by default, deliberate expansion only. */
html body .rm-header__inner > .rm-weather-offer.is-forecast {
    width: 300px !important;
}

html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast {
    width: 100% !important;
    max-height: 50px;
    padding: 8px 12px;
    border-radius: 14px;
    overflow: hidden;
    transition: max-height 220ms var(--r7-ease), box-shadow 220ms ease, border-color 220ms ease;
}

html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-head {
    min-height: 32px;
    gap: 12px;
}

html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-kicker {
    font-size: 0.56rem;
    letter-spacing: 0.1em;
}

html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-head strong {
    margin-top: 2px;
    font-size: 0.74rem;
}

html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-temp {
    flex: 0 0 auto;
    font-size: 1.05rem;
}

html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-days {
    display: none;
}

html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast:hover,
html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast:focus-visible {
    max-height: 188px;
    border-color: rgba(180, 136, 93, 0.5);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast:hover .rm-weather-offer__forecast-days,
html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast:focus-visible .rm-weather-offer__forecast-days {
    display: grid;
}

@media (max-width: 1023px) {
    html body .rm-header__inner > .rm-weather-offer.is-forecast {
        width: min(250px, calc(100% - 154px)) !important;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast {
        max-height: 44px;
        padding: 6px 9px;
        border-radius: 12px;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-days,
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast:hover .rm-weather-offer__forecast-days,
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast:focus-visible .rm-weather-offer__forecast-days {
        display: none;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast:hover,
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast:focus-visible {
        max-height: 44px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    }
}

@media (prefers-reduced-motion: reduce) {
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast {
        transition: none;
    }
}

/* Unified weather status: one quiet navigation object instead of scattered labels. */
html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock {
    align-items: center;
    justify-content: flex-start;
    width: 360px !important;
    min-height: 44px;
    padding: 6px 14px 6px 10px;
    gap: 11px;
    color: rgba(255, 253, 248, 0.76);
    background: rgba(14, 17, 17, 0.86);
    border: 1px solid rgba(180, 136, 93, 0.22);
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock::before {
    display: none;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-mark {
    display: grid;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--r7-gold);
    background: rgba(180, 136, 93, 0.12);
    border: 1px solid rgba(180, 136, 93, 0.2);
    border-radius: 50%;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-mark svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-label {
    min-width: 0;
    flex: 1 1 auto;
    display: grid;
    gap: 3px;
    color: rgba(255, 253, 248, 0.56);
    font-size: 0.6rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-label small,
html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-label b {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-label b {
    color: rgba(255, 253, 248, 0.9);
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.01em;
    line-height: 1.1;
    text-transform: none;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-discount {
    flex: 0 0 auto;
    padding-left: 11px;
    color: var(--r7-gold);
    border-left: 1px solid rgba(180, 136, 93, 0.24);
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-discount::before {
    display: none;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock strong {
    flex: 0 0 auto;
    min-width: 46px;
    color: var(--r7-white);
    font-size: 1.1rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
    text-align: right;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock:hover,
html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock:focus-visible {
    color: var(--r7-white);
    background: rgba(22, 25, 25, 0.94);
    border-color: rgba(180, 136, 93, 0.42);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
    transform: translateY(-1px);
}

@media (max-width: 1023px) {
    html body .rm-header__inner > .rm-weather-offer,
    html body .rm-header__inner > .rm-weather-offer.is-forecast {
        width: 220px !important;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock {
        width: 220px !important;
        min-height: 40px;
        padding: 5px 10px 5px 8px;
        gap: 8px;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-mark {
        flex-basis: 26px;
        width: 26px;
        height: 26px;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-mark svg {
        width: 15px;
        height: 15px;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-label b {
        display: none;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-label {
        font-size: 0.56rem;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-discount {
        padding-left: 8px;
        font-size: 0.68rem;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock strong {
        min-width: 40px;
        font-size: 0.98rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock,
    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock:hover,
    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock:focus-visible {
        transition: none;
        transform: none;
    }
}

html body .rm-header__inner > .rm-weather-offer {
    width: 360px !important;
}

@media (max-width: 1023px) {
    html body .rm-header__inner > .rm-weather-offer,
    html body .rm-header__inner > .rm-weather-offer.is-forecast {
        width: 220px !important;
    }
}

/* Mobile hero contract: center the message and CTA, remove decorative right-rail
   text, and keep detailed content readable in its natural left alignment. */
@media (max-width: 760px) {
    .r7-hero__signature,
    .r7-hero__rail {
        display: none;
    }

    .r7-hero__eyebrow,
    .r7-hero__content,
    .r7-hero__lead,
    .r7-hero__lead p,
    .r7-hero__facts,
    .rm-page-hero__copy,
    .rm-page-hero__copy > p,
    .rm-price-hero__copy,
    .rm-price-hero__copy > p {
        margin-inline: auto;
        text-align: center;
    }

    .r7-hero__eyebrow,
    .r7-hero__facts {
        justify-content: center;
    }

    .r7-hero__content,
    .rm-page-hero__copy,
    .rm-price-hero__copy {
        width: min(100%, 34rem);
    }

    .r7-hero__lead p,
    .rm-page-hero__copy > p,
    .rm-price-hero__copy > p {
        max-width: 34rem;
    }

    .r7-hero .r7-actions,
    .rm-page-hero__actions,
    .rm-price-hero__actions {
        justify-content: center;
    }

    .rm-page-hero__microcopy,
    .rm-price-hero__legal {
        text-align: center;
    }
}

/* Cookie consent: use the same restrained dark surface as the site chrome. */
.rm-consent-stack {
    right: 20px;
    bottom: calc(20px + var(--r7-safe-bottom));
    left: auto;
    width: min(760px, calc(100vw - 40px));
}

.rm-consent-card.rm-consent-card--compact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    width: 100%;
    padding: clamp(24px, 3vw, 34px);
    color: var(--r7-white);
    background:
        radial-gradient(circle at 100% 0%, rgba(180, 136, 93, 0.2), transparent 42%),
        #111719;
    border: 1px solid rgba(255, 253, 248, 0.18);
    border-radius: 4px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    animation: rm-consent-in 320ms var(--r7-ease) both;
}

.rm-consent-card--compact .rm-consent-card__copy {
    min-width: 0;
}

.rm-consent-card--compact .rm-kicker {
    color: var(--r7-gold);
}

.rm-consent-card--compact .rm-consent-card__copy h3 {
    max-width: 26ch;
    margin: 12px 0 10px;
    color: var(--r7-white);
    font-family: var(--r7-font-sans);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    font-weight: 650;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.rm-consent-card--compact .rm-consent-card__copy p {
    max-width: 52ch;
    margin: 0;
    color: rgba(255, 253, 248, 0.68);
    font-size: 0.92rem;
    line-height: 1.55;
}

.rm-consent-card--compact .rm-consent-card__actions {
    display: grid;
    gap: 8px;
    min-width: 190px;
}

.rm-consent-card--compact .rm-consent-card__actions .rm-button {
    min-height: 46px;
    justify-content: center;
    padding-inline: 16px;
    white-space: nowrap;
    font-size: 0.7rem;
}

.rm-consent-card--compact .rm-button--secondary,
.rm-consent-card--compact .rm-button--ghost {
    color: rgba(255, 253, 248, 0.82);
    border-color: rgba(255, 253, 248, 0.3);
    background: transparent;
}

.rm-consent-card--compact .rm-button--secondary:hover,
.rm-consent-card--compact .rm-button--secondary:focus-visible,
.rm-consent-card--compact .rm-button--ghost:hover,
.rm-consent-card--compact .rm-button--ghost:focus-visible {
    color: var(--r7-white);
    border-color: var(--r7-gold);
    background: rgba(180, 136, 93, 0.12);
}

.rm-consent-card--compact .rm-button:focus-visible,
.rm-consent-dock:focus-visible {
    outline: 2px solid var(--r7-gold);
    outline-offset: 3px;
}

@keyframes rm-consent-in {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 760px) {
    .rm-consent-stack {
        right: calc(12px + var(--r7-safe-right));
        bottom: calc(12px + var(--r7-safe-bottom));
        left: calc(12px + var(--r7-safe-left));
        width: auto;
    }

    .rm-consent-card.rm-consent-card--compact {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 22px 18px 18px;
    }

    .rm-consent-card--compact .rm-consent-card__copy h3 {
        max-width: 20ch;
        font-size: 1.45rem;
    }

    .rm-consent-card--compact .rm-consent-card__copy p {
        font-size: 0.88rem;
    }

    .rm-consent-card--compact .rm-consent-card__actions {
        grid-template-columns: 1fr;
        min-width: 0;
    }

    .rm-consent-card--compact .rm-consent-card__actions .rm-button {
        min-height: 48px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rm-consent-card.rm-consent-card--compact {
        animation: none;
    }
}

/* When cookie settings are collapsed, reserve a separate bottom lane for the
   weather offer. The two fixed controls must never share the same rectangle. */
body:has(.rm-consent-dock:not([hidden])) .rm-consent-dock {
    right: 20px;
    bottom: calc(20px + var(--r7-safe-bottom));
}

body:has(.rm-consent-dock:not([hidden])) .rm-weather-offer {
    bottom: calc(94px + var(--r7-safe-bottom)) !important;
}

/* Weather lives in the header: one calm information point instead of a
   floating corner popup. The offer panel opens directly beneath it. */
.rm-header__inner {
    position: relative;
}

.rm-header__inner > .rm-weather-offer {
    position: absolute;
    top: 10px;
    left: 50%;
    right: auto;
    bottom: auto;
    z-index: 1002;
    width: min(360px, calc(100% - 360px));
    transform: translateX(-50%);
}

.rm-header__inner > .rm-weather-offer .rm-weather-offer__panel {
    position: absolute;
    top: 58px;
    right: 0;
    width: min(520px, calc(100vw - 32px));
}

.rm-header__inner > .rm-weather-offer .rm-weather-offer__dock {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    border-radius: 999px;
    background: rgba(17, 23, 25, 0.96);
}

.rm-weather-offer__forecast {
    display: block;
    padding: 10px 14px 9px;
    color: var(--r7-white);
    background: rgba(17, 23, 25, 0.9);
    border: 1px solid rgba(255, 253, 248, 0.16);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px) saturate(120%);
}

.rm-weather-offer__forecast[hidden] {
    display: none;
}

.rm-weather-offer__forecast-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.rm-weather-offer__forecast-head > div {
    min-width: 0;
}

.rm-weather-offer__forecast-kicker,
.rm-weather-offer__forecast-day small {
    display: block;
    color: rgba(255, 253, 248, 0.56);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rm-weather-offer__forecast-head strong {
    display: block;
    margin-top: 3px;
    font-size: 0.78rem;
    font-weight: 650;
    white-space: nowrap;
}

.rm-weather-offer__forecast-temp {
    color: var(--r7-gold);
    font-size: 1.2rem;
    font-weight: 750;
    font-variant-numeric: tabular-nums;
}

.rm-weather-offer__forecast-days {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    margin-top: 9px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 253, 248, 0.12);
}

.rm-weather-offer__forecast-day {
    display: grid;
    min-width: 0;
    gap: 2px;
    justify-items: center;
    text-align: center;
}

.rm-weather-offer__forecast-date {
    color: rgba(255, 253, 248, 0.72);
    font-size: 0.63rem;
    text-transform: capitalize;
}

.rm-weather-offer__forecast-icon {
    color: var(--r7-gold);
    font-size: 1rem;
    line-height: 1.1;
}

.rm-weather-offer__forecast-temperatures {
    color: var(--r7-white);
    font-size: 0.64rem;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.rm-weather-offer__forecast-day small {
    max-width: 12ch;
    overflow: hidden;
    font-size: 0.5rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rm-header__inner > .rm-weather-offer.is-forecast {
    width: min(390px, calc(100% - 360px));
}

@media (max-width: 1023px) {
    .rm-header__inner > .rm-weather-offer,
    .rm-header__inner > .rm-weather-offer.is-forecast {
        top: 8px;
        left: 50%;
        width: min(220px, calc(100% - 170px));
    }

    .rm-header__inner > .rm-weather-offer .rm-weather-offer__panel {
        top: 58px;
        right: auto;
        left: 50%;
        width: min(520px, calc(100vw - 24px));
        transform: translateX(-50%);
    }

    .rm-weather-offer__forecast {
        padding: 8px 10px;
    }

    .rm-weather-offer__forecast-days {
        gap: 2px;
    }

    .rm-weather-offer__forecast-day:nth-child(n + 4) {
        display: none;
    }

    .rm-weather-offer__forecast-head strong {
        max-width: 15ch;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 1023px) {
    body:has(.rm-consent-dock:not([hidden])) .rm-consent-dock {
        right: calc(12px + var(--r7-safe-right));
        bottom: calc(76px + var(--r7-safe-bottom));
    }

    body:has(.rm-consent-dock:not([hidden])) .rm-weather-offer {
        bottom: calc(154px + var(--r7-safe-bottom)) !important;
    }
}

.rm-page-hero--media {
    padding-bottom: 0;
    overflow: hidden;
}

.rm-page-hero__grid {
    display: grid;
    gap: 42px;
}

.rm-page-hero__copy {
    min-width: 0;
    padding-bottom: 54px;
}

.rm-page-hero__actions {
    display: grid;
    margin-top: 32px;
    gap: 14px;
}

.rm-page-hero__media {
    position: relative;
    width: calc(100% + 36px);
    height: clamp(340px, 78vw, 520px);
    margin: 0 -18px;
    overflow: hidden;
    background: #081314;
}

.rm-page-hero__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(180deg, rgba(3, 12, 13, 0.08), rgba(3, 12, 13, 0.24)),
        linear-gradient(90deg, rgba(3, 12, 13, 0.16), transparent 44%);
    pointer-events: none;
}

.rm-page-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82) contrast(1.05);
    transform: scale(1.015);
    transition: transform 900ms var(--r7-ease), filter 500ms ease-out;
}

.rm-page-hero--media:hover .rm-page-hero__media img {
    filter: saturate(0.94) contrast(1.05);
    transform: scale(1.04);
}

.rm-breadcrumbs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    color: rgba(255, 253, 248, 0.55);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rm-breadcrumbs a,
.rm-breadcrumbs span {
    color: inherit;
    text-decoration: none;
}

.rm-section,
.rm-price-section,
.rv6-directory__services,
.rv6-directory__final {
    padding: clamp(76px, 9vw, 136px) 0;
}

.rm-section--dark,
.rv6-directory__classes {
    color: var(--r7-white);
    background: var(--r7-ink);
}

.rm-section-head {
    max-width: 880px;
    margin-bottom: 48px;
}

.rm-section-head h2,
.rm-content-card h2,
.rm-gift-card h2,
.rv6-directory h2 {
    margin: 16px 0 20px;
    font-family: var(--r7-font-body);
    font-size: clamp(2.35rem, 7vw, 5rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.rm-section-head p,
.rm-content-card p,
.rm-gift-card p {
    color: var(--r7-muted);
}

/* The application copy card sits inside a dark section but has a light surface. */
.rm-career-application__copy h3 {
    color: var(--r7-text);
}

.rm-career-application__copy li {
    color: var(--r7-text);
}

/* Keep the service hero CTA aligned with the shared gold primary buttons. */
.rv6-button--dark {
    color: var(--r7-ink);
}

.rm-section--dark .rm-section-head p,
.rv6-directory__classes p {
    color: rgba(255, 253, 248, 0.58);
}

.rm-trust-strip {
    color: var(--r7-text);
    background: var(--r7-paper);
    border-bottom: 1px solid var(--r7-line);
}

.rm-trust-strip__inner {
    display: grid;
}

.rm-trust-pill {
    display: grid;
    min-height: 94px;
    padding: 20px 0;
    align-content: center;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid var(--r7-line);
}

.rm-trust-pill__value {
    font-weight: 800;
}

.rm-trust-pill__text {
    color: var(--r7-muted);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rm-feature-grid,
.rm-path-grid,
.rm-review-grid,
.rm-contact-grid,
.rm-gallery-grid,
.rm-faq-grid,
.rm-price-meta-grid {
    display: grid;
    gap: 16px;
}

.rm-feature-card,
.rm-path-card,
.rm-review-card,
.rm-contact-card,
.rm-faq-item,
.rm-content-card,
.rm-gift-card,
.rm-price-meta-card,
.rm-price-note-card {
    padding: 26px;
    background: var(--r7-white);
    border: 1px solid var(--r7-line);
    border-radius: 2px;
}

.rm-faq-item {
    min-width: 0;
}

.rm-faq-item__toggle {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 0;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: inherit;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
    background: transparent;
    border: 0;
}

.rm-faq-item__content {
    max-width: 760px;
}

.rm-section--dark :is(.rm-feature-card, .rm-path-card, .rm-review-card, .rm-contact-card, .rm-faq-item) {
    color: var(--r7-white);
    background: rgba(255, 255, 255, 0.035);
    border-color: var(--r7-line-light);
}

/* Services directory */
.rv6-directory {
    color: var(--r7-text);
    background: var(--r7-paper);
}

.rv6-directory__hero-grid,
.rv6-directory__final-grid,
.rv6-directory__classes-grid {
    display: grid;
    gap: 38px;
}

.rv6-directory__hero h1 em,
.rv6-directory__final h2 em {
    color: inherit;
    font-family: var(--r7-font-body);
    font-style: normal;
    font-weight: inherit;
}

.rv6-directory__lead p,
.rv6-directory__final p {
    color: rgba(255, 253, 248, 0.62);
}

.rv6-directory__hero .rv6-actions,
.rv6-directory__final .rv6-actions {
    display: grid;
    gap: 10px;
}

.rv6-directory :is(.rv6-button, .rv6-text-link) {
    display: inline-flex;
    min-height: 52px;
    padding: 11px 20px;
    align-items: center;
    justify-content: center;
    color: var(--r7-white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid currentColor;
}

.rv6-directory .rv6-button--dark {
    color: var(--r7-ink);
    background: var(--r7-gold);
    border-color: var(--r7-gold);
}

.rv6-directory__facts {
    display: grid;
    margin-top: 54px;
    border-top: 1px solid var(--r7-line-light);
}

.rv6-directory__facts > * {
    display: grid;
    min-height: 82px;
    padding: 17px 0;
    align-content: center;
    color: var(--r7-white);
    text-decoration: none;
    border-bottom: 1px solid var(--r7-line-light);
}

.rv6-directory__facts strong,
.rv6-directory__facts span {
    display: block;
}

.rv6-directory__facts span {
    color: rgba(255, 253, 248, 0.48);
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rv6-directory__services .rv6-heading {
    max-width: 920px;
    margin-bottom: 56px;
}

.rv6-directory__services .rv6-label,
.rv6-directory__classes .rv6-label,
.rv6-directory__final .rv6-label {
    color: var(--r7-red);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.rv6-directory__services .rv6-heading h2 {
    margin: 16px 0 22px;
}

.rv6-directory__services .rv6-heading p {
    color: var(--r7-muted);
}

.rv6-directory__list {
    border-top: 1px solid var(--r7-line);
}

.rv6-directory-card {
    display: grid !important;
    gap: 24px;
    padding: 28px 0 38px;
    background: transparent !important;
    border-bottom: 1px solid var(--r7-line);
}

.rv6-directory-card__media {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--r7-paper-soft);
}

.rv6-directory-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms var(--r7-ease);
}

.rv6-directory-card__media:hover img {
    transform: scale(1.025);
}

.rv6-directory-card__body {
    display: flex;
    flex-direction: column;
}

.rv6-directory-card__meta,
.rv6-directory-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.rv6-directory-card__meta {
    color: var(--r7-muted);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rv6-directory-card__meta strong {
    color: var(--r7-text);
    font-size: 0.82rem;
    letter-spacing: 0;
}

.rv6-directory-card h3 {
    margin: 28px 0 14px;
    font-family: var(--r7-font-body);
    font-size: clamp(2.1rem, 6vw, 3.8rem);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.rv6-directory-card p {
    max-width: 600px;
    margin-bottom: 28px;
    color: var(--r7-muted);
}

.rv6-directory-card__actions {
    justify-content: flex-start;
}

.rv6-directory-card__actions a,
.rv6-directory-card__actions button {
    min-height: 44px;
    padding: 8px 0;
    color: var(--r7-text);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    background: transparent;
    border: 0;
    border-bottom: 1px solid currentColor;
}

.rv6-directory-card__actions button {
    color: var(--r7-red);
}

.rv6-directory__classes h2 {
    margin: 16px 0 24px;
    color: var(--r7-white);
}

.rv6-directory__class-list {
    border-top: 1px solid var(--r7-line-light);
}

.rv6-directory__class-list article {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 24px 0;
    border-bottom: 1px solid var(--r7-line-light);
}

.rv6-directory__class-list article > span {
    color: var(--r7-gold);
    font-size: 0.68rem;
}

.rv6-directory__class-list h3 {
    margin-bottom: 8px;
    color: var(--r7-white);
    font-family: var(--r7-font-body);
    font-size: 1.5rem;
    font-weight: 500;
}

.rv6-directory__class-list p {
    margin-bottom: 0;
}

.rv6-directory__class-list .rv6-button {
    margin-top: 28px;
}

.rv6-directory__final {
    color: var(--r7-white);
    background:
        radial-gradient(circle at 80% 20%, rgba(248, 248, 245, 0.07), transparent 28%),
        var(--r7-ink-soft);
}

.rv6-directory__final h2 {
    color: var(--r7-white);
}

.rm-feature-card h3,
.rm-path-card h3,
.rm-review-card h3,
.rm-faq-item h3,
.rm-contact-card h3 {
    font-family: var(--r7-font-body);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.035em;
}

.rm-list {
    display: grid;
    margin: 18px 0 0;
    padding: 0;
    gap: 10px;
    list-style: none;
}

.rm-list li {
    position: relative;
    padding-left: 20px;
}

.rm-list li::before {
    content: "";
    position: absolute;
    top: 0.75em;
    left: 0;
    width: 8px;
    height: 1px;
    background: var(--r7-red);
}

.rm-gallery-card {
    overflow: hidden;
    background: var(--r7-white);
    border: 1px solid var(--r7-line);
}

.rm-gallery-card__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.rm-gallery-card__body {
    padding: 22px;
}

.rm-contact-actions,
.rm-section-cta,
.rm-footer__cta-actions,
.rm-gift-order-form__actions {
    display: grid;
    gap: 10px;
}

/* Price, calculators and disclosures */
.rm-price-page {
    background: var(--r7-paper);
}

.rm-price-hero__actions,
.rm-ppf-landing__actions {
    display: grid;
    gap: 10px;
}

.rm-price-nav {
    display: flex;
    width: 100%;
    max-width: 100%;
    padding: 12px 0;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
}

.rm-price-nav a {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 11px 16px;
    color: var(--r7-text);
    font-size: 0.72rem;
    font-weight: 800;
    text-decoration: none;
    background: var(--r7-white);
    border: 1px solid var(--r7-line);
}

.rm-price-stack,
.rm-calc-stage {
    display: grid;
    gap: 16px;
}

.rm-price-card,
.rm-calc-card {
    overflow: hidden;
    background: var(--r7-white);
    border: 1px solid var(--r7-line);
    border-radius: 2px;
}

.rm-price-card__head,
.rm-calc-card__head,
.rm-calc-card__body,
.rm-calc-card__footer {
    padding: 24px;
}

.rm-price-card__action {
    display: grid;
    width: 100%;
    padding: 24px;
    grid-template-columns: 1fr auto;
    gap: 16px;
    color: var(--r7-text);
    text-align: left;
    background: transparent;
    border: 0;
}

.rm-price-card__action--open,
.rm-price-card__action--closed {
    display: inline-flex;
    align-items: center;
}

.rm-price-table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
}

.rm-price-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
}

.rm-price-table th,
.rm-price-table td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid var(--r7-line);
}

.rm-price-table thead th {
    color: var(--r7-muted);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rm-calc-field {
    display: grid;
    min-width: 0;
    gap: 12px;
    margin-bottom: 20px;
}

.rm-calc-label,
.rm-gift-order-form__field > span,
.rm-career-form label > span {
    color: var(--r7-muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

input,
select,
textarea {
    width: 100%;
    min-height: 54px;
    padding: 13px 15px;
    color: var(--r7-text);
    background: var(--r7-white);
    border: 1px solid rgba(17, 23, 22, 0.28);
    border-radius: 2px;
    transition: border-color 160ms ease-out, box-shadow 160ms ease-out;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--r7-gold-deep);
    box-shadow: 0 0 0 3px rgba(184, 188, 191, 0.22);
}

.rm-segmented,
.rm-option-grid,
.rm-ppf-class-grid,
.rm-ppf-film-grid,
.rm-ppf-package-grid,
.rm-ppf-zone-chip-grid {
    display: grid;
    min-width: 0;
    gap: 10px;
}

.rm-segmented__button,
.rm-option-card,
.rm-ppf-class-card,
.rm-ppf-film-card,
.rm-ppf-package-card,
.rm-ppf-zone-chip {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 15px;
    color: var(--r7-text);
    text-align: left;
    background: var(--r7-white);
    border: 1px solid var(--r7-line);
    border-radius: 2px;
}

.rm-option-card,
.rm-ppf-class-card,
.rm-ppf-film-card,
.rm-ppf-package-card {
    display: grid;
    gap: 6px;
}

.rm-option-card__title,
.rm-option-card__meta,
.rm-ppf-class-card__title,
.rm-ppf-class-card__text,
.rm-ppf-film-card__title,
.rm-ppf-film-card__brands,
.rm-ppf-film-card__text,
.rm-ppf-package-card__title,
.rm-ppf-package-card__text,
.rm-ppf-package-card__meta {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
}

.rm-option-card__title,
.rm-option-card__meta {
    display: block;
}

.rm-option-card__meta,
.rm-ppf-class-card__text,
.rm-ppf-film-card__brands,
.rm-ppf-film-card__text,
.rm-ppf-package-card__text,
.rm-ppf-package-card__meta {
    color: var(--r7-muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

:is(.rm-segmented__button, .rm-option-card, .rm-ppf-class-card, .rm-ppf-film-card, .rm-ppf-package-card, .rm-ppf-zone-chip).is-active,
:is(.rm-segmented__button, .rm-option-card, .rm-ppf-class-card, .rm-ppf-film-card, .rm-ppf-package-card, .rm-ppf-zone-chip)[aria-pressed="true"] {
    border-color: var(--r7-gold-deep);
    box-shadow: inset 0 0 0 1px var(--r7-gold-deep);
}

.rm-calc-result {
    padding: 22px;
    color: var(--r7-white);
    background: var(--r7-ink);
}

.rm-calc-result__price {
    font-family: var(--r7-font-body);
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.05em;
}

/* Footer and overlays */
.rm-footer {
    padding: 74px 0 26px;
    color: var(--r7-white);
    background: #061011;
}

.rm-footer__cta {
    display: grid;
    margin-bottom: 70px;
    padding: 34px 0 46px;
    gap: 28px;
    border-top: 1px solid var(--r7-line-light);
    border-bottom: 1px solid var(--r7-line-light);
}

.rm-footer__cta h2 {
    margin: 14px 0 18px;
    font-family: var(--r7-font-body);
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.rm-footer__cta p,
.rm-footer__brand p,
.rm-footer__contact-note,
.rm-footer__legal {
    color: rgba(255, 253, 248, 0.52);
}

.rm-footer__inner {
    display: grid;
    gap: 42px;
}

.rm-brand--footer img {
    width: 122px;
}

.rm-footer__brand p {
    max-width: 420px;
    margin-top: 22px;
}

.rm-footer__col {
    display: grid;
    align-content: start;
    gap: 8px;
}

.rm-footer__col h3 {
    margin-bottom: 10px;
    color: var(--r7-gold);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rm-footer__col a,
.rm-footer__col span {
    color: rgba(255, 253, 248, 0.72);
    text-decoration: none;
}

.rm-footer__phone-primary {
    font-size: 1.25rem;
    font-weight: 800;
}

.rm-footer__legal {
    margin-top: 48px;
    padding-top: 22px;
    font-size: 0.7rem;
    border-top: 1px solid var(--r7-line-light);
}

.rm-rating-link {
    color: var(--r7-gold);
    text-decoration: none;
}

.rm-booking-modal,
.rm-gift-order-modal,
.rm-faq-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    padding: 0;
    align-items: flex-end;
    justify-content: center;
    background: rgba(3, 8, 9, 0.86);
    backdrop-filter: blur(12px);
}

:is(.rm-booking-modal, .rm-gift-order-modal, .rm-faq-modal).is-open {
    display: flex;
}

.rm-booking-modal__backdrop,
.rm-gift-order-modal__backdrop,
.rm-faq-modal__backdrop {
    position: absolute;
    inset: 0;
}

.rm-booking-modal__dialog,
.rm-gift-order-modal__dialog,
.rm-faq-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 92svh;
    overflow: hidden auto;
    color: var(--r7-text);
    background: var(--r7-paper);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.rm-booking-modal__header,
.rm-gift-order-modal__header,
.rm-faq-modal__header {
    display: grid;
    padding: 24px 18px;
    grid-template-columns: 1fr auto;
    gap: 16px;
    border-bottom: 1px solid var(--r7-line);
}

:is(.rm-booking-modal__copy, .rm-gift-order-modal__copy, .rm-faq-modal__copy) h2 {
    margin: 10px 0;
    font-family: var(--r7-font-body);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

:is(.rm-booking-modal__copy, .rm-gift-order-modal__copy, .rm-faq-modal__copy) p {
    margin-bottom: 0;
    color: var(--r7-muted);
    font-size: 0.9rem;
}

.rm-booking-modal__close {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    color: var(--r7-text);
    background: transparent;
    border: 1px solid var(--r7-line);
    border-radius: 50%;
}

.rm-booking-modal__frame-wrap,
.rm-booking-direct,
.rm-gift-order-form,
.rm-faq-modal__grid,
.rm-faq-modal__footer {
    background: var(--r7-paper);
}

.rm-booking-direct,
.rm-gift-order-form,
.rm-faq-modal__grid,
.rm-faq-modal__footer {
    padding: 24px 18px 30px;
}

.rm-booking-direct {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 10px 12px;
}

.rm-booking-direct__index {
    color: var(--r7-red);
    font-size: 0.7rem;
}

.rm-booking-direct__copy strong {
    display: block;
    font-size: 1.25rem;
    line-height: 1.25;
}

.rm-booking-direct__copy p {
    color: var(--r7-muted);
}

.rm-booking-direct__actions {
    display: grid;
    grid-column: 1 / -1;
    gap: 10px;
}

.rm-booking-direct__steps {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 4px 0 2px;
    padding: 0;
    list-style: none;
}

.rm-booking-direct__steps li {
    display: grid;
    gap: 5px;
    padding: 12px 12px 11px;
    color: var(--r7-muted);
    background: rgba(180, 136, 93, 0.07);
    border: 1px solid rgba(180, 136, 93, 0.16);
    border-radius: 14px;
}

.rm-booking-direct__steps b {
    color: var(--r7-gold);
    font-size: 0.66rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.08em;
}

.rm-booking-direct__steps span {
    color: var(--r7-text);
    font-size: 0.78rem;
    font-weight: 700;
}

.rm-booking-direct__actions .rm-button--primary {
    min-height: 52px;
}

.rm-booking-direct__actions .rm-button--secondary {
    min-height: 48px;
    font-size: 0.72rem;
}

.rm-gift-order-form__grid,
.rm-career-form {
    display: grid;
    gap: 16px;
}

.rm-gift-order-form__field {
    display: grid;
    gap: 8px;
}

.rm-gift-order-form__amount-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.rm-gift-order-form__amount {
    min-height: 48px;
    color: var(--r7-text);
    background: var(--r7-white);
    border: 1px solid var(--r7-line);
}

.rm-gift-order-form__amount.is-active {
    color: var(--r7-ink);
    background: var(--r7-gold);
    border-color: var(--r7-gold);
}

.rm-form-consent {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
}

.rm-form-consent input {
    width: 20px;
    min-height: 20px;
    margin: 2px 0 0;
}

/* Career form sits on a light card inside a dark section. Keep its helper,
   consent and secondary action readable instead of inheriting section white. */
.rm-career-form {
    color: var(--r7-text);
}

.rm-career-form .rm-form-consent,
.rm-career-form .rm-gift-order-form__status,
.rm-career-form .rm-gift-order-form__legal {
    color: var(--r7-muted);
}

.rm-career-form .rm-gift-order-form__status {
    min-height: 1.5em;
    font-size: 0.88rem;
    line-height: 1.55;
}

.rm-section--dark .rm-career-form .rm-button--secondary {
    color: var(--r7-text);
    border-color: rgba(23, 25, 27, 0.48);
}

.rm-section--dark .rm-career-form .rm-button--secondary:hover,
.rm-section--dark .rm-career-form .rm-button--secondary:focus-visible {
    color: var(--r7-white);
    background: var(--r7-text);
    border-color: var(--r7-text);
}

.rm-career-form .rm-form-consent span {
    color: var(--r7-muted);
    font-size: 0.76rem;
    line-height: 1.45;
}

.rm-career-form .rm-gift-order-form__legal {
    font-size: 0.74rem;
    line-height: 1.5;
}

.rm-mobile-booking-fab {
    position: fixed;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: auto;
    z-index: 900;
    width: auto;
    min-height: 52px;
    padding: 0 22px;
    color: var(--r7-ink);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--r7-gold);
    border: 0;
    border-radius: 2px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

body.home .rm-mobile-booking-fab {
    display: none;
}

.rm-consent-stack {
    position: fixed;
    right: 14px;
    bottom: 80px;
    left: 14px;
    z-index: 850;
}

.rm-consent-dock {
    position: fixed;
    right: 14px;
    bottom: calc(76px + env(safe-area-inset-bottom));
    z-index: 850;
    display: inline-flex;
    width: auto;
    min-height: 44px;
    padding: 10px 14px;
    align-items: center;
    gap: 12px;
    color: rgba(255, 253, 248, 0.76);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(6, 16, 17, 0.94);
    border: 1px solid rgba(255, 253, 248, 0.18);
    border-radius: 2px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}

.rm-consent-dock__action {
    color: var(--r7-gold);
}

.rm-consent-dock[hidden],
.rm-consent-card[hidden] {
    display: none !important;
}

.rm-consent-card {
    width: min(100%, 680px);
    margin-left: auto;
    padding: 18px;
    color: var(--r7-text);
    background: var(--r7-paper);
    border: 1px solid var(--r7-line);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

@media (min-width: 700px) {
    .r7-actions,
    .rm-contact-actions,
    .rm-section-cta,
    .rm-footer__cta-actions,
    .rm-page-hero__actions,
    .rm-price-hero__actions,
    .rm-ppf-landing__actions {
        display: flex;
        flex-wrap: wrap;
    }

    .r7-hero__eyebrow span:last-child {
        display: inline;
    }

    .r7-service {
        grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
        gap: clamp(34px, 6vw, 90px);
    }

    .rv6-directory-card {
        grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
        gap: clamp(34px, 6vw, 84px);
    }

    .rv6-directory-card__body {
        padding: 8px 0;
    }

    .rv6-directory-card__meta {
        margin-bottom: auto;
    }

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

    .rv6-directory__facts > * {
        padding: 20px;
        border-right: 1px solid var(--r7-line-light);
        border-bottom: 0;
    }

    .r7-service__content {
        padding: 8px 0;
    }

    .r7-service__meta {
        margin-bottom: auto;
    }

    .r7-intro__marks,
    .rm-trust-strip__inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .r7-intro__marks span,
    .rm-trust-pill {
        padding: 20px;
        border-right: 1px solid var(--r7-line);
        border-bottom: 0;
    }

    .r7-proof__gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .r7-proof__item--1 {
        grid-row: span 2;
    }

    .r7-proof__item--1 img {
        height: calc(100% - 34px);
        aspect-ratio: auto;
    }

    .r7-process__steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .r7-process__steps li {
        padding: 32px;
        border-right: 1px solid var(--r7-line-light);
    }

    .r7-reviews__headline {
        grid-template-columns: 0.65fr 1.35fr;
        align-items: end;
    }

    .r7-reviews__list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .r7-reviews__list article {
        padding: 30px;
        border-right: 1px solid var(--r7-line);
    }

    .r7-gift__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .rm-feature-grid,
    .rm-path-grid,
    .rm-review-grid,
    .rm-contact-grid,
    .rm-gallery-grid,
    .rm-faq-grid,
    .rm-price-meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rm-segmented,
    .rm-option-grid,
    .rm-ppf-class-grid,
    .rm-ppf-film-grid,
    .rm-ppf-package-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .rm-gift-order-form__grid,
    .rm-career-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rm-gift-order-form__field--full {
        grid-column: 1 / -1;
    }

    .rm-booking-modal,
    .rm-gift-order-modal,
    .rm-faq-modal {
        padding: 32px;
        align-items: center;
    }

    .rm-booking-modal__dialog,
    .rm-gift-order-modal__dialog,
    .rm-faq-modal__dialog {
        width: min(860px, 100%);
        max-height: calc(100svh - 64px);
    }

    .rm-booking-modal__header,
    .rm-gift-order-modal__header,
    .rm-faq-modal__header,
    .rm-booking-direct,
    .rm-gift-order-form,
    .rm-faq-modal__grid,
    .rm-faq-modal__footer {
        padding: 34px 40px;
    }

    .rm-footer__inner {
        grid-template-columns: 1.4fr repeat(3, 0.7fr);
    }

    .rm-footer__cta {
        grid-template-columns: 1.25fr 0.75fr;
        align-items: end;
    }
}

@media (min-width: 1024px) {
    .rm-page-hero.rm-page-hero--media {
        padding: 110px 0 0;
    }

    .rm-page-hero--media .rm-page-hero__grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
        gap: clamp(56px, 7vw, 118px);
        align-items: stretch;
    }

    .rm-page-hero--media .rm-page-hero__copy {
        display: flex;
        min-height: 610px;
        padding-bottom: 82px;
        flex-direction: column;
        justify-content: center;
    }

    .rm-page-hero--media h1 {
        max-width: 820px;
        font-size: clamp(3.8rem, 5vw, 5.4rem);
    }

    .rm-page-hero__media {
        width: 100%;
        height: auto;
        min-height: 610px;
        margin: 0;
    }

    .rm-header {
        height: 82px;
    }

    .rm-header__inner {
        width: min(100% - 48px, 1380px);
    }

    .rm-brand img {
        width: 112px;
    }

    .rm-burger,
    .rm-nav__meta {
        display: none;
    }

    .rm-nav {
        position: static;
        display: flex;
        margin-left: auto;
        padding: 0;
        flex-direction: row;
        gap: 28px;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        background: none;
        transform: none;
    }

    .rm-nav > a {
        position: relative;
        padding: 12px 0;
        font-family: var(--r7-font-body);
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.09em;
        text-transform: uppercase;
    }

    .rm-nav > a::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 7px;
        left: 0;
        height: 1px;
        background: var(--r7-gold);
        transform: scaleX(0);
        transition: transform 220ms var(--r7-ease);
    }

    .rm-nav > a:hover::after,
    .rm-nav > a.is-active::after {
        transform: scaleX(1);
    }

    .rm-header__actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .rm-header__link {
        color: rgba(255, 253, 248, 0.66);
        font-size: 0.68rem;
        text-decoration: none;
        text-transform: uppercase;
    }

    .rm-header__cta {
        min-height: 46px;
        padding-inline: 20px;
        color: var(--r7-ink);
        background: var(--r7-gold);
        border-color: var(--r7-gold);
    }

    .rm-scroll-progress {
        top: 81px;
    }

    .r7-hero__inner {
        padding-top: 124px;
    }

    .r7-hero__content {
        grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
        align-items: center;
        gap: clamp(70px, 9vw, 150px);
    }

    .r7-hero h1 {
        font-size: clamp(3.9rem, 6.1vw, 5.6rem);
    }

    .r7-hero__facts {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding-inline: 22px;
        background: rgba(8, 10, 12, 0.42);
        border: 1px solid var(--r7-line-light);
        backdrop-filter: blur(18px);
    }

    .r7-hero__facts div {
        display: grid;
        min-height: 96px;
        padding: 18px 24px 0 0;
        gap: 4px;
        border-right: 1px solid var(--r7-line-light);
    }

    .r7-hero__facts span {
        color: rgba(255, 253, 248, 0.46);
        font-size: 0.62rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .r7-hero__facts strong {
        font-size: 0.86rem;
    }

    .r7-intro__grid {
        grid-template-columns: 0.28fr 1.2fr 0.52fr;
        align-items: start;
        gap: 70px;
    }

    .rv6-directory__hero-grid,
    .rv6-directory__final-grid,
    .rv6-directory__classes-grid {
        grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
        gap: clamp(70px, 10vw, 150px);
        align-items: end;
    }

    .r7-intro__marks {
        grid-template-columns: 1fr;
    }

    .r7-intro__marks span {
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid var(--r7-line);
    }

    .r7-proof__grid,
    .r7-price__grid,
    .r7-gift__grid {
        grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
        gap: clamp(70px, 10vw, 160px);
        align-items: start;
    }

    .r7-proof__copy {
        position: sticky;
        top: 130px;
    }

    .r7-process__steps {
        grid-template-columns: repeat(4, 1fr);
    }

    .r7-process__steps li {
        min-height: 260px;
    }

    .r7-gift__cards {
        transform: none;
    }

    .rm-page-hero,
    .rm-price-hero,
    .rv6-directory__hero {
        padding: 170px 0 110px;
    }

    .rm-feature-grid,
    .rm-path-grid,
    .rm-review-grid,
    .rm-contact-grid,
    .rm-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .rm-mobile-booking-fab {
        display: none;
    }

    .rm-consent-stack {
        right: 20px;
        bottom: 20px;
        left: auto;
        width: min(680px, calc(100vw - 40px));
    }

    .rm-consent-dock {
        right: 20px;
        bottom: 20px;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    html.r7-motion [data-r7-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* Final atelier contract: this is the only active visual direction. */
body { letter-spacing: -0.006em; }

.rm-header {
    background: rgba(10, 12, 14, 0.9);
    border-bottom-color: rgba(251, 250, 247, 0.12);
    backdrop-filter: blur(18px) saturate(115%);
}

.rm-nav a {
    color: rgba(251, 250, 247, 0.68);
    font-size: 0.67rem;
    letter-spacing: 0.13em;
}

/* Keep the service promise visible at the decision point without adding another card. */
.rm-page-hero__microcopy {
    flex-basis: 100%;
    margin: 2px 0 0;
    color: rgba(251, 250, 247, 0.58);
    font-size: 0.72rem;
    line-height: 1.5;
    letter-spacing: 0.03em;
}

.rm-page-hero__microcopy span {
    color: var(--r7-red);
    padding-inline: 0.35em;
}

@media (max-width: 760px) {
    .rm-page-hero__microcopy {
        font-size: 0.68rem;
        max-width: 34rem;
    }
}

.rm-nav a:hover,
.rm-nav a:focus-visible,
.rm-nav a.is-active { color: var(--r7-white); }

.rm-header__cta,
.r7-button--primary,
.rm-button--primary {
    color: #17120d;
    background: var(--r7-red);
    border-color: var(--r7-red);
    border-radius: 5px;
    box-shadow: 0 12px 26px rgba(99, 68, 38, 0.2);
}

.rm-header__cta:hover,
.r7-button--primary:hover,
.rm-button--primary:hover {
    color: #17120d;
    background: #c7a47a;
    border-color: #c7a47a;
}

.r7-button,
.rm-button,
.rm-header__cta,
.rv6-directory :is(.rv6-button, .rv6-text-link) {
    border-radius: 5px;
    letter-spacing: 0.105em;
}

.r7-hero::before {
    inset: 30px;
    border-color: rgba(251, 250, 247, 0.22);
    border-bottom-color: rgba(180, 136, 93, 0.72);
}

.r7-hero__signature,
.r7-hero__rail { letter-spacing: 0.22em; }
.r7-hero__rail i { background: var(--r7-red); }

.r7-hero h1 {
    max-width: 720px;
    font-size: clamp(3.1rem, 7.4vw, 6.25rem);
    line-height: 0.95;
    letter-spacing: -0.065em;
}

.r7-hero__lead p {
    max-width: 430px;
    color: rgba(251, 250, 247, 0.69);
}

.r9-hero-services { background: #121517; }
.r9-hero-services__grid { gap: 0; }

.r9-hero-service,
.r9-hero-service:first-child {
    min-height: 232px;
    border: 0;
    border-top: 1px solid rgba(251, 250, 247, 0.16);
    border-radius: 0;
    background: transparent;
}

.r9-hero-service:first-child { min-height: 280px; }
.r9-hero-service__index { color: var(--r7-red); }
.r9-hero-service__copy strong { font-family: var(--r7-font-display); font-weight: 400; }
.r9-hero-service > b { color: rgba(251, 250, 247, 0.9); }

.r7-quick-note,
.r7-services,
.r7-price { background: var(--r7-paper); }

.r7-service,
.r7-price__list > div,
.r7-process__steps li,
.r7-reviews__list article { border-color: var(--r7-line); }

.r7-service__actions button,
.r7-service__actions a,
.r7-price__list b,
.r7-reviews__headline > div span { color: var(--r7-red); }

.r7-gift,
.r7-proof,
.r7-reviews { background: #121517; }

.r7-gift__cards button {
    border-radius: 8px;
    border-color: rgba(180, 136, 93, 0.45);
    background: linear-gradient(135deg, rgba(180, 136, 93, 0.18), rgba(251, 250, 247, 0.035));
}

@media (max-width: 760px) {
    .r7-hero h1 { font-size: clamp(2.85rem, 13vw, 4.2rem); }
    .r7-hero::before { inset: 16px; }
    .r9-hero-service,
    .r9-hero-service:first-child { min-height: 218px; }
}

/* Clear, deliberate confirmation state for every first-party form. */
.rm-form-success {
    display: grid;
    min-height: 360px;
    align-content: center;
    justify-items: start;
    gap: 14px;
    padding: 48px 40px 56px;
    color: var(--r7-text);
    background:
        radial-gradient(circle at 85% 18%, rgba(180, 136, 93, 0.16), transparent 13rem),
        var(--r7-paper);
    animation: rm-form-success-in 520ms var(--r7-ease) both;
}

.rm-form-success[hidden] {
    display: none !important;
}

.rm-form-success--inline {
    min-height: 300px;
    padding: 34px;
    border: 1px solid rgba(23, 25, 27, 0.12);
    border-radius: 12px;
}

.rm-form-success__mark {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 10px;
    place-items: center;
    color: var(--r7-white);
    background: var(--r7-red);
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(180, 136, 93, 0.28);
    font-size: 1.6rem;
    font-weight: 800;
    animation: rm-form-success-mark 600ms 120ms var(--r7-ease) both;
}

.rm-form-success h3 {
    max-width: 620px;
    margin: 0;
    color: var(--r7-text);
    font-family: var(--r7-display);
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.02;
}

.rm-form-success p {
    max-width: 580px;
    margin: 0;
    color: var(--r7-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.rm-form-success__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

@keyframes rm-form-success-in {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes rm-form-success-mark {
    from { opacity: 0; transform: scale(0.7) rotate(-10deg); }
    to { opacity: 1; transform: scale(1) rotate(0); }
}

@media (max-width: 760px) {
    .rm-form-success,
    .rm-form-success--inline {
        min-height: 340px;
        padding: 32px 22px 38px;
    }

    .rm-form-success__actions,
    .rm-form-success__actions .rm-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rm-form-success,
    .rm-form-success__mark {
        animation: none;
    }
}

/* Editorial atelier direction: keep only the declarations not covered by the
   final contract below. */
.rm-brand img {
    filter: saturate(0.8) contrast(1.08);
}

.rm-header__cta:hover,
.r7-button--primary:hover,
.rm-button--primary:hover {
    box-shadow: 0 16px 32px rgba(99, 68, 38, 0.25);
}

.r7-button--dark,
.r7-button--line,
.rm-button--secondary,
.rm-button--ghost,
.rv6-directory .rv6-button--outline {
    border-color: currentColor;
}

.r9-hero-service:hover,
.r9-hero-service:focus-visible {
    border-color: rgba(180, 136, 93, 0.68);
    background: rgba(251, 250, 247, 0.035);
    transform: none;
}

.r9-hero-service__index {
    color: var(--r7-red);
}

.r9-hero-service__copy strong {
    font-family: var(--r7-font-display);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.r9-hero-service > b {
    color: rgba(251, 250, 247, 0.9);
    font-variant-numeric: tabular-nums;
}

.r7-quick-note {
    background: var(--r7-paper-soft);
}

.r7-quick-note::after {
    background: linear-gradient(90deg, transparent, rgba(180, 136, 93, 0.18));
}

.r7-services,
.r7-price {
    background: var(--r7-paper);
}

.r7-heading h2,
.r7-proof__copy h2,
.r7-gift h2 {
    letter-spacing: -0.06em;
}

.r7-service,
.r7-price__list > div,
.r7-process__steps li,
.r7-reviews__list article {
    border-color: var(--r7-line);
}

.r7-service__actions button,
.r7-service__actions a,
.r7-price__list b,
.r7-reviews__headline > div span {
    color: var(--r7-red);
}

.r7-gift,
.r7-proof,
.r7-reviews {
    background: #121517;
}

.r7-gift__cards button {
    border-radius: 8px;
    border-color: rgba(180, 136, 93, 0.45);
    background: linear-gradient(135deg, rgba(180, 136, 93, 0.18), rgba(251, 250, 247, 0.035));
}

.rm-feature-card,
.rm-path-card,
.rm-review-card,
.rm-contact-card,
.rm-faq-item,
.rm-content-card,
.rm-gift-card,
.rm-price-meta-card,
.rm-price-note-card,
.rm-price-card,
.rm-calc-card,
.rm-gallery-card {
    border-radius: 10px;
    box-shadow: 0 18px 42px rgba(25, 22, 18, 0.07);
}

@media (max-width: 760px) {
    .r7-hero h1 {
        font-size: clamp(2.85rem, 13vw, 4.2rem);
    }

    .r7-hero::before {
        inset: 16px;
    }

    .r9-hero-service,
    .r9-hero-service:first-child {
        min-height: 218px;
    }
}

/* Weather offer */
.rm-weather-offer {
    position: fixed;
    right: clamp(16px, 3vw, 36px);
    bottom: clamp(16px, 3vw, 36px);
    z-index: 1100;
    width: min(520px, calc(100vw - 32px));
    color: var(--r7-white);
    pointer-events: none;
}

.rm-weather-offer[hidden] {
    display: none;
}

.rm-weather-offer__panel,
.rm-weather-offer__dock {
    pointer-events: auto;
    border: 1px solid rgba(247, 247, 244, 0.2);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(210, 28, 35, 0.08);
}

.rm-weather-offer__panel {
    padding: clamp(20px, 3vw, 30px);
    background:
        radial-gradient(circle at 92% 0%, rgba(210, 28, 35, 0.3), transparent 15rem),
        linear-gradient(145deg, rgba(22, 25, 27, 0.98), rgba(8, 10, 12, 0.98));
    border-radius: 22px;
    backdrop-filter: blur(22px) saturate(120%);
    animation: rm-weather-in 420ms var(--r7-ease) both;
}

.rm-weather-offer__eyebrow,
.rm-weather-offer__timer-wrap,
.rm-weather-offer__status {
    color: rgba(247, 247, 244, 0.58);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rm-weather-offer__eyebrow {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: rgba(247, 247, 244, 0.6);
}

.rm-weather-offer__eyebrow span:last-child {
    color: #ff8d91;
}

.rm-weather-offer__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: end;
    margin-top: 20px;
}

.rm-weather-offer h2 {
    max-width: 13ch;
    margin-bottom: 10px;
    font-family: var(--r7-font-display);
    font-size: clamp(1.65rem, 4vw, 2.3rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.rm-weather-offer p {
    max-width: 42ch;
    margin-bottom: 0;
    color: rgba(247, 247, 244, 0.68);
    font-size: 0.88rem;
    line-height: 1.55;
}

.rm-weather-offer__timer-wrap {
    display: grid;
    gap: 6px;
    min-width: 88px;
    text-align: right;
}

.rm-weather-offer__timer-wrap strong,
.rm-weather-offer__dock strong {
    color: var(--r7-white);
    font-size: 1.25rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0;
}

.rm-weather-offer__code-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px;
    padding: 10px 10px 10px 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(247, 247, 244, 0.12);
    border-radius: 14px;
}

.rm-weather-offer__code {
    color: var(--r7-white);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.rm-weather-offer__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.rm-weather-offer__actions .rm-button {
    min-height: 44px;
}

.rm-weather-offer__minimize {
    margin-left: auto;
    padding: 8px 0;
    color: rgba(247, 247, 244, 0.58);
    background: transparent;
    border: 0;
    font-size: 0.76rem;
}

.rm-weather-offer__minimize:hover,
.rm-weather-offer__minimize:focus-visible {
    color: var(--r7-white);
}

.rm-weather-offer__status {
    min-height: 1.3em;
    margin-top: 12px;
    color: #ffb0b3;
    letter-spacing: 0.02em;
    text-transform: none;
}

.rm-weather-offer__dock {
    display: flex;
    min-height: 52px;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    padding: 12px 16px;
    align-items: center;
    gap: 14px;
    color: var(--r7-white);
    background: rgba(12, 14, 16, 0.94);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.rm-weather-offer__dock[hidden] {
    display: none;
}

.rm-calc-result__discount {
    margin-top: 8px;
    color: var(--r7-red);
    font-size: 0.76rem;
    font-weight: 800;
}

@keyframes rm-weather-in {
    from { opacity: 0; transform: translateY(18px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 600px) {
    .rm-weather-offer {
        right: 12px;
        bottom: 12px;
        width: calc(100vw - 24px);
    }

    .rm-weather-offer__body {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .rm-weather-offer__timer-wrap {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        text-align: left;
    }

    .rm-weather-offer__code-row {
        align-items: stretch;
        flex-direction: column;
    }

    .rm-weather-offer__code-row .rm-button {
        width: 100%;
    }

    .rm-weather-offer__actions .rm-button {
        flex: 1 1 100%;
        width: 100%;
    }

    .rm-weather-offer__minimize {
        margin: 0 auto;
    }
}

/* Final narrow-screen hero contract: never inherit the desktop 58vw content
   width on a touch viewport. The page may clip decorative media, but content
   and controls must stay inside the readable container. */
@media (max-width: 760px) {
    html body .r7-hero__content,
    html body .r7-hero__lead,
    html body .r7-hero__lead p,
    html body .r7-hero .r7-actions,
    html body .r7-hero__facts {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    html body .r7-hero h1 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(2.2rem, 10.3vw, 3.15rem);
        letter-spacing: -0.045em;
        overflow-wrap: normal;
    }

    html body .r7-hero__title-desktop {
        display: none;
    }

    html body .r7-hero__title-mobile {
        display: inline;
    }

    html body .r7-hero .r7-button,
    html body .r7-hero .r7-link {
        min-width: 0;
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rm-weather-offer__panel {
        animation: none;
    }
}

/* V9: selected Obsidian Atelier direction */
body {
    background: var(--r7-paper);
    font-family: var(--r7-font-sans);
}

.rm-header {
    height: 84px;
    background: rgba(8, 9, 10, 0.96);
    border-bottom-color: rgba(247, 247, 244, 0.11);
    backdrop-filter: blur(14px);
}

.rm-header__inner {
    width: min(100% - 40px, 1432px);
}

.rm-brand img {
    width: 116px;
}

.rm-scroll-progress {
    top: 83px;
}

.rm-scroll-progress span {
    background: var(--r7-red);
}

.rm-header__cta,
.r7-button--primary,
.rm-button--primary {
    color: var(--r7-white);
    background: var(--r7-red);
    border-color: var(--r7-red);
}

.rm-header__cta:hover,
.r7-button--primary:hover,
.rm-button--primary:hover {
    color: var(--r7-white);
    background: #b91218;
    border-color: #b91218;
}

.rm-page-hero .rm-button--secondary,
.rm-page-hero .rm-button--ghost,
.rm-price-hero .rm-button--secondary,
.rm-price-hero .rm-button--ghost,
.rv6-directory__hero .rm-button--secondary,
.rv6-directory__hero .rm-button--ghost {
    color: var(--r7-white);
    border-color: rgba(247, 247, 244, 0.62);
}

.rm-page-hero .rm-button--secondary:hover,
.rm-page-hero .rm-button--ghost:hover,
.rm-price-hero .rm-button--secondary:hover,
.rm-price-hero .rm-button--ghost:hover,
.rv6-directory__hero .rm-button--secondary:hover,
.rv6-directory__hero .rm-button--ghost:hover {
    color: var(--r7-ink);
    background: var(--r7-white);
    border-color: var(--r7-white);
}

.r7-kicker,
.rm-kicker {
    color: var(--r7-red);
}

.r7-heading h2,
.r7-intro__grid > p,
.r7-service h3,
.r7-proof__copy h2,
.r7-process__steps h3,
.r7-reviews blockquote,
.r7-gift h2,
.r7-contact h2,
.rm-page-hero h1,
.rm-price-hero h1,
.rv6-directory__hero h1 {
    font-family: var(--r7-font-body);
}

.r7-hero {
    min-height: clamp(720px, 79svh, 820px);
    background: #070809;
}

.r7-hero__media img {
    object-position: 68% center;
}

.r7-hero__shade {
    background:
        linear-gradient(90deg, rgba(5, 6, 7, 0.96) 0%, rgba(5, 6, 7, 0.82) 29%, rgba(5, 6, 7, 0.24) 62%, rgba(5, 6, 7, 0.08) 100%),
        linear-gradient(180deg, rgba(5, 6, 7, 0.18) 35%, rgba(5, 6, 7, 0.86) 100%);
}

.r7-hero__inner {
    min-height: clamp(720px, 79svh, 820px);
    padding: 132px 0 54px;
}

.r7-hero__eyebrow {
    color: rgba(247, 247, 244, 0.58);
}

.r7-hero__content {
    display: block;
    width: min(680px, 58vw);
    margin-block: auto;
}

.r7-hero h1 {
    max-width: 680px;
    font-size: clamp(3.8rem, 5.5vw, 5.55rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.058em;
}

.r7-hero__lead {
    max-width: 500px;
    margin-top: 28px;
}

.r7-hero__lead p {
    margin-bottom: 32px;
    color: rgba(247, 247, 244, 0.74);
    font-size: 1.05rem;
    line-height: 1.65;
}

.r7-hero .r7-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 34px;
}

.r7-hero .r7-button {
    min-height: 58px;
    padding-inline: 30px;
}

.r7-hero .r7-link {
    color: var(--r7-white);
}

.r7-hero__facts {
    display: flex;
    width: fit-content;
    padding: 0;
    gap: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
}

.r7-hero__facts div {
    display: grid;
    min-width: 255px;
    min-height: auto;
    padding: 0 40px 0 0;
    gap: 4px;
    border-right: 1px solid rgba(247, 247, 244, 0.26);
}

.r7-hero__facts div + div {
    padding-left: 40px;
}

.r7-hero__facts div:last-child {
    border-right: 0;
}

.r7-hero__facts span {
    color: rgba(247, 247, 244, 0.46);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.r7-hero__facts strong {
    font-size: 0.86rem;
}

.r9-hero-services {
    color: var(--r7-white);
    background: #0b0c0d;
    border-top: 1px solid var(--r7-line-light);
    border-bottom: 1px solid var(--r7-line-light);
}

.r9-hero-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.r9-hero-service {
    display: grid;
    min-width: 0;
    min-height: 210px;
    padding: 38px 34px;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: start;
    gap: 22px;
    color: inherit;
    text-decoration: none;
    border-right: 1px solid var(--r7-line-light);
    transition: background-color 220ms ease-out;
}

.r9-hero-service:first-child {
    border-left: 1px solid var(--r7-line-light);
}

.r9-hero-service:hover {
    background: #131517;
}

.r9-hero-service__index,
.r9-hero-service__copy small {
    color: rgba(247, 247, 244, 0.44);
    font-size: 0.62rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.r9-hero-service__copy {
    display: grid;
    min-width: 0;
    gap: 12px;
}

.r9-hero-service__copy strong {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    font-weight: 600;
    line-height: 1.2;
}

.r9-hero-service__copy em {
    max-width: 310px;
    color: rgba(247, 247, 244, 0.48);
    font-size: 0.82rem;
    font-style: normal;
    line-height: 1.6;
}

.r9-hero-service > b {
    align-self: center;
    color: rgba(247, 247, 244, 0.7);
    font-size: 0.96rem;
    font-weight: 500;
    white-space: nowrap;
}

.r7-intro {
    background: var(--r7-paper);
}

.r7-services {
    background: #f7f7f4;
}

.r7-service {
    padding-block: 38px 52px;
}

.r7-service__media {
    aspect-ratio: 16 / 10;
}

.r7-proof,
.r7-gift,
.rm-page-hero,
.rm-price-hero,
.rv6-directory__hero {
    background: var(--r7-ink);
}

.r7-process {
    background: #111315;
}

.r7-gift__cards button {
    background: #151719;
}

.r7-contact__shade {
    background: linear-gradient(90deg, rgba(5, 6, 7, 0.97), rgba(5, 6, 7, 0.48));
}

@media (min-width: 1024px) {
    .rm-header__inner {
        width: min(100% - 56px, 1432px);
    }

    .rm-nav {
        gap: clamp(22px, 2.3vw, 38px);
    }

    .rm-nav > a {
        font-size: 0.71rem;
        letter-spacing: 0.04em;
    }

    .rm-nav > a::after {
        background: var(--r7-red);
    }

    .rm-header__link {
        display: none;
    }

    .rm-header__cta {
        min-width: 174px;
        min-height: 48px;
        padding-inline: 26px;
    }

    .r7-hero__content {
        display: block;
        width: min(680px, 58vw);
    }

    .r7-hero__facts {
        display: flex;
    }
}

@media (max-width: 1180px) {
    .r9-hero-service {
        padding-inline: 24px;
        grid-template-columns: 28px minmax(0, 1fr);
    }

    .r9-hero-service > b {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 1023px) {
    .rm-header {
        height: 74px;
    }

    .rm-scroll-progress {
        top: 73px;
    }

    .rm-brand img {
        width: 100px;
    }

    .r7-hero {
        min-height: 760px;
    }

    .r7-hero__inner {
        min-height: 760px;
        padding: 112px 0 34px;
    }

    .r7-hero__content {
        width: min(640px, 72vw);
    }

    .r7-hero__facts {
        display: flex;
    }

    .r9-hero-services__grid {
        width: 100%;
    }

    .r9-hero-service {
        min-height: 190px;
    }
}

@media (max-width: 760px) {
    :root {
        --r7-pad: 18px;
        --r7-section: 88px;
    }

    .r7-hero {
        min-height: 760px;
    }

    .r7-hero__media img {
        object-position: 65% center;
    }

    .r7-hero__shade {
        background:
            linear-gradient(90deg, rgba(5, 6, 7, 0.94) 0%, rgba(5, 6, 7, 0.63) 62%, rgba(5, 6, 7, 0.22) 100%),
            linear-gradient(180deg, rgba(5, 6, 7, 0.16) 20%, rgba(5, 6, 7, 0.9) 82%);
    }

    .r7-hero__inner {
        min-height: 760px;
        padding-top: 104px;
    }

    .r7-hero__eyebrow span:last-child {
        display: none;
    }

    .r7-hero__content {
        width: 100%;
        margin-top: auto;
        margin-bottom: 48px;
    }

    .r7-hero h1 {
        max-width: 11ch;
        font-size: clamp(2.9rem, 13.5vw, 4.25rem);
        line-height: 0.96;
    }

    .r7-hero__lead {
        max-width: 34rem;
        margin-top: 24px;
    }

    .r7-hero__lead p {
        max-width: 31rem;
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .r7-hero .r7-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px 18px;
    }

    .r7-hero .r7-button {
        min-width: 0;
        padding-inline: 18px;
    }

    .r7-hero__facts {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-top: 1px solid rgba(247, 247, 244, 0.22);
    }

    .r7-hero__facts div,
    .r7-hero__facts div + div {
        min-width: 0;
        padding: 18px 14px 0 0;
    }

    .r7-hero__facts div + div {
        padding-left: 16px;
    }

    .r7-hero__facts strong {
        font-size: 0.74rem;
        line-height: 1.45;
    }

    .r9-hero-services__grid {
        grid-template-columns: 1fr;
    }

    .r9-hero-service,
    .r9-hero-service:first-child {
        min-height: 0;
        padding: 26px 4px;
        grid-template-columns: 30px minmax(0, 1fr) auto;
        gap: 14px;
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid var(--r7-line-light);
    }

    .r9-hero-service:last-child {
        border-bottom: 0;
    }

    .r9-hero-service__copy {
        gap: 8px;
    }

    .r9-hero-service__copy em {
        display: none;
    }

    .r9-hero-service > b {
        grid-column: auto;
        justify-self: end;
        font-size: 0.82rem;
    }

    .r7-intro__grid > p {
        font-size: clamp(1.75rem, 8vw, 2.6rem);
    }

    .r7-service h3 {
        font-size: clamp(2.1rem, 10vw, 3.2rem);
    }
}

/* V12: cinematic depth and restrained motion */
.rm-site-shell {
    position: relative;
    isolation: isolate;
    overflow: clip;
}

.rm-site-shell::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 18%, rgba(210, 28, 35, 0.07), transparent 28rem),
        radial-gradient(circle at 88% 64%, rgba(123, 144, 150, 0.09), transparent 30rem),
        linear-gradient(rgba(17, 19, 21, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 19, 21, 0.018) 1px, transparent 1px);
    background-size: auto, auto, 56px 56px, 56px 56px;
    opacity: 0.78;
}

.r7-hero::after,
.rm-page-hero::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(60% 90% at 78% 18%, rgba(210, 28, 35, 0.14), transparent 62%),
        linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.045) 48%, transparent 64%);
    background-size: 140% 140%, 220% 100%;
    opacity: 0.75;
    animation: rm-atmosphere 18s ease-in-out infinite alternate;
}

.r7-hero__inner,
.rm-page-hero .rm-container {
    position: relative;
    z-index: 1;
}

.r7-hero__media img,
.rm-page-hero__media img,
.r7-contact__media img {
    filter: saturate(0.86) contrast(1.04);
    transition: transform 900ms var(--r7-ease), filter 450ms ease-out;
}

.r7-hero:hover .r7-hero__media img,
.rm-page-hero:hover .rm-page-hero__media img,
.r7-contact:hover .r7-contact__media img {
    filter: saturate(0.98) contrast(1.06);
    transform: scale(1.035);
}

.r9-hero-service {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 240px;
    border-color: rgba(247, 247, 244, 0.13);
    transition: background-color 260ms ease-out, transform 260ms var(--r7-ease), border-color 260ms ease-out;
}

.r9-hero-service__media,
.r9-hero-service__media::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.r9-hero-service__media {
    z-index: -2;
    background: #111315;
}

.r9-hero-service__media::after {
    z-index: 1;
    content: "";
    background:
        linear-gradient(90deg, rgba(7, 8, 9, 0.84), rgba(7, 8, 9, 0.38) 68%, rgba(7, 8, 9, 0.68)),
        linear-gradient(180deg, rgba(7, 8, 9, 0.04), rgba(7, 8, 9, 0.78));
    transition: opacity 300ms ease-out;
}

.r9-hero-service__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    outline: 0;
    opacity: 0.64;
    filter: saturate(0.72) contrast(1.08);
    transform: scale(1.035);
    transition: opacity 400ms ease-out, transform 700ms var(--r7-ease), filter 400ms ease-out;
}

.r9-hero-service:hover,
.r9-hero-service:focus-visible {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(247, 247, 244, 0.34);
    transform: translateY(-4px);
}

.r9-hero-service:hover .r9-hero-service__media::after,
.r9-hero-service:focus-visible .r9-hero-service__media::after {
    opacity: 0.72;
}

.r9-hero-service:hover .r9-hero-service__media img,
.r9-hero-service:focus-visible .r9-hero-service__media img {
    opacity: 0.82;
    filter: saturate(0.9) contrast(1.08);
    transform: scale(1.08);
}

.r9-hero-service__index,
.r9-hero-service__copy,
.r9-hero-service > b {
    position: relative;
    z-index: 2;
}

.r9-hero-service__copy em {
    color: rgba(247, 247, 244, 0.68);
}

.r9-hero-service__copy strong,
.r9-hero-service > b {
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.46);
}

.r7-price,
.r7-process,
.r7-reviews,
.r7-gift,
.rm-section,
.rm-price-section,
.rv6-directory__section {
    position: relative;
}

.r7-price::before,
.r7-process::before,
.r7-reviews::before,
.r7-gift::before,
.rm-section::before,
.rm-price-section::before,
.rv6-directory__section::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(680px, 86vw);
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(210, 28, 35, 0.32), transparent);
    transform: translateX(-50%);
}

.r7-button,
.rm-button,
.rm-header__cta {
    position: relative;
    overflow: hidden;
}

.r7-button::after,
.rm-button::after,
.rm-header__cta::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.18) 50%, transparent 65%);
    transform: translateX(-125%);
    transition: transform 650ms var(--r7-ease);
    pointer-events: none;
}

.r7-button:hover::after,
.rm-button:hover::after,
.rm-header__cta:hover::after {
    transform: translateX(125%);
}

.r7-button:active,
.rm-button:active,
.rm-header__cta:active,
.r9-hero-service:active {
    transform: scale(0.96);
}

@keyframes rm-atmosphere {
    0% { background-position: 0% 0%, 0% 0%; }
    100% { background-position: 12% -8%, 100% 0%; }
}

@media (max-width: 760px) {
    .r9-hero-service {
        min-height: 208px;
        padding: 26px 22px;
    }

    .r9-hero-service > b {
        align-self: end;
    }

    .r7-hero::after,
    .rm-page-hero::after {
        animation-duration: 24s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .r7-hero::after,
    .rm-page-hero::after {
        animation: none;
    }

    .r7-hero:hover .r7-hero__media img,
    .rm-page-hero:hover .rm-page-hero__media img,
    .r7-contact:hover .r7-contact__media img,
    .r9-hero-service:hover .r9-hero-service__media img,
    .r9-hero-service:focus-visible .r9-hero-service__media img {
        transform: none;
    }
}

@media (max-width: 430px) {
    .r7-hero .r7-actions {
        grid-template-columns: 1fr;
    }

    .r7-hero .r7-link {
        width: fit-content;
    }

    .r9-hero-service {
        grid-template-columns: 26px minmax(0, 1fr);
    }

    .r9-hero-service > b {
        grid-column: 2;
        justify-self: start;
    }
}

/* Compact homepage route: answer the four guest questions quickly. */
.r7-quick-note {
    color: var(--r7-text);
    background: var(--r7-paper);
    border-bottom: 1px solid var(--r7-line);
}

.r7-quick-note__inner {
    display: flex;
    min-height: 86px;
    align-items: center;
    gap: 22px;
}

.r7-quick-note__inner p {
    margin: 0;
    font-weight: 650;
}

.r7-quick-note__inner .r7-link {
    margin-left: auto;
    color: var(--r7-text);
}

@media (min-width: 1024px) {
    .r9-hero-services__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .r9-hero-service {
        min-height: 178px;
        padding: 28px 24px;
        grid-template-columns: 24px minmax(0, 1fr);
        gap: 14px;
    }

    .r9-hero-service > b {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 1023px) {
    .r9-hero-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .r9-hero-service {
        min-height: 168px;
    }
}

@media (max-width: 760px) {
    .r7-quick-note__inner {
        min-height: 0;
        padding-block: 20px;
        flex-wrap: wrap;
        gap: 10px 14px;
    }

    .r7-quick-note__inner p {
        width: 100%;
        font-size: 0.94rem;
    }

    .r7-quick-note__inner .r7-link {
        margin-left: 0;
    }

    .r9-hero-services__grid {
        grid-template-columns: 1fr;
    }

    .r9-hero-service {
        min-height: 0;
    }
}

/* Rosmouka signature layer: a branded service board, not a generic hero. */
.r7-hero {
    isolation: isolate;
}

.r7-hero::before {
    position: absolute;
    inset: 24px;
    z-index: 1;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(247, 247, 244, 0.18);
    border-bottom-color: rgba(210, 28, 35, 0.62);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 82% 100%, 82% calc(100% - 1px), 0 calc(100% - 1px));
}

.r7-hero__signature,
.r7-hero__rail {
    position: absolute;
    z-index: 3;
    color: rgba(247, 247, 244, 0.58);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
}

.r7-hero__signature {
    top: 128px;
    right: 0;
    display: grid;
    gap: 9px;
    text-align: right;
}

.r7-hero__signature span:first-child {
    color: var(--r7-white);
}

.r7-hero__rail {
    top: 50%;
    right: -22px;
    display: grid;
    gap: 14px;
    justify-items: center;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
}

.r7-hero__rail i {
    display: block;
    width: 46px;
    height: 1px;
    background: var(--r7-red);
}

.r9-hero-services__grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
}

.r9-hero-service__index {
    color: rgba(210, 28, 35, 0.9);
}

.r9-hero-service:first-child {
    min-height: 214px;
}

.r7-quick-note {
    position: relative;
    overflow: hidden;
}

.r7-quick-note::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 22vw;
    min-width: 180px;
    height: 100%;
    content: "";
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(183, 25, 34, 0.08));
    clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
}

@media (max-width: 1023px) {
    .r9-hero-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .r7-hero__signature {
        right: 18px;
    }
}

@media (max-width: 760px) {
    .r7-hero::before {
        inset: 12px;
        border-bottom-color: rgba(210, 28, 35, 0.52);
        clip-path: none;
    }

    .r7-hero__signature {
        top: 88px;
        right: 18px;
        gap: 7px;
        font-size: 0.5rem;
        letter-spacing: 0.13em;
    }

    .r7-hero__rail {
        display: none;
    }

    .r9-hero-services__grid {
        grid-template-columns: 1fr;
    }

    .r9-hero-service:first-child {
        min-height: 0;
    }
}

/* Single visual contract: Rosmouka premium UI */
@font-face {
    font-family: "Rosmouka Prata";
    src: url("../fonts/prata-cyrillic.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Rosmouka Manrope";
    src: url("../fonts/manrope-cyrillic.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 200 800;
}

html,
body {
    background: var(--r7-paper);
}

body,
button,
input,
select,
textarea {
    font-family: var(--r7-font-body);
}

.rm-form-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.rm-brand {
    min-height: 44px;
}

.r7-contact__phone,
.rm-nav__phone {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

@media (max-width: 760px) {
    .rm-footer a:not(.rm-button):not(.rm-brand),
    .rm-footer__contact a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

body {
    color: var(--r7-text);
    font-size: 16px;
    line-height: 1.55;
}

h1,
h2,
h3,
.r7-heading h2,
.r7-intro__grid > p,
.r7-service h3,
.r7-proof__copy h2,
.r7-process__steps h3,
.r7-reviews blockquote,
.r7-gift h2,
.r7-contact h2,
.rm-page-hero h1,
.rm-price-hero h1,
.rv6-directory__hero h1,
.rm-section-head h2,
.rm-content-card h2,
.rm-gift-card h2,
.rv6-directory h2,
.rv6-directory-card h3,
.rm-feature-card h3,
.rm-path-card h3,
.rm-review-card h3,
.rm-faq-item h3,
.rm-contact-card h3,
.rm-footer__cta h2,
.rm-booking-modal__copy h2,
.rm-gift-order-modal__copy h2,
.rm-faq-modal__copy h2 {
    font-family: var(--r7-font-display);
    text-wrap: balance;
}

.r7-heading h2,
.r7-proof__copy h2,
.r7-gift h2,
.r7-contact h2,
.rm-page-hero h1,
.rm-price-hero h1,
.rv6-directory__hero h1 {
    font-size: clamp(2.25rem, 5.2vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.rm-section-head h2,
.rm-content-card h2,
.rm-gift-card h2,
.rv6-directory h2 {
    font-size: clamp(2rem, 4.4vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.r7-hero h1 {
    font-family: var(--r7-font-display);
    font-size: clamp(2.65rem, 4.9vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.r7-intro__grid > p {
    font-size: clamp(1.55rem, 3.5vw, 2.75rem);
    line-height: 1.16;
}

.r7-service h3,
.rv6-directory-card h3 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    line-height: 1;
}

.rm-container {
    width: min(100% - (var(--r7-pad) * 2), var(--r7-container));
}

.r7-intro,
.r7-services,
.r7-price,
.r7-process,
.r7-reviews,
.r7-gift,
.r7-proof,
.rm-section,
.rm-price-section,
.rv6-directory__services,
.rv6-directory__final {
    padding-block: var(--r7-section);
}

.r7-heading {
    margin-bottom: clamp(32px, 5vw, 64px);
}

.r7-button,
.rm-button,
.rm-header__cta,
.rv6-directory :is(.rv6-button, .rv6-text-link) {
    min-height: 48px;
    padding: 11px 20px;
    border-radius: 999px;
    font-family: var(--r7-font-body);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.055em;
    line-height: 1.15;
    transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.r7-button:hover,
.rm-button:hover,
.rm-header__cta:hover,
.rv6-directory :is(.rv6-button, .rv6-text-link):hover {
    transform: translateY(-2px);
}

.r7-button:active,
.rm-button:active,
.rm-header__cta:active,
.rv6-directory :is(.rv6-button, .rv6-text-link):active {
    transform: translateY(0) scale(0.98);
}

.r7-button--primary,
.rm-button--primary,
.rm-header__cta,
.rv6-directory .rv6-button--dark {
    color: #fff;
    background: var(--r7-red);
    border-color: var(--r7-red);
    box-shadow: 0 10px 24px rgba(183, 25, 34, 0.2);
}

.r7-button--primary:hover,
.rm-button--primary:hover,
.rm-header__cta:hover,
.rv6-directory .rv6-button--dark:hover {
    color: #fff;
    background: #92151c;
    border-color: #92151c;
    box-shadow: 0 14px 30px rgba(146, 21, 28, 0.26);
}

.r7-button--dark,
.r7-button--line,
.rm-button--secondary,
.rm-button--ghost,
.rv6-directory .rv6-button--outline {
    color: var(--r7-text);
    background: transparent;
    border: 1px solid currentColor;
}

.r7-proof .r7-button--dark,
.r7-contact .r7-button--line,
.r7-gift .r7-button--dark,
.rm-section--dark .rm-button--secondary,
.rm-section--dark .rm-button--ghost,
.rv6-directory__final .rv6-button--outline,
.rv6-directory__classes .rv6-button--light {
    color: var(--r7-white);
}

.r7-button:focus-visible,
.rm-button:focus-visible,
.rm-header__cta:focus-visible,
.rv6-directory :is(.rv6-button, .rv6-text-link):focus-visible,
.rm-segmented__button:focus-visible,
.rm-option-card:focus-visible,
.rm-ppf-class-card:focus-visible,
.rm-ppf-film-card:focus-visible,
.rm-ppf-package-card:focus-visible,
.rm-ppf-zone-chip:focus-visible {
    outline: 3px solid rgba(183, 25, 34, 0.35);
    outline-offset: 3px;
}

.rm-page-hero,
.rm-price-hero,
.rv6-directory__hero {
    padding-block: clamp(116px, 12vw, 160px) clamp(56px, 7vw, 92px);
}

.rm-page-hero p,
.rm-price-hero p,
.rv6-directory__hero p,
.r7-hero__lead p,
.rm-section-head p,
.rm-content-card p,
.rm-gift-card p,
.rv6-directory-card p {
    color: var(--r7-muted);
}

.rm-page-hero p,
.rm-price-hero p,
.rv6-directory__hero p,
.r7-hero__lead p {
    color: rgba(247, 247, 244, 0.76);
}

.rm-feature-card,
.rm-path-card,
.rm-review-card,
.rm-contact-card,
.rm-faq-item,
.rm-content-card,
.rm-gift-card,
.rm-price-meta-card,
.rm-price-note-card,
.rm-price-card,
.rm-calc-card,
.rm-gallery-card {
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(15, 20, 23, 0.06);
}

.rm-feature-card,
.rm-path-card,
.rm-review-card,
.rm-contact-card,
.rm-faq-item,
.rm-content-card,
.rm-gift-card,
.rm-price-meta-card,
.rm-price-note-card,
.rm-price-card,
.rm-calc-card {
    padding: clamp(20px, 3vw, 30px);
}

.rm-price-nav {
    gap: 8px;
    padding-block: 10px;
}

.rm-price-nav a {
    border-radius: 999px;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.rm-price-nav a:hover,
.rm-price-nav a:focus-visible {
    color: var(--r7-red);
    border-color: var(--r7-red);
    transform: translateY(-1px);
}

@media (min-width: 1024px) {
    .rm-price-nav {
        position: sticky;
        top: 76px;
        z-index: 4;
        padding-block: 12px;
        background: var(--r7-ink);
    }

    .rm-ppf-summary-card {
        position: sticky;
        top: 96px;
        align-self: start;
    }
}

.rm-calc-switcher {
    display: block;
    width: 100%;
    margin-bottom: 16px;
}

/* The PPF builder is a two-column quote layout: choices stay readable while the
   commercial result remains visible beside them. */
.rm-calc-card__body--ppf {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: clamp(20px, 3vw, 36px);
    align-items: start;
}

.rm-ppf-main,
.rm-ppf-summary-card {
    min-width: 0;
}

.rm-ppf-summary-card {
    padding: clamp(18px, 2.4vw, 26px);
    color: var(--r7-white);
    background: var(--r7-ink);
    border-radius: 16px;
}

.rm-ppf-summary-card__copy {
    display: grid;
    gap: 8px;
}

.rm-ppf-summary-card__class,
.rm-ppf-summary-card__film,
.rm-ppf-summary-card__package {
    color: rgba(251, 250, 247, 0.76);
    font-size: 0.82rem;
    line-height: 1.35;
}

.rm-ppf-summary-card .rm-calc-result {
    margin-top: 12px;
    padding: 0;
    background: transparent;
}

.rm-calc-result__items {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.rm-calc-result__chip {
    display: inline-flex;
    max-width: 100%;
    padding: 5px 8px;
    color: rgba(251, 250, 247, 0.72);
    background: rgba(251, 250, 247, 0.08);
    border: 1px solid rgba(251, 250, 247, 0.13);
    border-radius: 999px;
    font-size: 0.68rem;
    line-height: 1.25;
}

.rm-ppf-summary-card__actions {
    display: grid;
    gap: 8px;
    margin-top: 20px;
}

.rm-ppf-summary-card .rm-button--secondary {
    color: var(--r7-white);
    background: rgba(251, 250, 247, 0.08);
    border-color: rgba(251, 250, 247, 0.42);
}

.rm-ppf-summary-card .rm-button--secondary:hover,
.rm-ppf-summary-card .rm-button--secondary:focus-visible {
    color: var(--r7-white);
    background: rgba(251, 250, 247, 0.16);
    border-color: var(--r7-white);
}

.rm-calc-switcher__rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 6px;
    background: var(--r7-paper-soft);
    border-radius: 14px;
}

.rm-calc-switcher__button {
    min-height: 48px;
    padding: 10px 14px;
    color: var(--r7-muted);
    font-weight: 750;
    text-align: center;
    background: transparent;
    border: 0;
    border-radius: 10px;
}

.rm-calc-switcher__button[aria-selected="true"] {
    color: var(--r7-text);
    background: var(--r7-white);
    box-shadow: 0 5px 14px rgba(15, 20, 23, 0.1);
}

.rm-segmented__button,
.rm-option-card,
.rm-ppf-class-card,
.rm-ppf-film-card,
.rm-ppf-package-card,
.rm-ppf-zone-chip {
    min-height: 52px;
    padding: 14px 16px;
    cursor: pointer;
    border-radius: 12px;
    transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.rm-segmented__button:hover,
.rm-option-card:hover,
.rm-ppf-class-card:hover,
.rm-ppf-film-card:hover,
.rm-ppf-package-card:hover,
.rm-ppf-zone-chip:hover {
    border-color: var(--r7-gold-deep);
    transform: translateY(-2px);
}

:is(.rm-segmented__button, .rm-option-card, .rm-ppf-class-card, .rm-ppf-film-card, .rm-ppf-package-card, .rm-ppf-zone-chip).is-active,
:is(.rm-segmented__button, .rm-option-card, .rm-ppf-class-card, .rm-ppf-film-card, .rm-ppf-package-card, .rm-ppf-zone-chip)[aria-pressed="true"] {
    color: var(--r7-text);
    background: #f7f1ed;
    border-color: var(--r7-red);
    box-shadow: inset 0 0 0 1px var(--r7-red), 0 8px 20px rgba(183, 25, 34, 0.08);
}

input,
select,
textarea {
    min-height: 50px;
    border-radius: 10px;
}

input::placeholder,
textarea::placeholder {
    color: #737b81;
    opacity: 1;
}

input:invalid:not(:placeholder-shown),
select:invalid,
textarea:invalid:not(:placeholder-shown) {
    border-color: #b71922;
    box-shadow: 0 0 0 3px rgba(183, 25, 34, 0.12);
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
    cursor: not-allowed;
    opacity: 0.52;
}

.rm-calc-result {
    border-radius: 14px;
}

.rm-calc-result__price {
    font-family: var(--r7-font-display);
    font-size: clamp(1.9rem, 5vw, 3.4rem);
    line-height: 1;
    display: inline-block;
    font-variant-numeric: tabular-nums;
    transform-origin: left center;
}

.rm-calc-result__price.is-changing {
    animation: rm-price-update 360ms cubic-bezier(0.2, 0, 0, 1) both;
}

[data-package-price] {
    font-variant-numeric: tabular-nums;
}

/* Weather offer: readable actions and a calmer, more useful headline. */
:root {
    --r7-font-display: var(--r7-font-sans);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--r7-font-sans);
    font-weight: 650;
    letter-spacing: -0.055em;
}

.rm-weather-offer h2 {
    max-width: 17ch;
    font-family: var(--r7-font-sans);
    font-size: clamp(1.8rem, 3.7vw, 2.55rem);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -0.055em;
}

.rm-weather-offer .rm-button--secondary,
.rm-weather-offer .rm-button--ghost {
    color: var(--r7-white);
    border-color: rgba(251, 250, 247, 0.42);
    background: rgba(251, 250, 247, 0.06);
}

.rm-weather-offer .rm-button--secondary:hover,
.rm-weather-offer .rm-button--secondary:focus-visible,
.rm-weather-offer .rm-button--ghost:hover,
.rm-weather-offer .rm-button--ghost:focus-visible {
    color: var(--r7-ink);
    border-color: var(--r7-red);
    background: var(--r7-red);
    box-shadow: 0 10px 24px rgba(180, 136, 93, 0.22);
}

.rm-weather-offer__actions .rm-button--ghost {
    min-width: 166px;
}

@media (max-width: 600px) {
    .rm-weather-offer h2 {
        max-width: 19ch;
        font-size: clamp(1.7rem, 8vw, 2.2rem);
    }
}

/* Compact footer: one clear brand block, one compact trust signal, no visual noise. */
.rm-footer {
    padding-block: 54px 20px;
}

.rm-footer__cta {
    margin-bottom: 42px;
    padding-block: 26px 32px;
    gap: 22px;
}

.rm-footer__cta h2 {
    max-width: 23ch;
    margin-block: 10px 12px;
    font-size: clamp(1.9rem, 4vw, 3.25rem);
    line-height: 1.02;
}

.rm-footer__cta p {
    max-width: 66ch;
    line-height: 1.45;
}

.rm-footer__inner {
    grid-template-columns: minmax(240px, 1.3fr) repeat(3, minmax(130px, 0.7fr));
    gap: 28px;
}

.rm-footer__brand p {
    max-width: 330px;
    margin-top: 14px;
    line-height: 1.45;
}

.rm-footer__col {
    gap: 5px;
    line-height: 1.35;
}

.rm-footer__col h3 {
    margin-bottom: 8px;
}

.rm-footer__col a,
.rm-footer__col span {
    font-size: 0.9rem;
}

.rm-footer__phone-primary {
    font-size: 1.1rem !important;
}

.rm-footer__contact-note {
    max-width: 22ch;
    font-size: 0.72rem !important;
    line-height: 1.4;
}

.rm-footer__rating {
    margin-top: 20px;
}

.rm-footer__rating-link {
    display: grid;
    width: min(100%, 270px);
    gap: 4px;
    padding: 13px 15px 12px;
    color: var(--r7-white);
    background: rgba(255, 253, 248, 0.055);
    border: 1px solid rgba(255, 253, 248, 0.16);
    border-radius: 14px;
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.rm-footer__rating-link:hover,
.rm-footer__rating-link:focus-visible {
    color: var(--r7-white);
    background: rgba(180, 136, 93, 0.12);
    border-color: rgba(180, 136, 93, 0.7);
    transform: translateY(-2px);
}

.rm-footer__rating-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rm-footer__rating-top strong {
    color: var(--r7-white);
    font-size: 1.55rem;
    line-height: 1;
    letter-spacing: -0.04em;
}

.rm-rating-link__stars {
    color: var(--r7-red);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}

.rm-rating-link__label {
    color: rgba(255, 253, 248, 0.64);
    font-size: 0.72rem;
}

.rm-footer__rating-action {
    margin-top: 3px;
    color: var(--r7-red);
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.04em;
}

.rm-footer__legal {
    max-width: 1040px;
    margin-top: 34px;
    padding-top: 16px;
    font-size: 0.66rem;
    line-height: 1.45;
}

/* Calculator result must remain readable on the ink surface on iPhone too. */
.rm-calc-result__breakdown {
    border-top-color: rgba(251, 250, 247, 0.16);
}

.rm-calc-result__breakdown-row {
    color: rgba(251, 250, 247, 0.62);
    overflow-wrap: anywhere;
}

.rm-calc-result__breakdown-row strong {
    color: rgba(251, 250, 247, 0.94);
}

.rm-calc-result__breakdown-empty {
    color: rgba(251, 250, 247, 0.58);
}

@media (max-width: 600px) {
    .rm-calc-result {
        padding: 20px 18px 24px;
    }

    .rm-calc-result__breakdown-row {
        gap: 10px;
        font-size: 0.76rem;
    }

    .rm-calc-result__breakdown-row strong {
        white-space: nowrap;
    }
}

/* Earlier full-bleed fallback. */
@media (min-width: 1024px) {
    body .r9-hero-services__grid {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Earlier weather action fallback. */
.rm-weather-offer__minimize {
    display: inline-flex;
    min-height: 44px;
    margin-left: auto;
    padding: 0 16px;
    align-items: center;
    justify-content: center;
    color: rgba(251, 250, 247, 0.78);
    background: rgba(251, 250, 247, 0.045);
    border: 1px solid rgba(251, 250, 247, 0.32);
    border-radius: 999px;
    font-family: var(--r7-font-body);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.045em;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.rm-weather-offer__minimize:hover,
.rm-weather-offer__minimize:focus-visible {
    color: var(--r7-ink);
    background: var(--r7-red);
    border-color: var(--r7-red);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .rm-weather-offer__minimize {
        margin: 0 auto;
    }
}

/* Earlier confirmation state fallback. */
.rm-weather-offer__success {
    display: grid;
    min-height: 230px;
    padding: 30px 20px;
    place-content: center;
    justify-items: center;
    gap: 10px;
    text-align: center;
    animation: rm-weather-success-in 360ms var(--r7-ease) both;
}

.rm-weather-offer__success[hidden] {
    display: none;
}

.rm-weather-offer__panel.is-success > :not(.rm-weather-offer__success) {
    display: none;
}

.rm-weather-offer__success-mark {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: var(--r7-ink);
    background: var(--r7-red);
    border-radius: 50%;
    font-size: 1.6rem;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(180, 136, 93, 0.28);
}

.rm-weather-offer__success strong {
    color: var(--r7-white);
    font-size: clamp(1.45rem, 3vw, 2rem);
    letter-spacing: -0.04em;
}

.rm-weather-offer__success p {
    max-width: 28ch;
    margin: 0;
    color: rgba(251, 250, 247, 0.68);
    font-size: 0.88rem;
    line-height: 1.45;
}

@keyframes rm-weather-success-in-legacy {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .rm-weather-offer__success {
        animation: none;
    }
}

/* Cookie consent owns the foreground on first visit; reveal the weather offer
   after the visitor chooses cookie settings instead of stacking overlays. */
body:has(.rm-consent-card:not([hidden])) .rm-weather-offer {
    display: none !important;
}

/* Absolute final placement legacy copy: keep the weather card inside the header lane. */
.rm-header__inner {
    position: relative;
}

.rm-header__inner > .rm-weather-offer {
    position: absolute !important;
    top: 10px !important;
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    z-index: 1002;
    width: 360px !important;
    transform: translateX(-50%);
}

.rm-header__inner > .rm-weather-offer .rm-weather-offer__panel {
    position: absolute !important;
    top: 58px !important;
    right: 0 !important;
    bottom: auto !important;
    left: auto !important;
    width: min(520px, calc(100vw - 32px)) !important;
    transform: none !important;
}

.rm-header__inner > .rm-weather-offer.is-forecast {
    width: 360px !important;
}

@media (max-width: 1023px) {
    .rm-header__inner > .rm-weather-offer,
    .rm-header__inner > .rm-weather-offer.is-forecast {
        top: 8px !important;
        left: 50% !important;
        width: min(220px, calc(100% - 170px)) !important;
    }

    .rm-header__inner > .rm-weather-offer .rm-weather-offer__panel {
        top: 58px !important;
        right: auto !important;
        left: 50% !important;
        width: min(520px, calc(100vw - 24px)) !important;
        transform: translateX(-50%) !important;
    }
}

/* V13 final weather state contract.
   The header has one weather state at a time: either forecast or offer chip. */
html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__panel,
html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__dock {
    display: none !important;
}

html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast {
    display: block !important;
    box-sizing: border-box;
    width: 100% !important;
    max-width: 420px;
    padding: 12px 14px 11px;
    background: rgba(14, 17, 17, 0.94);
    border: 1px solid rgba(180, 136, 93, 0.28);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-days {
    margin-top: 8px;
    padding-top: 7px;
}

html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-day:nth-child(n + 4) {
    display: none;
}

html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-head strong {
    max-width: 18ch;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 1200px) {
    html body .rm-header__inner > .rm-weather-offer.is-forecast {
        left: 34% !important;
        width: 360px !important;
    }
}

@media (max-width: 1023px) {
    html body .rm-header__inner > .rm-weather-offer.is-forecast {
        left: 50% !important;
        width: min(270px, calc(100% - 154px)) !important;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast {
        padding: 9px 10px;
        border-radius: 14px;
    }

    /* Keep the forecast inside the header lane on phones. */
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-days {
        display: none;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-head {
        min-height: 34px;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-head strong {
        font-size: 0.72rem;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-temp {
        font-size: 1rem;
    }
}

/* Unified weather header: keep the default state quiet and reserve expansion
   for an intentional hover/focus, so the forecast never competes with hero copy. */
html body .rm-header__inner > .rm-weather-offer.is-forecast {
    width: 300px !important;
}

html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast {
    width: 100% !important;
    max-height: 50px;
    padding: 8px 12px;
    border-radius: 14px;
    overflow: hidden;
    transition: max-height 220ms var(--r7-ease), box-shadow 220ms ease, border-color 220ms ease;
}

html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-head {
    min-height: 32px;
    gap: 12px;
}

html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-kicker {
    font-size: 0.56rem;
    letter-spacing: 0.1em;
}

html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-head strong {
    margin-top: 2px;
    font-size: 0.74rem;
}

html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-temp {
    flex: 0 0 auto;
    font-size: 1.05rem;
}

html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-days {
    display: none;
}

html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast:hover,
html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast:focus-visible {
    max-height: 188px;
    border-color: rgba(180, 136, 93, 0.5);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast:hover .rm-weather-offer__forecast-days,
html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast:focus-visible .rm-weather-offer__forecast-days {
    display: grid;
}

@media (max-width: 1023px) {
    html body .rm-header__inner > .rm-weather-offer.is-forecast {
        width: min(250px, calc(100% - 154px)) !important;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast {
        max-height: 44px;
        padding: 6px 9px;
        border-radius: 12px;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-days,
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast:hover .rm-weather-offer__forecast-days,
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast:focus-visible .rm-weather-offer__forecast-days {
        display: none;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast:hover,
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast:focus-visible {
        max-height: 44px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    }
}

@media (prefers-reduced-motion: reduce) {
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast {
        transition: none;
    }
}

/* Final cascade for the unified weather status in the header. */
html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 360px !important;
    min-height: 44px;
    padding: 6px 14px 6px 10px;
    gap: 11px;
    color: rgba(255, 253, 248, 0.76);
    background: rgba(14, 17, 17, 0.86) !important;
    border: 1px solid rgba(180, 136, 93, 0.22) !important;
    border-radius: 999px !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock::before,
html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-discount::before {
    display: none;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-mark {
    display: grid;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--r7-gold);
    background: rgba(180, 136, 93, 0.12);
    border: 1px solid rgba(180, 136, 93, 0.2);
    border-radius: 50%;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-mark svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-label {
    display: grid;
    min-width: 0;
    flex: 1 1 auto;
    gap: 3px;
    color: rgba(255, 253, 248, 0.56);
    font-size: 0.6rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-label small,
html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-label b {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-label b {
    color: rgba(255, 253, 248, 0.9);
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.01em;
    line-height: 1.1;
    text-transform: none;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-discount {
    flex: 0 0 auto;
    padding-left: 11px;
    color: var(--r7-gold);
    border-left: 1px solid rgba(180, 136, 93, 0.24);
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock strong {
    flex: 0 0 auto;
    min-width: 46px;
    color: var(--r7-white);
    font-size: 1.1rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
    text-align: right;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock:hover,
html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock:focus-visible {
    color: var(--r7-white);
    background: rgba(22, 25, 25, 0.94) !important;
    border-color: rgba(180, 136, 93, 0.42) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26) !important;
    transform: translateY(-1px);
}

@media (max-width: 1023px) {
    html body .rm-header__inner > .rm-weather-offer,
    html body .rm-header__inner > .rm-weather-offer.is-forecast {
        width: 220px !important;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock {
        width: 220px !important;
        min-height: 40px;
        padding: 5px 10px 5px 8px;
        gap: 8px;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-mark {
        flex-basis: 26px;
        width: 26px;
        height: 26px;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-label b {
        display: none;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-label {
        font-size: 0.56rem;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-discount {
        padding-left: 8px;
        font-size: 0.68rem;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock strong {
        min-width: 40px;
        font-size: 0.98rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock,
    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock:hover,
    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock:focus-visible {
        transition: none;
        transform: none;
    }
}

/* Final header placement contract for the weather module. */
.rm-header__inner {
    position: relative;
}

.rm-header__inner > .rm-weather-offer {
    position: absolute !important;
    top: 10px !important;
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    z-index: 1002;
    width: min(360px, calc(100% - 360px)) !important;
    transform: translateX(-50%);
}

.rm-header__inner > .rm-weather-offer .rm-weather-offer__panel {
    position: absolute !important;
    top: 58px !important;
    right: 0 !important;
    bottom: auto !important;
    left: auto !important;
    width: min(520px, calc(100vw - 32px)) !important;
    transform: none !important;
}

.rm-header__inner > .rm-weather-offer.is-forecast {
    width: min(390px, calc(100% - 360px)) !important;
}

@media (max-width: 1023px) {
    .rm-header__inner > .rm-weather-offer,
    .rm-header__inner > .rm-weather-offer.is-forecast {
        top: 8px !important;
        left: 50% !important;
        width: min(220px, calc(100% - 170px)) !important;
    }

    .rm-header__inner > .rm-weather-offer .rm-weather-offer__panel {
        top: 58px !important;
        right: auto !important;
        left: 50% !important;
        width: min(520px, calc(100vw - 24px)) !important;
        transform: translateX(-50%) !important;
    }
}

/* Privacy page: a compact editorial document that follows the site system. */
.rm-page-hero--privacy {
    position: relative;
    overflow: hidden;
    padding: clamp(116px, 12vw, 168px) 0 clamp(54px, 7vw, 88px);
    background:
        radial-gradient(ellipse at 86% 12%, rgba(180, 136, 93, 0.22), transparent 34%),
        linear-gradient(112deg, #0d1012 0%, #111719 58%, #1a1413 100%);
}

.rm-page-hero--privacy::after {
    position: absolute;
    right: clamp(24px, 8vw, 140px);
    bottom: 28px;
    width: clamp(110px, 18vw, 240px);
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(180, 136, 93, 0.8));
}

.rm-page-hero--privacy .rm-price-hero__copy {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.rm-page-hero--privacy h1 {
    max-width: 760px;
    margin: 16px 0 20px;
    font-size: clamp(2.8rem, 7vw, 6.6rem);
    line-height: 0.96;
}

.rm-page-hero--privacy .rm-hero__lead {
    max-width: 640px;
    margin: 0;
    font-size: clamp(1rem, 1.5vw, 1.22rem);
    line-height: 1.6;
}

.rm-page-hero--privacy .rm-inline-note {
    display: inline-flex;
    margin-top: 28px;
    padding: 9px 12px;
    color: rgba(255, 253, 248, 0.72);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    border: 1px solid rgba(255, 253, 248, 0.18);
    border-radius: 999px;
}

.rm-privacy-page {
    overflow: clip;
    background: var(--r7-paper);
}

.rm-privacy-page .rm-section {
    padding-block: clamp(58px, 7vw, 96px);
}

.rm-privacy-page .rm-section + .rm-section {
    border-top: 1px solid rgba(13, 16, 18, 0.1);
}

.rm-privacy-page .rm-section--dark {
    color: var(--r7-white);
    background: #0d1012;
    border-top-color: rgba(255, 253, 248, 0.1);
}

.rm-privacy-page .rm-section-head {
    max-width: 780px;
    margin-bottom: clamp(28px, 4vw, 46px);
}

.rm-privacy-page .rm-section-head h2 {
    max-width: 760px;
    margin: 12px 0 16px;
    font-size: clamp(2rem, 4.2vw, 4.4rem);
    line-height: 1.02;
}

.rm-privacy-page .rm-section-copy {
    max-width: 690px;
    margin: 0;
    color: rgba(13, 16, 18, 0.64);
    font-size: 1rem;
    line-height: 1.65;
}

.rm-privacy-page .rm-section--dark .rm-section-copy {
    color: rgba(255, 253, 248, 0.66);
}

.rm-privacy-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
    gap: clamp(28px, 6vw, 92px);
    align-items: start;
}

.rm-privacy-intro__copy {
    max-width: 700px;
}

.rm-privacy-intro__panel {
    display: grid;
    gap: 0;
    padding: 8px 22px;
    color: var(--r7-white);
    background: #0d1012;
    border-radius: 4px;
    box-shadow: 0 20px 48px rgba(13, 16, 18, 0.14);
}

.rm-privacy-intro__panel .rm-inline-note {
    margin: 0;
    padding: 18px 0;
    color: rgba(255, 253, 248, 0.8);
    font-size: 0.86rem;
    line-height: 1.45;
    border-bottom: 1px solid rgba(255, 253, 248, 0.14);
}

.rm-privacy-intro__panel .rm-inline-note:last-child {
    border-bottom: 0;
}

.rm-privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.rm-privacy-grid .rm-faq-item {
    min-height: 0;
    padding: clamp(20px, 2.5vw, 30px);
    background: rgba(255, 253, 248, 0.62);
    border: 1px solid rgba(13, 16, 18, 0.13);
    border-radius: 4px;
    box-shadow: none;
}

.rm-section--dark .rm-privacy-grid .rm-faq-item {
    background: rgba(255, 253, 248, 0.045);
    border-color: rgba(255, 253, 248, 0.14);
}

.rm-privacy-grid .rm-faq-item h3 {
    margin: 0 0 12px;
    font-size: clamp(1.05rem, 1.7vw, 1.35rem);
    line-height: 1.15;
}

.rm-privacy-grid .rm-faq-item p {
    margin: 0;
    color: rgba(13, 16, 18, 0.68);
    font-size: 0.96rem;
    line-height: 1.62;
    overflow-wrap: anywhere;
}

.rm-section--dark .rm-privacy-grid .rm-faq-item p {
    color: rgba(255, 253, 248, 0.68);
}

.rm-privacy-grid .rm-faq-item a {
    color: inherit;
    text-decoration-color: rgba(180, 136, 93, 0.75);
    text-underline-offset: 3px;
}

.rm-privacy-page .rm-footer__cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: end;
    padding: clamp(26px, 4vw, 44px);
    color: var(--r7-white);
    background: #0d1012;
    border-radius: 4px;
}

.rm-privacy-page .rm-footer__cta h2 {
    max-width: 620px;
    margin: 12px 0;
    font-size: clamp(1.8rem, 3.6vw, 3.6rem);
    line-height: 1.02;
}

.rm-privacy-page .rm-footer__cta p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 253, 248, 0.66);
    line-height: 1.6;
}

.rm-privacy-page .rm-footer__cta-actions {
    display: grid;
    gap: 10px;
    min-width: 190px;
}

@media (max-width: 760px) {
    .rm-page-hero--privacy {
        padding: 104px 0 52px;
    }

    .rm-page-hero--privacy h1 {
        max-width: 14ch;
        margin-top: 14px;
        font-size: clamp(2.45rem, 12vw, 4.1rem);
        line-height: 0.98;
    }

    .rm-page-hero--privacy .rm-hero__lead {
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .rm-page-hero--privacy .rm-inline-note {
        margin-top: 22px;
    }

    .rm-privacy-intro,
    .rm-privacy-grid,
    .rm-privacy-page .rm-footer__cta {
        grid-template-columns: 1fr;
    }

    .rm-privacy-page .rm-section {
        padding-block: 52px;
    }

    .rm-privacy-page .rm-section-head h2 {
        font-size: clamp(2rem, 10vw, 3.1rem);
    }

    .rm-privacy-page .rm-section-copy,
    .rm-privacy-grid .rm-faq-item p {
        font-size: 0.95rem;
    }

    .rm-privacy-page .rm-footer__cta-actions {
        width: 100%;
    }

    .rm-privacy-page .rm-footer__cta-actions .rm-button {
        min-height: 48px;
        justify-content: center;
    }
}

/* The desktop service rail is already full-bleed; do not leave a second
   empty gutter inside the viewport-wide grid. */
@media (min-width: 1024px) {
    .r9-hero-services__grid {
        padding-inline: 0;
    }
}

@media (max-width: 699px) {
    .rm-footer {
        padding-block: 44px 18px;
    }

    .rm-footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
    }

    .rm-footer__brand {
        grid-column: 1 / -1;
    }

    .rm-footer__col a,
    .rm-footer__col span {
        font-size: 0.84rem;
    }

    .rm-footer__legal {
        margin-top: 28px;
    }
}

/* Keep the weather offer above the mobile booking CTA in every state. */
@media (max-width: 1023px) {
    .rm-weather-offer {
        bottom: calc(78px + var(--r7-safe-bottom));
    }
}

@keyframes rm-price-update {
    0% { opacity: 0.55; filter: blur(2px); transform: translateY(5px) scale(0.97); }
    65% { opacity: 1; filter: blur(0); transform: translateY(-1px) scale(1.015); }
    100% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .rm-calc-result__price.is-changing {
        animation: none;
    }
}

.rm-calc-result__breakdown {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(20, 25, 28, 0.12);
}

.rm-calc-result__breakdown-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--r7-muted);
    font-size: 0.78rem;
    line-height: 1.4;
}

.rm-calc-result__breakdown-row strong {
    flex: 0 0 auto;
    color: var(--r7-text);
    font-variant-numeric: tabular-nums;
}

.rm-calc-result__breakdown-empty {
    color: var(--r7-muted);
    font-size: 0.78rem;
}

.rm-footer {
    padding-top: clamp(54px, 7vw, 92px);
}

.rm-booking-modal,
.rm-gift-order-modal,
.rm-faq-modal {
    padding: 16px;
}

.rm-booking-modal__dialog,
.rm-gift-order-modal__dialog,
.rm-faq-modal__dialog {
    border-radius: 20px;
}

@media (min-width: 700px) {
    .rv6-directory__hero .rv6-actions,
    .rv6-directory__final .rv6-actions {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .rm-calc-switcher {
        max-width: none;
    }
}

@media (min-width: 1024px) {
    .rm-header {
        height: 76px;
    }

    .rm-scroll-progress {
        top: 75px;
    }

    .r7-hero,
    .r7-hero__inner {
        min-height: clamp(660px, 78svh, 780px);
    }

    .r7-hero__inner {
        padding-top: 112px;
        padding-bottom: 38px;
    }

    .r7-hero__content {
        width: min(650px, 56vw);
    }

    .r7-hero__facts div {
        min-width: 205px;
    }
}

@media (max-width: 760px) {
    :root {
        --r7-pad: 18px;
        --r7-section: 64px;
    }

    .rm-header__inner {
        width: calc(100% - 32px);
    }

    .rm-brand img {
        width: 92px;
    }

    .r7-hero,
    .r7-hero__inner {
        min-height: 680px;
    }

    .r7-hero__inner {
        padding-top: 96px;
        padding-bottom: 24px;
    }

    .r7-hero h1 {
        max-width: 12ch;
        font-size: clamp(2.45rem, 11.5vw, 3.45rem);
    }

    .r7-hero__lead {
        margin-top: 18px;
    }

    .r7-hero__lead p {
        font-size: 0.94rem;
    }

    .r7-hero .r7-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .r7-hero .r7-button,
    .r7-hero .r7-link {
        width: 100%;
    }

    .r7-hero .r7-link {
        justify-content: center;
    }

    .rm-page-hero,
    .rm-price-hero,
    .rv6-directory__hero {
        padding-block: 104px 52px;
    }

    .rm-page-hero h1,
    .rm-price-hero h1,
    .rv6-directory__hero h1 {
        font-size: clamp(2.3rem, 11vw, 3.7rem);
    }

    .rm-section-head h2,
    .rm-content-card h2,
    .rm-gift-card h2,
    .rv6-directory h2 {
        font-size: clamp(1.95rem, 9vw, 2.8rem);
    }

    .rm-price-card__head,
    .rm-calc-card__head,
    .rm-calc-card__body,
    .rm-calc-card__footer {
        padding: 18px;
    }

    .rm-segmented,
    .rm-option-grid,
    .rm-ppf-class-grid,
    .rm-ppf-film-grid,
    .rm-ppf-package-grid,
    .rm-ppf-zone-chip-grid {
        gap: 8px;
    }

    .rm-segmented__button,
    .rm-option-card,
    .rm-ppf-class-card,
    .rm-ppf-film-card,
    .rm-ppf-package-card,
    .rm-ppf-zone-chip {
        padding: 12px;
    }

    .rm-price-table {
        min-width: 560px;
    }

    .rm-booking-modal,
    .rm-gift-order-modal,
    .rm-faq-modal {
        padding: 0;
    }

    .rm-booking-modal__dialog,
    .rm-gift-order-modal__dialog,
    .rm-faq-modal__dialog {
        max-height: 94svh;
        border-radius: 20px 20px 0 0;
    }
}

/* Compact editorial rhythm: less dead space, same hierarchy and hit areas. */
:root {
    --r7-section: clamp(52px, 5.5vw, 88px);
}

.r7-heading {
    margin-bottom: clamp(24px, 3.5vw, 44px);
}

.r7-price__grid,
.r7-gift__grid {
    gap: clamp(40px, 6vw, 96px);
}

.r7-contact__inner {
    padding-block: clamp(64px, 7vw, 96px);
}

.rm-page-hero,
.rm-price-hero,
.rv6-directory__hero {
    padding-block: clamp(96px, 9vw, 128px) clamp(44px, 5vw, 72px);
}

.rm-feature-card,
.rm-path-card,
.rm-review-card,
.rm-contact-card,
.rm-faq-item,
.rm-content-card,
.rm-gift-card,
.rm-price-meta-card,
.rm-price-note-card,
.rm-price-card,
.rm-calc-card {
    padding: clamp(18px, 2.4vw, 26px);
}

@media (min-width: 1024px) {
    .r7-hero,
    .r7-hero__inner {
        min-height: clamp(600px, 70svh, 720px);
    }

    .r7-hero__inner {
        padding-top: 104px;
        padding-bottom: 30px;
    }

    .r7-service {
        padding-block: 28px 38px;
    }
}

@media (max-width: 760px) {
    :root {
        --r7-section: 52px;
    }

    .r7-hero,
    .r7-hero__inner {
        min-height: 620px;
    }

    .r7-hero__inner {
        padding-top: 88px;
        padding-bottom: 18px;
    }

    .r7-hero__content {
        margin-bottom: 34px;
    }

    .r7-contact__inner {
        padding-block: 56px;
    }

    .rm-page-hero,
    .rm-price-hero,
    .rv6-directory__hero {
        padding-block: 84px 44px;
    }

    .rm-feature-card,
    .rm-path-card,
    .rm-review-card,
    .rm-contact-card,
    .rm-faq-item,
    .rm-content-card,
    .rm-gift-card,
    .rm-price-meta-card,
    .rm-price-note-card,
    .rm-price-card,
    .rm-calc-card {
        padding: 18px;
    }

    .rm-price-nav {
        position: sticky;
        top: 74px;
        z-index: 4;
        padding-block: 10px;
        background: var(--r7-ink);
    }

    .rm-ppf-summary-card {
        position: static;
        box-shadow: 0 16px 36px rgba(10, 12, 14, 0.22);
    }
}

@media (max-width: 1023px) {
    .rm-calc-card__body--ppf {
        grid-template-columns: 1fr;
    }

    .rm-ppf-summary-card {
        position: static;
    }
}

/* The mobile navigation must be a real viewport layer, never a short flex box. */
@media (max-width: 1023px) {
    .rm-nav {
        height: calc(100dvh - 74px);
        min-height: calc(100dvh - 74px);
        max-height: none;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: var(--r7-ink) !important;
    }
}

/* Motion guard: hover is meaningful only with a fine pointer; reduced motion wins last. */
@media (hover: none), (pointer: coarse) {
    .r7-button:hover,
    .rm-button:hover,
    .rm-header__cta:hover,
    .rv6-directory :is(.rv6-button, .rv6-text-link):hover,
    .rm-segmented__button:hover,
    .rm-option-card:hover,
    .rm-ppf-class-card:hover,
    .rm-ppf-film-card:hover,
    .rm-ppf-package-card:hover,
    .rm-ppf-zone-chip:hover,
    .r9-hero-service:hover {
        transform: none;
    }

    .r7-button:hover::after,
    .rm-button:hover::after,
    .rm-header__cta:hover::after {
        transform: translateX(-125%);
    }
}

.rm-nav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
}

@media (hover: none), (pointer: coarse) {
    .rm-nav a {
        min-height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .r7-button,
    .rm-button,
    .rm-header__cta,
    .rv6-directory :is(.rv6-button, .rv6-text-link),
    .rm-segmented__button,
    .rm-option-card,
    .rm-ppf-class-card,
    .rm-ppf-film-card,
    .rm-ppf-package-card,
    .rm-ppf-zone-chip,
    .r9-hero-service,
    .r7-hero__media img,
    .rm-page-hero__media img,
    .r7-contact__media img {
        transition-duration: 0.01ms !important;
        transform: none !important;
    }

    .r7-button:hover::after,
    .rm-button:hover::after,
    .rm-header__cta:hover::after {
        transform: none !important;
    }
}

.rm-price-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.7fr);
    gap: clamp(36px, 7vw, 112px);
    align-items: end;
}

.rm-price-hero__copy {
    max-width: 760px;
}

.rm-price-hero__copy h1 {
    max-width: 760px;
}

.rm-price-hero__aside {
    display: grid;
    gap: 12px;
    align-self: end;
}

.rm-price-hero-card {
    padding: 20px 0;
    border-top: 1px solid rgba(251, 250, 247, 0.2);
}

.rm-price-hero-card__label {
    display: block;
    margin-bottom: 12px;
    color: var(--r7-red);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.rm-price-hero-card strong {
    display: block;
    color: var(--r7-white);
    font-family: var(--r7-font-display);
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    font-weight: 400;
    line-height: 1.15;
}

.rm-price-hero-card p {
    max-width: 360px;
    margin: 12px 0 0;
    color: rgba(251, 250, 247, 0.62);
    font-size: 0.88rem;
    line-height: 1.55;
}

@media (max-width: 760px) {
    .rm-price-hero {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .rm-price-hero__aside {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .rm-price-hero__aside {
        grid-template-columns: 1fr;
    }
}

.r7-reviews {
    color: var(--r7-white);
    background:
        radial-gradient(circle at 88% 18%, rgba(180, 136, 93, 0.12), transparent 28rem),
        #121517;
}

.r7-reviews__headline {
    border-bottom-color: rgba(251, 250, 247, 0.2);
}

.r7-reviews__headline > div span {
    color: var(--r7-red);
    font-size: clamp(3rem, 9vw, 5.2rem);
}

.r7-reviews__headline small {
    color: rgba(251, 250, 247, 0.7);
}

.r7-reviews__intro {
    display: grid;
    gap: 24px;
    align-content: end;
}

.r7-reviews blockquote {
    color: var(--r7-white);
}

.r7-reviews .r7-link {
    width: fit-content;
    color: var(--r7-white);
    border-bottom-color: rgba(251, 250, 247, 0.55);
}

.r7-reviews__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: clamp(42px, 6vw, 72px);
    color: rgba(251, 250, 247, 0.64);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.r7-reviews__controls {
    display: flex;
    gap: 8px;
}

.r7-reviews__controls button {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    color: var(--r7-white);
    background: transparent;
    border: 1px solid rgba(251, 250, 247, 0.3);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.r7-reviews__controls button:hover,
.r7-reviews__controls button:focus-visible {
    color: var(--r7-text);
    background: var(--r7-red);
    border-color: var(--r7-red);
}

.r7-reviews__cards {
    display: grid;
    grid-auto-columns: minmax(280px, 31vw);
    grid-auto-flow: column;
    gap: 16px;
    margin-top: 18px;
    overflow-x: auto;
    padding: 2px 2px 22px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-color: rgba(180, 136, 93, 0.8) rgba(251, 250, 247, 0.1);
    scrollbar-width: thin;
}

.r7-review-card {
    display: flex;
    min-height: 286px;
    flex-direction: column;
    scroll-snap-align: start;
    padding: 24px;
    background: linear-gradient(145deg, rgba(251, 250, 247, 0.1), rgba(251, 250, 247, 0.035));
    border: 1px solid rgba(251, 250, 247, 0.17);
    border-radius: 9px;
    box-shadow: inset 0 1px 0 rgba(251, 250, 247, 0.08);
}

.r7-review-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.r7-review-card__top div {
    display: grid;
    gap: 7px;
}

.r7-review-card__top strong {
    color: var(--r7-white);
    font-size: 1rem;
    line-height: 1.2;
}

.r7-review-card__top small {
    color: rgba(251, 250, 247, 0.56);
    font-size: 0.72rem;
}

.r7-review-card__source {
    display: grid;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    place-items: center;
    color: #fff;
    background: #f44336;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 800;
}

.r7-review-card__rating {
    margin-top: 26px;
    color: var(--r7-red);
    font-size: 0.85rem;
    letter-spacing: 0.14em;
}

.r7-review-card p {
    margin: 16px 0 24px;
    color: var(--r7-white);
    font-size: 1rem;
    line-height: 1.65;
}

.r7-review-card a {
    margin-top: auto;
    color: rgba(251, 250, 247, 0.62);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
}

.r7-review-card a:hover,
.r7-review-card a:focus-visible {
    color: var(--r7-red);
}

.r7-reviews__source-note {
    max-width: 620px;
    margin: 18px 0 0;
    color: rgba(251, 250, 247, 0.48);
    font-size: 0.75rem;
    line-height: 1.55;
}

@media (max-width: 760px) {
    .r7-reviews__toolbar {
        align-items: flex-end;
        margin-top: 40px;
    }

    .r7-reviews__cards {
        grid-auto-columns: minmax(274px, 86vw);
        gap: 12px;
        margin-right: -20px;
        padding-right: 20px;
    }

    .r7-review-card {
        min-height: 270px;
        padding: 21px;
    }
}

/* Type scale correction: hierarchy must feel tailored, not oversized. */
.r7-hero h1 {
    max-width: 680px;
    font-size: clamp(2.55rem, 4.8vw, 4rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.rm-page-hero h1,
.rm-price-hero h1,
.rv6-directory__hero h1 {
    max-width: 900px;
    font-size: clamp(2.05rem, 3.6vw, 3.6rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

.r7-heading h2,
.r7-proof__copy h2,
.r7-gift h2,
.r7-contact h2 {
    font-size: clamp(2rem, 4vw, 3.85rem);
    line-height: 1.02;
}

@media (max-width: 760px) {
    .r7-hero h1 { font-size: clamp(2.3rem, 9.6vw, 3.15rem); }

    .rm-page-hero h1,
    .rm-price-hero h1,
    .rv6-directory__hero h1 {
        font-size: clamp(1.95rem, 8.5vw, 2.8rem);
    }
}

/* Homepage cinematic layer: depth comes from the existing car image, not a
   heavy video dependency. Pointer motion is driven by JS on fine pointers. */
.r7-hero__media img {
    transform: translate3d(var(--r7-hero-x, 0px), var(--r7-hero-y, 0px), 0) scale(1.035);
    animation: rm-hero-breathe 18s ease-in-out infinite alternate;
    will-change: transform;
}

.r7-hero__scroll {
    position: absolute;
    right: 0;
    bottom: 28px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(251, 250, 247, 0.62);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 180ms ease-out, transform 180ms ease-out;
}

.r7-hero__scroll i {
    display: block;
    width: 42px;
    height: 1px;
    background: var(--r7-red);
    transform-origin: right center;
    transition: transform 180ms ease-out;
}

.r7-hero__scroll:hover,
.r7-hero__scroll:focus-visible {
    color: var(--r7-white);
    transform: translateX(-4px);
}

.r7-hero__scroll:hover i,
.r7-hero__scroll:focus-visible i {
    transform: scaleX(1.35);
}

@keyframes rm-hero-breathe {
    0% { transform: translate3d(var(--r7-hero-x, 0px), var(--r7-hero-y, 0px), 0) scale(1.035); }
    100% { transform: translate3d(var(--r7-hero-x, 0px), var(--r7-hero-y, 0px), 0) scale(1.065); }
}

@media (max-width: 760px) {
    .r7-hero__scroll {
        right: auto;
        left: 50%;
        bottom: 18px;
        transform: translateX(-50%);
        white-space: nowrap;
    }

    .r7-hero__scroll:hover,
    .r7-hero__scroll:focus-visible {
        transform: translateX(-50%);
    }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
    .r7-hero__media img {
        animation: none;
        transform: scale(1.035);
        will-change: auto;
    }
}

/* The desktop signature is decorative; on narrow screens it competes with the
   eyebrow and can overlap the hero copy. Keep one clear mobile message. */
@media (max-width: 760px) {
    .r7-hero__signature,
    .r7-hero__rail {
        display: none !important;
    }

    /* The next service rail already follows the hero on mobile; hiding this
       decorative anchor prevents it from competing with the facts block. */
    .r7-hero__scroll {
        display: none;
    }

    /* Keep the two service facts readable on narrow phones. The address is
       intentionally given its own row instead of being forced into a second
       narrow column beside the opening hours. */
    .r7-hero__facts {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .r7-hero__facts div,
    .r7-hero__facts div + div {
        display: grid;
        gap: 6px;
        padding: 14px 0 0;
    }

    .r7-hero__facts div + div {
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid rgba(247, 247, 244, 0.14);
    }

    .r7-hero__facts strong {
        display: block;
        max-width: 100%;
        overflow-wrap: anywhere;
        text-wrap: pretty;
    }

    /* Mobile hero rhythm: keep the CTA, facts and service rail as three
       distinct layers instead of letting flex wrapping compress them. */
    .r7-hero__content {
        text-align: center;
        margin-bottom: 0;
    }

    .r7-hero__lead,
    .r7-hero__lead p {
        margin-right: auto;
        margin-left: auto;
    }

    .r7-hero .r7-actions {
        display: grid;
        width: min(100%, 360px);
        margin: 24px auto 0;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .r7-hero .r7-link {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .r7-hero__facts {
        width: min(100%, 360px);
        margin: 24px auto 0;
        text-align: center;
    }

    .r7-hero__facts div,
    .r7-hero__facts div + div {
        justify-items: center;
    }

    /* Service photography is an accent behind the offer, not the main
       content. Keep each mobile tile compact enough to scan in one screen. */
    .r9-hero-service,
    .r9-hero-service:first-child {
        min-height: 176px !important;
        padding: 22px 0 !important;
        grid-template-columns: 28px minmax(0, 1fr) auto;
        gap: 12px;
    }

    .r9-hero-service__media img {
        opacity: 0.56;
    }
}

/* Reveal motion should add depth, not make below-the-fold content look
   disabled while the observer is still bringing it into view. */
html.r7-motion [data-r7-reveal] {
    opacity: 0.78;
}

/* Mobile viewport hardening: account for iPhone notches/home indicators and
   keep the fixed header/menu geometry in sync with the final 84px header. */
:root {
    --r7-safe-top: env(safe-area-inset-top, 0px);
    --r7-safe-right: env(safe-area-inset-right, 0px);
    --r7-safe-bottom: env(safe-area-inset-bottom, 0px);
    --r7-safe-left: env(safe-area-inset-left, 0px);
}

.rm-header {
    height: calc(84px + var(--r7-safe-top));
    padding-top: var(--r7-safe-top);
}

.rm-scroll-progress {
    top: calc(83px + var(--r7-safe-top));
}

@media (max-width: 1023px) {
    .rm-nav {
        inset: calc(84px + var(--r7-safe-top)) 0 0;
        height: calc(100dvh - 84px - var(--r7-safe-top));
        min-height: calc(100dvh - 84px - var(--r7-safe-top));
        padding-right: calc(var(--r7-pad) + var(--r7-safe-right));
        padding-bottom: calc(42px + var(--r7-safe-bottom));
        padding-left: calc(var(--r7-pad) + var(--r7-safe-left));
    }

    .rm-booking-direct,
    .rm-gift-order-form,
    .rm-faq-modal__grid,
    .rm-faq-modal__footer {
        padding-bottom: calc(30px + var(--r7-safe-bottom));
    }

    .rm-weather-offer {
        right: calc(12px + var(--r7-safe-right));
        bottom: calc(12px + var(--r7-safe-bottom));
        left: calc(12px + var(--r7-safe-left));
        width: auto;
    }

    .rm-consent-stack {
        right: calc(14px + var(--r7-safe-right));
        bottom: calc(80px + var(--r7-safe-bottom));
        left: calc(14px + var(--r7-safe-left));
    }
}

/* Gold primary CTA text stays readable across the services directory states. */
.rv6-directory .rv6-button--dark,
.rv6-directory .rv6-button--dark:hover,
.rv6-directory .rv6-button--dark:focus-visible {
    color: var(--r7-ink);
}

/* The services archive already has an inline CTA in every card; do not cover its contact facts with a duplicate FAB. */
.post-type-archive-service .rm-mobile-booking-fab {
    display: none;
}

/* Normalize mixed portrait/source dimensions into one premium gallery rhythm. */
.rm-gallery-card__media {
    height: clamp(220px, 24vw, 360px);
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.rm-gallery-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Keep the gallery hero image prominent without making the whole first screen a portrait wall. */
@media (min-width: 1024px) {
    .rm-page-hero--media .rm-page-hero__grid {
        align-items: center;
    }

    .rm-page-hero--media .rm-page-hero__copy,
.rm-page-hero--media .rm-page-hero__media {
        min-height: 0;
        height: clamp(560px, 50vw, 720px);
    }
}

/* Keep the homepage service rail on the full desktop canvas. This must stay
   after the shared container rules so the regular content width cannot win. */
@media (min-width: 1024px) {
    .r9-hero-services__grid {
        width: 100vw;
        max-width: none;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-inline: clamp(24px, 4vw, 72px);
        box-sizing: border-box;
    }
}

/* Footer CTA sits on a dark canvas; never inherit the light-surface button
   color here, otherwise secondary actions disappear into the background. */
.rm-footer__cta .rm-button--secondary,
.rm-footer__cta .rm-button--ghost {
    color: var(--r7-white);
    background: rgba(251, 250, 247, 0.045);
    border-color: rgba(251, 250, 247, 0.42);
}

.rm-footer__cta .rm-button--secondary:hover,
.rm-footer__cta .rm-button--secondary:focus-visible,
.rm-footer__cta .rm-button--ghost:hover,
.rm-footer__cta .rm-button--ghost:focus-visible {
    color: var(--r7-ink);
    background: var(--r7-white);
    border-color: var(--r7-white);
}

/* Final compact rhythm: reduce mobile bulk without shrinking controls or type. */
@media (min-width: 761px) {
    .r7-price,
    .r7-process,
    .r7-reviews,
    .r7-gift {
        padding-block: clamp(48px, 5vw, 64px);
    }

    .r7-process__steps li {
        min-height: 220px;
        padding-block: 26px;
    }

    .r7-reviews__headline {
        gap: 28px;
        padding-bottom: 42px;
    }

    .r7-gift__cards button {
        min-height: 122px;
        padding: 18px;
    }
}

@media (max-width: 760px) {
    .r9-hero-service,
    .r9-hero-service:first-child {
        min-height: 148px !important;
        padding-block: 18px !important;
    }

    .r7-price,
    .r7-process,
    .r7-reviews,
    .r7-gift {
        padding-block: 44px;
    }

    .r7-process__steps li {
        padding-block: 22px;
    }

    .r7-process__steps h3 {
        margin-block: 12px 8px;
        font-size: 1.75rem;
    }

    .r7-reviews__headline {
        gap: 26px;
        padding-bottom: 38px;
    }

    .r7-reviews__toolbar {
        margin-top: 30px;
    }

    .r7-review-card {
        min-height: 236px;
        padding: 18px;
    }

    .r7-review-card__rating {
        margin-top: 20px;
    }

    .r7-review-card p {
        margin-block: 12px 18px;
        line-height: 1.55;
    }

    .r7-gift__grid {
        gap: 40px;
    }

    .r7-gift__cards button {
        min-height: 112px;
        padding: 16px;
    }
}

/* Remove the decorative hero frame; content hierarchy supplies the structure. */
.r7-hero::before {
    display: none;
}

/* Final typography contract: editorial display + restrained interface text. */
html {
    font-synthesis: none;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
    font-family: var(--r7-font-body);
    font-kerning: normal;
    font-variant-numeric: proportional-nums;
}

h1,
h2,
h3,
h4,
h5,
h6,
.rm-calc-result__price,
[data-package-price] {
    font-family: var(--r7-font-display);
    font-synthesis: none;
    font-weight: 400;
    font-kerning: normal;
    font-variant-numeric: proportional-nums;
    text-wrap: balance;
}

h1,
h2,
h3 {
    letter-spacing: -0.035em;
}

p,
li,
label,
input,
select,
textarea {
    text-wrap: pretty;
}

.rm-calc-result__price,
[data-package-price] {
    font-variant-numeric: tabular-nums;
}

/* Last-in-file mobile overlay contract: the weather offer sits above booking. */
@media (max-width: 1023px) {
    body .rm-weather-offer {
        /* booking CTA: 14px, cookie dock: 76px, weather dock: 142px */
        bottom: calc(142px + var(--r7-safe-bottom)) !important;
    }
}

/* Last-in-file calculator contrast contract for dark result cards. */
.rm-calc-result__breakdown {
    border-top-color: rgba(251, 250, 247, 0.16);
}

.rm-calc-result__breakdown-row {
    color: rgba(251, 250, 247, 0.62);
    overflow-wrap: anywhere;
}

.rm-calc-result__breakdown-row strong {
    color: rgba(251, 250, 247, 0.94);
}

.rm-calc-result__breakdown-empty {
    color: rgba(251, 250, 247, 0.58);
}

@media (max-width: 600px) {
    .rm-calc-result {
        padding: 20px 18px 24px;
    }

    .rm-calc-result__breakdown-row {
        gap: 10px;
        font-size: 0.76rem;
    }

    .rm-calc-result__breakdown-row strong {
        white-space: nowrap;
    }
}

/* True final override: remove the desktop service rail side gutters. */
@media (min-width: 1024px) {
    body .r9-hero-services__grid {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Weather offer secondary action: make collapse feel like part of the control set. */
.rm-weather-offer__minimize {
    display: inline-flex;
    min-height: 44px;
    margin-left: auto;
    padding: 0 16px;
    align-items: center;
    justify-content: center;
    color: rgba(251, 250, 247, 0.78);
    background: rgba(251, 250, 247, 0.045);
    border: 1px solid rgba(251, 250, 247, 0.32);
    border-radius: 999px;
    font-family: var(--r7-font-body);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.045em;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.rm-weather-offer__minimize:hover,
.rm-weather-offer__minimize:focus-visible {
    color: var(--r7-ink);
    background: var(--r7-red);
    border-color: var(--r7-red);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .rm-weather-offer__minimize {
        margin: 0 auto;
    }
}

/* Weather claim form: progressive disclosure keeps the offer compact until needed. */
.rm-weather-offer__claim-form {
    display: grid;
    gap: 16px;
    margin-top: 18px;
    padding: 18px;
    background: rgba(251, 250, 247, 0.055);
    border: 1px solid rgba(251, 250, 247, 0.18);
    border-radius: 16px;
}

.rm-weather-offer__claim-form[hidden] {
    display: none;
}

/* Canonical mobile weather contract: the header owns one compact status
   control; the full panel is allowed to use the viewport only after intent. */
@media (max-width: 600px) {
    html body .rm-header__inner > .rm-weather-offer,
    html body .rm-header__inner > .rm-weather-offer.is-forecast {
        top: 8px !important;
        right: auto !important;
        bottom: auto !important;
        left: calc(50% + 12px) !important;
        width: 160px !important;
        transform: translateX(-50%) !important;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock,
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast {
        width: 160px !important;
        max-width: 160px !important;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock {
        min-height: 48px;
        padding: 8px 10px;
        gap: 6px;
        border-color: rgba(190, 148, 101, 0.38);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
        font-size: 0.64rem;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-label {
        min-width: 0;
        max-width: 54px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-discount {
        font-size: 0.62rem;
        white-space: nowrap;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock strong {
        font-size: 0.78rem;
        white-space: nowrap;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast {
        padding: 10px 12px;
        border-color: rgba(190, 148, 101, 0.38);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-head {
        gap: 6px;
        align-items: center;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-kicker {
        max-width: 66px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.58rem;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-head strong {
        display: block;
        max-width: 92px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.68rem;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-temp {
        font-size: 1.08rem;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-days {
        display: none;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__panel {
        top: 58px !important;
        right: auto !important;
        left: 50% !important;
        width: min(520px, calc(100vw - 24px)) !important;
        max-height: calc(100svh - 92px);
        overflow-y: auto;
        overscroll-behavior: contain;
        transform: translateX(-50%) !important;
    }
}

.rm-weather-offer__claim-heading {
    display: grid;
    gap: 6px;
}

.rm-weather-offer__claim-heading p {
    margin: 0;
    color: rgba(251, 250, 247, 0.7);
    font-size: 0.82rem;
    line-height: 1.45;
}

.rm-weather-offer__claim-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.rm-weather-offer__claim-fields label {
    display: grid;
    gap: 7px;
    color: rgba(251, 250, 247, 0.68);
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rm-weather-offer__claim-fields input {
    min-height: 46px;
    padding: 10px 12px;
    color: var(--r7-white);
    background: rgba(8, 10, 12, 0.7);
    border: 1px solid rgba(251, 250, 247, 0.22);
    border-radius: 10px;
    font-size: 0.9rem;
    letter-spacing: 0;
    text-transform: none;
}

.rm-weather-offer__claim-fields input::placeholder {
    color: rgba(251, 250, 247, 0.42);
}

.rm-weather-offer__claim-fields input:focus {
    border-color: var(--r7-red);
    box-shadow: 0 0 0 3px rgba(180, 136, 93, 0.18);
    outline: 0;
}

.rm-weather-offer__claim-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.rm-weather-offer__claim-cancel {
    min-height: 44px;
    padding: 0 14px;
    color: rgba(251, 250, 247, 0.68);
    background: transparent;
    border: 0;
    font-size: 0.72rem;
    font-weight: 750;
}

.rm-weather-offer__claim-cancel:hover,
.rm-weather-offer__claim-cancel:focus-visible {
    color: var(--r7-white);
}

@media (max-width: 600px) {
    .rm-weather-offer__claim-form {
        padding: 16px;
    }

    .rm-weather-offer__claim-fields {
        grid-template-columns: 1fr;
    }

    .rm-weather-offer__claim-actions {
        align-items: stretch;
    }

    .rm-weather-offer__claim-actions .rm-button--primary {
        flex: 1 1 100%;
        width: 100%;
    }
}

/* Confirmation state: one calm message, then the offer leaves the viewport. */
.rm-weather-offer__success {
    display: grid;
    min-height: 230px;
    padding: 30px 20px;
    place-content: center;
    justify-items: center;
    gap: 10px;
    text-align: center;
    animation: rm-weather-success-in 360ms var(--r7-ease) both;
}

.rm-weather-offer__success[hidden] {
    display: none;
}

.rm-weather-offer__panel.is-success > :not(.rm-weather-offer__success) {
    display: none;
}

.rm-weather-offer__success-mark {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: var(--r7-ink);
    background: var(--r7-red);
    border-radius: 50%;
    font-size: 1.6rem;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(180, 136, 93, 0.28);
}

.rm-weather-offer__success strong {
    color: var(--r7-white);
    font-size: clamp(1.45rem, 3vw, 2rem);
    letter-spacing: -0.04em;
}

.rm-weather-offer__success p {
    max-width: 28ch;
    margin: 0;
    color: rgba(251, 250, 247, 0.68);
    font-size: 0.88rem;
    line-height: 1.45;
}

@keyframes rm-weather-success-in {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .rm-weather-offer__success {
        animation: none;
    }
}

/* Cookie consent owns the foreground on first visit; reveal the weather offer
   after the visitor chooses cookie settings instead of stacking overlays. */
body:has(.rm-consent-card:not([hidden])) .rm-weather-offer {
    display: none !important;
}

/* Absolute final placement: keep the weather card inside the header lane. */
.rm-header__inner {
    position: relative;
}

/* Keep the desktop chip in the quiet gap before the navigation. */
@media (min-width: 1200px) {
    html body .rm-header__inner > .rm-weather-offer,
    html body .rm-header__inner > .rm-weather-offer.is-forecast {
        left: 34% !important;
        width: 260px !important;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__panel {
        right: auto !important;
        left: 0 !important;
        transform: none !important;
    }

    .rm-header__inner > .rm-weather-offer,
    .rm-header__inner > .rm-weather-offer.is-forecast {
        left: 36% !important;
        width: 290px !important;
    }

    .rm-header__inner > .rm-weather-offer .rm-weather-offer__panel {
        right: auto !important;
        left: 0 !important;
        transform: none !important;
    }

    html body .rm-header__inner > .rm-weather-offer {
        width: 276px !important;
    }
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 320px !important;
    min-height: 42px;
    padding: 6px 12px 6px 10px;
    gap: 10px;
    color: rgba(255, 253, 248, 0.72);
    background: rgba(14, 17, 17, 0.86) !important;
    border: 1px solid rgba(180, 136, 93, 0.22) !important;
    border-radius: 999px !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-size: 0.7rem;
    letter-spacing: 0.025em;
    transition: color 180ms ease, transform 180ms ease;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock::before {
    display: none;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock:hover,
html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock:focus-visible {
    color: var(--r7-white);
    background: transparent;
    box-shadow: none;
    transform: translateY(-1px);
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock strong {
    flex: 0 0 auto;
    min-width: 46px;
    color: var(--r7-white);
    font-size: 1.1rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
    font-weight: 750;
    line-height: 1;
    text-align: right;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-label {
    min-width: 0;
    flex: 1 1 auto;
    color: rgba(255, 253, 248, 0.72);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-label small,
html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-label b {
    display: block;
    font: inherit;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-label b {
    color: rgba(255, 253, 248, 0.84);
    letter-spacing: 0.08em;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-discount {
    position: relative;
    flex: 0 0 auto;
    padding-left: 10px;
    color: var(--r7-gold);
    border-left: 1px solid rgba(180, 136, 93, 0.24);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-discount::before {
    display: none;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-discount::after {
    content: " на уход";
    font-weight: 650;
}

@keyframes rm-weather-signal {
    0%, 100% { opacity: 0.45; transform: scale(0.85); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* The header progress line must not pass beneath an expanded weather card. */
body:has(.rm-header__inner > .rm-weather-offer .rm-weather-offer__panel:not([hidden])) .rm-scroll-progress {
    display: none !important;
}

html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__panel {
    z-index: 4;
}

.rm-header__inner > .rm-weather-offer {
    position: absolute !important;
    top: 10px !important;
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    z-index: 1002;
    width: 300px !important;
    transform: translateX(-50%);
}

.rm-header__inner > .rm-weather-offer .rm-weather-offer__panel {
    position: absolute !important;
    top: 58px !important;
    right: 0 !important;
    bottom: auto !important;
    left: auto !important;
    width: min(520px, calc(100vw - 32px)) !important;
    transform: none !important;
}

.rm-header__inner > .rm-weather-offer.is-forecast {
    width: 300px !important;
}

@media (max-width: 1023px) {
    .rm-header__inner > .rm-weather-offer,
    .rm-header__inner > .rm-weather-offer.is-forecast {
        top: 8px !important;
        left: 50% !important;
        width: min(250px, calc(100% - 154px)) !important;
    }

    /* Mobile header has three stable lanes: brand, weather, menu. */
    html body .rm-header__inner > .rm-weather-offer.is-forecast {
        top: 15px !important;
        right: 60px !important;
        left: auto !important;
        width: 136px !important;
        transform: none !important;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast {
        max-height: 42px;
        padding: 6px 9px;
        border-radius: 12px;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-kicker {
        display: none;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-head strong {
        max-width: 8ch;
        margin-top: 0;
        overflow: hidden;
        font-size: 0.68rem;
        text-overflow: ellipsis;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-temp {
        font-size: 0.96rem;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast:hover,
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast:focus-visible {
        max-height: 42px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    }

    .rm-header__inner > .rm-weather-offer .rm-weather-offer__panel {
        top: 58px !important;
        right: auto !important;
        left: 50% !important;
        width: min(520px, calc(100vw - 24px)) !important;
        transform: translateX(-50%) !important;
    }
}

/* Final responsive contract: one mobile weather lane, no competing legacy
   widths. The offer chip and forecast occupy the same reserved space. */
@media (max-width: 760px) {
    html body .rm-header__inner > .rm-weather-offer,
    html body .rm-header__inner > .rm-weather-offer.is-forecast {
        top: 14px !important;
        right: 56px !important;
        left: auto !important;
        width: 168px !important;
        max-width: 168px !important;
        transform: none !important;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock,
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast {
        box-sizing: border-box;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 42px;
        border-radius: 13px !important;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock {
        padding: 5px 9px;
        gap: 6px;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-mark {
        flex: 0 0 24px;
        width: 24px;
        height: 24px;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-mark svg {
        width: 14px;
        height: 14px;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-label {
        max-width: 4.5ch;
        font-size: 0.54rem;
        letter-spacing: 0.03em;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-discount {
        padding-left: 6px;
        font-size: 0.62rem;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-discount::after {
        display: none;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock strong {
        min-width: 39px;
        font-size: 0.88rem;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast {
        width: 142px !important;
        max-width: 142px !important;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast {
        min-height: 42px;
        max-height: 42px !important;
        padding: 6px 9px !important;
        overflow: hidden;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-kicker,
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-days {
        display: none !important;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-head {
        min-height: 28px;
        gap: 6px;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-head strong {
        max-width: 7ch;
        margin-top: 0;
        font-size: 0.68rem;
        line-height: 1.1;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-temp {
        font-size: 0.96rem;
    }

    .rm-calc-result__breakdown-row {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        gap: 12px;
    }

    .rm-calc-result__breakdown-row span {
        min-width: 0;
        overflow-wrap: anywhere;
    }
}

/* Final mobile weather placement: keep the status inside the header lane. */
@media (max-width: 767px) {
    html body .rm-header__inner > .rm-weather-offer,
    html body .rm-header__inner > .rm-weather-offer.is-forecast {
        top: 50% !important;
        right: 58px !important;
        bottom: auto !important;
        left: auto !important;
        width: min(164px, calc(100% - 150px)) !important;
        max-width: 164px !important;
        transform: translateY(-50%) !important;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__forecast,
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast {
        display: flex !important;
        align-items: center;
        width: 100% !important;
        min-height: 40px;
        max-height: 40px !important;
        padding: 6px 10px !important;
        border-radius: 12px !important;
        box-shadow: none !important;
        overflow: hidden;
        pointer-events: none;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__forecast-head,
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-head {
        display: flex;
        align-items: center;
        min-width: 0;
        width: 100%;
        min-height: 0;
        gap: 6px;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__forecast-kicker,
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-kicker {
        min-width: 0;
        overflow: hidden;
        font-size: 0.54rem;
        line-height: 1;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__forecast-head strong,
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-head strong {
        min-width: 0;
        max-width: none;
        margin: 0;
        overflow: hidden;
        font-size: 0.72rem;
        line-height: 1;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__forecast-temp,
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-temp {
        flex: 0 0 auto;
        margin-left: auto;
        font-size: 0.94rem;
        line-height: 1;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__forecast-days,
    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__forecast:hover .rm-weather-offer__forecast-days,
    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__forecast:focus-visible .rm-weather-offer__forecast-days,
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-days {
        display: none !important;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock {
        width: 100% !important;
        min-height: 40px;
        padding: 6px 10px !important;
        gap: 7px;
        border-radius: 12px !important;
        box-shadow: none !important;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-label b {
        display: none;
    }
}

/* Absolute final narrow-screen hero contract. Keep content width-owned by the
   container after all legacy cascade layers have finished. */
@media (max-width: 760px) {
    html body .r7-hero__content,
    html body .r7-hero__lead,
    html body .r7-hero__lead p,
    html body .r7-hero .r7-actions,
    html body .r7-hero__facts {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    html body .r7-hero h1 {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        font-size: clamp(2.15rem, 10vw, 3.1rem) !important;
        letter-spacing: -0.045em !important;
        overflow-wrap: normal;
    }

    html body .r7-hero .r7-button,
    html body .r7-hero .r7-link {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }
}

/* Mobile header contract: keep weather compact and clear of the menu. */
@media (max-width: 767px) {
    html body .rm-header__inner > .rm-weather-offer,
    html body .rm-header__inner > .rm-weather-offer.is-forecast {
        top: 50% !important;
        right: calc(64px + env(safe-area-inset-right)) !important;
        left: auto !important;
        width: min(146px, calc(100% - 190px)) !important;
        max-width: 146px !important;
        transform: translateY(-50%) !important;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__forecast,
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast,
    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock {
        box-sizing: border-box;
        width: 100% !important;
        min-height: 38px !important;
        max-height: 38px !important;
        padding: 0 10px !important;
        overflow: hidden;
        border-radius: 999px !important;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2) !important;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__panel {
        top: calc(100% + 12px) !important;
        right: 0 !important;
        left: auto !important;
        width: min(340px, calc(100vw - 24px)) !important;
        max-height: calc(100dvh - 104px) !important;
        overflow: auto;
        transform: none !important;
    }
}

@media (max-width: 380px) {
    html body .rm-header__inner > .rm-weather-offer,
    html body .rm-header__inner > .rm-weather-offer.is-forecast {
        right: calc(60px + env(safe-area-inset-right)) !important;
        width: min(132px, calc(100% - 178px)) !important;
        max-width: 132px !important;
    }
}

/* Do not let mobile layout overrides resurrect hidden async states. */
html body .rm-header__inner > .rm-weather-offer [hidden] {
    display: none !important;
}

/* Extra-small phones: preserve a clear gap between logo, weather and menu. */
@media (max-width: 380px) {
    html body .rm-header__inner > .rm-weather-offer,
    html body .rm-header__inner > .rm-weather-offer.is-forecast {
        right: 54px !important;
        width: min(132px, calc(100% - 188px)) !important;
        max-width: 132px !important;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__forecast,
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast,
    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock {
        min-height: 36px;
        max-height: 36px !important;
        padding: 5px 8px !important;
        border-radius: 10px !important;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__forecast-kicker,
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-kicker {
        font-size: 0.5rem;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__forecast-temp,
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-temp {
        font-size: 0.82rem;
    }
}

/* Mobile weather status: one quiet, readable chip inside the header. */
@media (max-width: 767px) {
    html body .rm-header__inner > .rm-weather-offer,
    html body .rm-header__inner > .rm-weather-offer.is-forecast {
        width: min(152px, calc(100% - 174px)) !important;
        max-width: 152px !important;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__forecast,
    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast,
    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock {
        min-height: 38px;
        max-height: 38px !important;
        padding: 0 10px !important;
        border: 1px solid rgba(244, 244, 240, 0.18) !important;
        border-radius: 999px !important;
        background: rgba(13, 16, 18, 0.82) !important;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18) !important;
        backdrop-filter: blur(12px);
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-kicker {
        display: none !important;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-head {
        gap: 5px;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-head strong {
        max-width: 8ch;
        font-size: 0.68rem;
        line-height: 1;
    }

    html body .rm-header__inner > .rm-weather-offer.is-forecast .rm-weather-offer__forecast-temp {
        font-size: 0.9rem;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-label {
        display: none !important;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-mark {
        flex: 0 0 22px;
        width: 22px;
        height: 22px;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock-discount {
        padding-left: 0;
        font-size: 0.68rem;
        white-space: nowrap;
    }

    html body .rm-header__inner > .rm-weather-offer .rm-weather-offer__dock strong {
        min-width: 36px;
        font-size: 0.86rem;
    }
}

/* Absolute last layer: narrow hero content must never inherit desktop width. */
@media (max-width: 760px) {
    html body .r7-hero,
    html body .r7-hero__inner,
    html body .r7-hero__content,
    html body .r7-hero__lead,
    html body .r7-hero__lead p,
    html body .r7-hero .r7-actions,
    html body .r7-hero__facts {
        box-sizing: border-box !important;
        width: calc(100vw - 36px) !important;
        max-width: calc(100vw - 36px) !important;
        min-width: 0 !important;
    }

    html body .r7-hero__inner {
        width: 100% !important;
        max-width: 100% !important;
        padding-inline: 18px !important;
    }

    html body .r7-hero__content {
        display: block !important;
    }

    html body .r7-hero h1 {
        display: block !important;
        width: calc(100vw - 36px) !important;
        max-width: calc(100vw - 36px) !important;
        margin-inline: 0 !important;
        text-align: left !important;
        font-size: clamp(2rem, 8.6vw, 2.65rem) !important;
        line-height: 1.03 !important;
        letter-spacing: -0.04em !important;
        white-space: normal !important;
        overflow: visible !important;
    }

    html body .r7-hero__lead,
    html body .r7-hero__lead p {
        display: block !important;
        width: calc(100vw - 36px) !important;
        max-width: calc(100vw - 36px) !important;
        margin-inline: 0 !important;
        font-size: 0.94rem !important;
        line-height: 1.5 !important;
        overflow-wrap: anywhere !important;
    }

    html body .r7-hero .r7-actions,
    html body .r7-hero .r7-button,
    html body .r7-hero .r7-link {
        width: calc(100vw - 36px) !important;
        max-width: calc(100vw - 36px) !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
}

/* Final mobile viewport guard: keep the hero inside the readable column. */
@media (max-width: 760px) {
    html body .r7-hero,
    html body .r7-hero__inner,
    html body .r7-hero__content,
    html body .r7-hero__lead,
    html body .r7-hero__lead p,
    html body .r7-hero .r7-actions,
    html body .r7-hero__facts {
        box-sizing: border-box !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    html body .r7-hero__inner {
        width: 100% !important;
        padding-inline: 18px !important;
    }

    html body .r7-hero__content {
        display: block !important;
        width: 100% !important;
    }

    html body .r7-hero h1 {
        width: 100% !important;
        margin-inline: 0 !important;
        font-size: clamp(2rem, 8.6vw, 2.65rem) !important;
        line-height: 1.03 !important;
        letter-spacing: -0.04em !important;
        white-space: normal !important;
        overflow: visible !important;
    }

    html body .r7-hero__lead,
    html body .r7-hero__lead p {
        display: block !important;
        width: 100% !important;
        margin-inline: 0 !important;
        font-size: 0.94rem !important;
        line-height: 1.5 !important;
        overflow-wrap: anywhere !important;
    }

    html body .r7-hero .r7-actions,
    html body .r7-hero .r7-button,
    html body .r7-hero .r7-link {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
}
/* Rosmouka x Lucci: a restrained partner editorial, not a banner. */
.rm-lucci-collab {
    position: relative;
    overflow: hidden;
    color: var(--r7-ink, #f5f2ec);
    background:
        radial-gradient(circle at 85% 20%, rgba(181, 132, 82, 0.18), transparent 34%),
        linear-gradient(125deg, #121516 0%, #0b0d0e 58%, #181112 100%);
}

.rm-lucci-collab::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.055), transparent);
    content: "";
    transform: translateX(-100%);
    transition: transform 900ms cubic-bezier(.2,.7,.2,1);
}

.rm-lucci-collab:hover::before { transform: translateX(100%); }

.rm-lucci-collab__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(160px, .8fr) minmax(0, 1.8fr) minmax(240px, .9fr);
    align-items: end;
    gap: clamp(28px, 5vw, 88px);
    padding-block: clamp(60px, 8vw, 112px);
}

.rm-lucci-collab__mark {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(245, 242, 236, .64);
    font: 700 .66rem/1.2 var(--r7-sans, Manrope, sans-serif);
    letter-spacing: .16em;
    white-space: nowrap;
}

.rm-lucci-collab__mark i,
.rm-footer__collab i { color: #c29360; font-style: normal; }

.rm-lucci-collab__copy .r7-kicker { color: #c29360; }

.rm-lucci-collab h2 {
    max-width: 760px;
    margin: 16px 0 20px;
    color: #f5f2ec;
    font: 400 clamp(2.35rem, 5vw, 5.4rem)/.98 var(--r7-display, Prata, Georgia, serif);
    letter-spacing: -.045em;
}

.rm-lucci-collab h2 em { color: #c29360; font-style: normal; }

.rm-lucci-collab__copy p {
    max-width: 620px;
    margin: 0;
    color: rgba(245, 242, 236, .68);
    font-size: clamp(.95rem, 1.3vw, 1.12rem);
    line-height: 1.6;
}

.rm-lucci-collab__meta {
    display: grid;
    gap: 22px;
    justify-items: start;
    color: rgba(245, 242, 236, .5);
    font-size: .76rem;
    letter-spacing: .06em;
    line-height: 1.45;
}

.rm-lucci-collab__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.rm-lucci-collab .r7-button--primary { color: #171313; background: #c29360; }
.rm-lucci-collab .r7-link { color: #f5f2ec; }

.rm-footer__collab {
    display: grid;
    gap: 6px;
    width: fit-content;
    margin-top: 24px;
    color: rgba(245, 242, 236, .76);
    text-decoration: none;
}

.rm-footer__collab span { font: 700 .72rem/1.2 var(--r7-sans, Manrope, sans-serif); letter-spacing: .14em; }
.rm-footer__collab small { color: rgba(245, 242, 236, .48); font-size: .78rem; }
.rm-footer__collab:hover small, .rm-footer__collab:focus-visible small { color: #c29360; }

@media (max-width: 900px) {
    .rm-lucci-collab__inner { grid-template-columns: 1fr 1.7fr; }
    .rm-lucci-collab__mark { grid-column: 1 / -1; }
    .rm-lucci-collab__meta { grid-column: 2; }
}

@media (max-width: 640px) {
    .rm-lucci-collab__inner { display: block; padding-block: 52px; }
    .rm-lucci-collab__mark { margin-bottom: 42px; }
    .rm-lucci-collab h2 { font-size: clamp(2.2rem, 11vw, 3.5rem); }
    .rm-lucci-collab__meta { margin-top: 34px; }
    .rm-lucci-collab__actions { align-items: stretch; flex-direction: column; gap: 14px; }
    .rm-lucci-collab__actions .r7-button, .rm-lucci-collab__actions .r7-link { width: 100%; box-sizing: border-box; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    .rm-lucci-collab::before { display: none; }
}
