@font-face {
    font-family: "Cormorant Garamond";
    src: url("/assets/fonts/subset-CormorantGaramond-Bold.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("/assets/fonts/subset-CormorantGaramond-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("/assets/fonts/subset-Manrope-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("/assets/fonts/subset-Manrope-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #12191a;
    --ink-soft: #1a2424;
    --forest: #20312e;
    --forest-light: #2d4741;
    --ivory: #f3efe7;
    --paper: #fbf8f1;
    --sand: #d9cfbd;
    --gold: #c7a765;
    --gold-light: #e4cf9d;
    --clay: #9c6c55;
    --white: #fffdf8;
    --line-dark: rgba(255, 255, 255, 0.14);
    --line-light: rgba(32, 49, 46, 0.18);
    --shadow: 0 24px 60px rgba(18, 25, 26, 0.12);
    --display: "Cormorant Garamond", Georgia, serif;
    --body: "Manrope", Arial, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
}

body.rh-menu-open {
    overflow: hidden;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    content: "";
    pointer-events: none;
    opacity: 0.55;
    background-image:
        linear-gradient(rgba(32, 49, 46, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(32, 49, 46, 0.025) 1px, transparent 1px);
    background-size: 32px 32px;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

p,
h1,
h2,
h3,
ol,
ul {
    margin-top: 0;
}

.rh-container {
    width: min(100% - 40px, 1240px);
    margin-inline: auto;
}

.rh-section {
    position: relative;
    padding: 78px 0;
}

.rh-text-center {
    text-align: left;
}

.rh-section__header {
    position: relative;
    max-width: 780px;
    margin-bottom: 38px;
}

.rh-section__overline,
.rh-hero__overline,
.rh-casino__overline,
.rh-wellbeing__overline,
.rh-contact__overline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--clay);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.rh-section__overline::before,
.rh-hero__overline::before,
.rh-casino__overline::before,
.rh-wellbeing__overline::before,
.rh-contact__overline::before {
    width: 28px;
    height: 1px;
    content: "";
    background: currentColor;
}

.rh-section__title,
.rh-casino__title,
.rh-wellbeing__title,
.rh-contact__title {
    margin-bottom: 20px;
    font-family: var(--display);
    font-size: clamp(36px, 10vw, 52px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.025em;
}

.rh-section__text,
.rh-casino__text,
.rh-wellbeing__text {
    max-width: 700px;
    margin-bottom: 0;
    color: #54615e;
}

.rh-btn {
    position: relative;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 12px 24px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition:
        color 0.35s var(--ease),
        border-color 0.35s var(--ease),
        background-color 0.35s var(--ease),
        transform 0.35s var(--ease);
}

.rh-btn::before {
    position: absolute;
    inset: 0;
    content: "";
    background: var(--white);
    transform: translateX(-102%);
    transition: transform 0.45s var(--ease);
    z-index: -1;
}

.rh-btn:hover::before {
    transform: translateX(0);
}

.rh-btn:hover {
    color: var(--ink);
    transform: translateY(-2px);
}

.rh-btn--primary {
    color: var(--ink);
    background: var(--gold);
}

.rh-btn--outlined,
.rh-btn--outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.36);
}

.rh-btn > *,
.rh-btn {
    isolation: isolate;
}

.rh-header {
    position: relative;
    z-index: 100;
    color: var(--white);
    background: var(--ink);
}

.rh-header__notice {
    border-bottom: 1px solid var(--line-dark);
    color: var(--sand);
    background: #0c1212;
}

.rh-header__notice-wrapper {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
}

.rh-header__notice-left {
    display: none;
}

.rh-header__notice-text {
    margin: 0;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.rh-header__content {
    position: relative;
    z-index: 3;
    background: rgba(18, 25, 26, 0.97);
}

.rh-header__wrapper {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
}

.rh-header__logo,
.rh-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.rh-header__logo-mark,
.rh-footer__logo-mark {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50% 50% 50% 12%;
    color: var(--gold-light);
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    transform: rotate(-4deg);
}

.rh-header__logo-wrapper,
.rh-footer__logo-wrapper {
    display: flex;
    flex-direction: column;
}

.rh-header__logo-name,
.rh-footer__logo-name {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 0.02em;
}

.rh-header__logo-description,
.rh-footer__logo-description {
    margin-top: 6px;
    color: var(--sand);
    font-size: 7px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.rh-header__nav {
    position: fixed;
    top: 104px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    padding: 40px 20px;
    background: radial-gradient(circle at 90% 10%, rgba(199, 167, 101, 0.18), transparent 32%), var(--ink);
    opacity: 0;
    transform: translateY(-16px);
    transition:
        opacity 0.3s var(--ease),
        transform 0.4s var(--ease),
        visibility 0.3s;
}

.rh-menu-open .rh-header__nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.rh-header__nav::after {
    position: absolute;
    right: -60px;
    bottom: 30px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(199, 167, 101, 0.15);
    border-radius: 50%;
    box-shadow:
        0 0 0 30px rgba(199, 167, 101, 0.04),
        0 0 0 60px rgba(199, 167, 101, 0.025);
    content: "";
}

.rh-header__nav-list {
    position: relative;
    z-index: 1;
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
}

.rh-header__nav-item {
    border-bottom: 1px solid var(--line-dark);
}

.rh-header__nav-link {
    display: block;
    padding: 15px 0;
    font-family: var(--display);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.15;
    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.rh-header__nav-link:hover {
    padding-left: 8px;
    color: var(--gold-light);
}

.rh-header__nav-btn {
    z-index: 1;
    width: 100%;
}

.rh-header__burger {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line-dark);
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.rh-header__burger-line {
    position: absolute;
    left: 11px;
    display: block;
    width: 20px;
    height: 1px;
    background: var(--white);
    transition:
        top 0.3s var(--ease),
        transform 0.3s var(--ease),
        opacity 0.2s ease;
}

.rh-header__burger-line:nth-child(1) {
    top: 14px;
}

.rh-header__burger-line:nth-child(2) {
    top: 21px;
    width: 14px;
}

.rh-header__burger-line:nth-child(3) {
    top: 28px;
}

.rh-menu-open .rh-header__burger-line:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.rh-menu-open .rh-header__burger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(5px);
}

.rh-menu-open .rh-header__burger-line:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

.rh-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 88px 0 96px;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 25%, rgba(199, 167, 101, 0.18), transparent 24%),
        linear-gradient(135deg, var(--ink) 0%, var(--forest) 100%);
}

.rh-hero::before {
    position: absolute;
    top: -100px;
    right: -165px;
    z-index: -1;
    width: 370px;
    height: 370px;
    border: 1px solid rgba(228, 207, 157, 0.18);
    border-radius: 50%;
    box-shadow:
        0 0 0 46px rgba(228, 207, 157, 0.035),
        0 0 0 92px rgba(228, 207, 157, 0.02);
    content: "";
}

.rh-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    height: 70px;
    content: "";
    opacity: 0.25;
    background: repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, 0.08) 18px 19px);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.rh-hero__grid {
    position: relative;
    display: grid;
}

.rh-hero__content {
    position: relative;
    z-index: 2;
}

.rh-hero__overline {
    color: var(--gold-light);
}

.rh-hero__title {
    max-width: 820px;
    margin-bottom: 24px;
    font-family: var(--display);
    font-size: 45px;
    font-weight: 500;
    line-height: 0.88;
    letter-spacing: -0.04em;
    overflow-wrap: break-word;
}

.rh-hero__title--accent {
    color: var(--gold-light);
    font-style: italic;
}

.rh-hero__text {
    max-width: 670px;
    margin-bottom: 31px;
    color: #d3d8d4;
}

.rh-hero__action {
    display: flex;
}

.rh-hero__btn {
    width: 100%;
}

.rh-hero__decoration {
    display: none;
}

.rh-features {
    position: relative;
    z-index: 4;
    background: var(--ivory);
}

.rh-features__grid {
    display: grid;
}

.rh-features__item {
    position: relative;
    padding: 34px 0;
    border-bottom: 1px solid var(--line-light);
}

.rh-features__item:last-child {
    border-bottom: 0;
}

.rh-features__item-number {
    display: block;
    margin-bottom: 15px;
    color: var(--clay);
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
}

.rh-features__item-title {
    margin-bottom: 8px;
    font-family: var(--display);
    font-size: 27px;
    font-weight: 700;
    line-height: 1;
}

.rh-features__item-text {
    max-width: 350px;
    margin-bottom: 0;
    color: #66706e;
    font-size: 13px;
    line-height: 1.7;
}

.rh-lodges {
    overflow: hidden;
    background: var(--paper);
}

.rh-lodges::before {
    position: absolute;
    top: 40px;
    right: -65px;
    width: 150px;
    height: 150px;
    border: 1px solid var(--line-light);
    border-radius: 50%;
    content: "";
}

.rh-lodges__grid {
    display: grid;
    gap: 18px;
}

.rh-lodges__card {
    position: relative;
    overflow: hidden;
    min-height: 370px;
    padding: 28px;
    border: 1px solid var(--line-light);
    background: rgba(255, 253, 248, 0.72);
    transition:
        border-color 0.35s ease,
        transform 0.45s var(--ease),
        box-shadow 0.45s var(--ease);
}

.rh-lodges__card:hover {
    border-color: rgba(156, 108, 85, 0.5);
    box-shadow: var(--shadow);
    transform: translateY(-7px);
}

.rh-lodges__card::before {
    position: absolute;
    right: -45px;
    bottom: -45px;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(199, 167, 101, 0.32);
    border-radius: 50%;
    content: "";
    transition: transform 0.6s var(--ease);
}

.rh-lodges__card:hover::before {
    transform: scale(1.3);
}

.rh-lodges__card-mark-wrapper {
    position: relative;
    display: grid;
    width: 96px;
    height: 96px;
    margin-bottom: 34px;
    place-items: center;
    color: var(--white);
    background: var(--forest);
}

.rh-lodges__card-mark-wrapper--1 {
    border-radius: 50% 50% 8px 50%;
}

.rh-lodges__card-mark-wrapper--2 {
    border-radius: 50% 8px 50% 50%;
    background: var(--clay);
    transform: rotate(5deg);
}

.rh-lodges__card-mark-wrapper--3 {
    border-radius: 8px 50% 50% 50%;
    background: var(--ink);
}

.rh-lodges__card-mark {
    font-family: var(--display);
    font-size: 42px;
    font-weight: 500;
}

.rh-lodges__card-label {
    display: block;
    margin-bottom: 15px;
    font-family: var(--display);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.rh-lodges__card-text {
    margin-bottom: 22px;
    color: #5f6967;
    font-size: 13px;
}

.rh-lodges__card-link {
    display: inline-block;
    border-bottom: 1px solid var(--gold);
    color: var(--forest);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        color 0.25s ease,
        letter-spacing 0.25s ease;
}

.rh-lodges__card-link:hover {
    color: var(--clay);
    letter-spacing: 0.12em;
}

.rh-casino {
    isolation: isolate;
    overflow: hidden;
    color: var(--white);
    background: var(--ink-soft);
}

.rh-casino::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    opacity: 0.28;
    background:
        radial-gradient(circle at 10% 25%, rgba(199, 167, 101, 0.25), transparent 25%),
        linear-gradient(115deg, transparent 0 65%, rgba(255, 255, 255, 0.04) 65% 65.2%, transparent 65.2%);
}

.rh-casino__grid {
    display: grid;
    gap: 48px;
}

.rh-casino__age-badge {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding: 9px 14px 9px 9px;
    border: 1px solid var(--line-dark);
    border-radius: 999px;
}

.age-badge__age {
    display: grid;
    width: 41px;
    height: 41px;
    place-items: center;
    border-radius: 50%;
    color: var(--ink);
    background: var(--gold);
    font-family: var(--display);
    font-size: 18px;
}

.age-badge__label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.rh-casino__overline {
    color: var(--gold-light);
}

.rh-casino__text {
    color: #bdc5c2;
}

.rh-casino__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rh-casino__option {
    position: relative;
    display: grid;
    grid-template-columns: 34px 1fr 28px;
    gap: 12px;
    align-items: start;
    padding: 23px 0;
    border-top: 1px solid var(--line-dark);
}

.rh-casino__option:last-child {
    border-bottom: 1px solid var(--line-dark);
}

.rh-casino__option-number {
    color: var(--gold);
    font-family: var(--display);
    font-size: 17px;
    font-weight: 700;
}

.rh-casino__option-title {
    margin-bottom: 7px;
    font-family: var(--display);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.rh-casino__option-text {
    margin-bottom: 0;
    color: #aeb8b5;
    font-size: 12px;
    line-height: 1.65;
}

.rh-casino__option-symbol {
    color: var(--gold-light);
    font-size: 23px;
    line-height: 1;
    text-align: right;
}

.rh-casino__notice {
    position: relative;
    margin: 46px 0 0;
    padding: 23px 24px 23px 53px;
    border-left: 2px solid var(--gold);
    color: #bec6c3;
    background: rgba(255, 255, 255, 0.045);
    font-size: 11px;
    line-height: 1.75;
}

.rh-casino__notice::before {
    position: absolute;
    top: 23px;
    left: 20px;
    color: var(--gold);
    content: "!";
    font-family: var(--display);
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}

.rh-taste {
    background: var(--ivory);
}

.rh-taste__grid {
    display: grid;
    gap: 16px;
}

.rh-taste__card {
    position: relative;
    overflow: hidden;
    padding: 30px 26px;
    color: var(--white);
    background: var(--forest);
}

.rh-taste__card:nth-child(2) {
    color: var(--ink);
    background: var(--white);
}

.rh-taste__card:nth-child(3) {
    background: var(--clay);
}

.rh-taste__card::after {
    position: absolute;
    right: -33px;
    bottom: -33px;
    width: 90px;
    height: 90px;
    border: 1px solid currentColor;
    border-radius: 50%;
    content: "";
    opacity: 0.18;
}

.rh-taste__card-type {
    display: block;
    margin-bottom: 38px;
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.rh-taste__card:nth-child(2) .rh-taste__card-type {
    color: var(--clay);
}

.rh-taste__card-title {
    max-width: 280px;
    margin-bottom: 14px;
    font-family: var(--display);
    font-size: 29px;
    font-weight: 700;
    line-height: 0.98;
}

.rh-taste__card-text {
    margin-bottom: 24px;
    color: currentColor;
    font-size: 12px;
    opacity: 0.76;
}

.rh-taste__card-hours {
    margin-bottom: 0;
    padding-top: 17px;
    border-top: 1px solid currentColor;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.72;
}

.rh-wellbeing {
    overflow: hidden;
    background: var(--paper);
}

.rh-wellbeing::after {
    position: absolute;
    top: 10%;
    right: -100px;
    width: 210px;
    height: 420px;
    border: 1px solid rgba(156, 108, 85, 0.18);
    border-radius: 50%;
    content: "";
    transform: rotate(28deg);
}

.rh-wellbeing__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 50px;
}

.rh-wellbeing__list {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rh-wellbeing__item {
    position: relative;
    padding: 23px 0 23px 50px;
    border-top: 1px solid var(--line-light);
}

.rh-wellbeing__item:last-child {
    border-bottom: 1px solid var(--line-light);
}

.rh-wellbeing__item-number {
    position: absolute;
    top: 24px;
    left: 0;
    color: var(--clay);
    font-family: var(--display);
    font-size: 16px;
    font-weight: 700;
}

.rh-wellbeing__item-title {
    margin-bottom: 6px;
    font-family: var(--display);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.05;
}

.rh-wellbeing__item-text {
    margin-bottom: 0;
    color: #6b7472;
    font-size: 12px;
}

.rh-wellbeing__notice {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 18px;
    margin-top: 45px;
    padding: 27px;
    color: var(--white);
    background: var(--forest);
}

.rh-wellbeing__notice::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    content: "";
    background: var(--gold);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.rh-wellbeing__notice-age {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold-light);
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
}

.rh-wellbeing__notice-text {
    margin-bottom: 0;
    color: #c5cdca;
    font-size: 11px;
}

.rh-contact {
    isolation: isolate;
    overflow: hidden;
    color: var(--white);
    background: var(--clay);
}

.rh-contact::before {
    position: absolute;
    top: -80px;
    left: -70px;
    z-index: -1;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.03);
    content: "";
}

.rh-contact__grid {
    display: grid;
    gap: 35px;
}

.rh-contact__overline {
    color: var(--white);
    opacity: 0.78;
}

.rh-contact__title {
    margin-bottom: 0;
}

.rh-contact__info {
    display: grid;
    margin-bottom: 28px;
}

.rh-contact__info-link {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 13px;
    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.rh-contact__info-link:hover {
    padding-left: 6px;
    color: var(--gold-light);
}

.rh-contact__btn {
    width: 100%;
}

.rh-footer {
    position: relative;
    color: var(--white);
    background: #0c1212;
}

.rh-footer::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.rh-footer__grid {
    display: grid;
    gap: 40px;
    padding: 65px 0 48px;
}

.rh-footer__logo {
    margin-bottom: 22px;
}

.rh-footer__text {
    max-width: 390px;
    margin-bottom: 0;
    color: #929e9a;
    font-size: 11px;
}

.rh-footer__title {
    margin-bottom: 18px;
    color: var(--gold-light);
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
}

.rh-footer__nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rh-footer__nav-item + .rh-footer__nav-item {
    margin-top: 8px;
}

.rh-footer__nav-link {
    color: #aeb8b4;
    font-size: 11px;
    transition: color 0.25s ease;
}

.rh-footer__nav-link:hover {
    color: var(--white);
}

.rh-footer__warning {
    position: relative;
    padding: 24px;
    border: 1px solid var(--line-dark);
    background: rgba(255, 255, 255, 0.025);
}

.rh-footer__warning-age {
    display: block;
    margin-bottom: 11px;
    color: var(--gold);
    font-family: var(--display);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.rh-footer__warning-text {
    margin-bottom: 0;
    color: #929e9a;
    font-size: 10px;
}

.rh-footer__copy {
    margin: 0;
    padding: 18px 20px;
    border-top: 1px solid var(--line-dark);
    color: #6f7a77;
    font-size: 9px;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
}

.rh-legal-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 74px 0;
    color: var(--white);
    background: linear-gradient(135deg, var(--ink) 0%, var(--forest) 100%);
}

.rh-legal-hero::before {
    position: absolute;
    top: -120px;
    right: -90px;
    z-index: -1;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(228, 207, 157, 0.22);
    border-radius: 50%;
    box-shadow: 0 0 0 42px rgba(228, 207, 157, 0.035);
    content: "";
}

.rh-legal-hero__overline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.rh-legal-hero__overline::before {
    width: 28px;
    height: 1px;
    content: "";
    background: currentColor;
}

.rh-legal-hero__title {
    max-width: 900px;
    margin-bottom: 20px;
    font-family: var(--display);
    font-size: 44px;
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.025em;
}

.rh-legal-hero__text {
    max-width: 720px;
    margin-bottom: 0;
    color: #c5ceca;
    font-size: 14px;
}

.rh-legal {
    padding: 70px 0 85px;
    background: var(--paper);
}

.rh-legal__grid {
    display: grid;
    gap: 36px;
}

.rh-legal__aside {
    padding: 24px;
    border: 1px solid var(--line-light);
    background: var(--ivory);
}

.rh-legal__aside-title {
    margin-bottom: 15px;
    font-family: var(--display);
    font-size: 23px;
    font-weight: 700;
    line-height: 1;
}

.rh-legal__aside-text {
    margin-bottom: 16px;
    color: #66706e;
    font-size: 11px;
}

.rh-legal__aside-link {
    display: inline-block;
    border-bottom: 1px solid var(--gold);
    color: var(--forest);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rh-legal__content {
    min-width: 0;
}

.rh-legal__section {
    padding-bottom: 34px;
    border-bottom: 1px solid var(--line-light);
}

.rh-legal__section + .rh-legal__section {
    padding-top: 34px;
}

.rh-legal__section:last-child {
    border-bottom: 0;
}

.rh-legal__title {
    margin-bottom: 15px;
    font-family: var(--display);
    font-size: 29px;
    font-weight: 700;
    line-height: 1;
}

.rh-legal__subtitle {
    margin: 24px 0 10px;
    font-family: var(--display);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.1;
}

.rh-legal__content p,
.rh-legal__content li {
    color: #586461;
    font-size: 13px;
}

.rh-legal__content p:last-child {
    margin-bottom: 0;
}

.rh-legal__list {
    padding-left: 20px;
}

.rh-legal__list li + li {
    margin-top: 8px;
}

.rh-legal__contact {
    padding: 24px;
    border-left: 2px solid var(--gold);
    background: var(--ivory);
}

.rh-legal__contact a {
    color: var(--clay);
    font-weight: 600;
}

.rh-error {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: calc(100vh - 104px);
    overflow: hidden;
    place-items: center;
    padding: 75px 0;
    color: var(--white);
    background: linear-gradient(145deg, var(--ink) 0%, var(--forest) 100%);
}

.rh-error::before {
    position: absolute;
    z-index: -1;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(199, 167, 101, 0.22);
    border-radius: 50%;
    box-shadow:
        0 0 0 48px rgba(199, 167, 101, 0.035),
        0 0 0 96px rgba(199, 167, 101, 0.02);
    content: "";
}

.rh-error__content {
    max-width: 700px;
    text-align: center;
}

.rh-error__code {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-light);
    font-family: var(--display);
    font-size: 104px;
    font-weight: 500;
    line-height: 0.75;
}

.rh-error__title {
    margin-bottom: 18px;
    font-family: var(--display);
    font-size: 40px;
    font-weight: 500;
    line-height: 0.95;
}

.rh-error__text {
    margin: 0 auto 28px;
    color: #c5ceca;
    font-size: 13px;
}

.rh-age-page {
    min-height: 100vh;
    background: var(--ink);
}

.rh-age-gate {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: 100vh;
    overflow: hidden;
    place-items: center;
    padding: 24px;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 12%, rgba(199, 167, 101, 0.18), transparent 26%),
        radial-gradient(circle at 10% 92%, rgba(156, 108, 85, 0.18), transparent 25%),
        linear-gradient(145deg, #0c1212 0%, var(--forest) 100%);
}

.rh-age-gate::before,
.rh-age-gate::after {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(228, 207, 157, 0.16);
    border-radius: 50%;
    content: "";
}

.rh-age-gate::before {
    top: -110px;
    right: -110px;
    width: 270px;
    height: 270px;
    box-shadow:
        0 0 0 42px rgba(228, 207, 157, 0.025),
        0 0 0 84px rgba(228, 207, 157, 0.015);
}

.rh-age-gate::after {
    bottom: -150px;
    left: -150px;
    width: 330px;
    height: 330px;
    box-shadow: 0 0 0 52px rgba(228, 207, 157, 0.025);
}

.rh-age-gate__pattern {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, transparent, #000 28%, #000 72%, transparent);
}

.rh-age-gate__dialog {
    position: relative;
    width: min(100%, 590px);
    padding: 30px 24px 26px;
    border: 1px solid rgba(228, 207, 157, 0.32);
    background: rgba(18, 25, 26, 0.93);
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.46);
    text-align: center;
}

.rh-age-gate__dialog::before,
.rh-age-gate__dialog::after {
    position: absolute;
    width: 34px;
    height: 34px;
    content: "";
}

.rh-age-gate__dialog::before {
    top: 9px;
    left: 9px;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
}

.rh-age-gate__dialog::after {
    right: 9px;
    bottom: 9px;
    border-right: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.rh-age-gate__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.rh-age-gate__brand-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50% 50% 50% 9px;
    color: var(--gold-light);
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    transform: rotate(-4deg);
}

.rh-age-gate__brand-name {
    font-family: var(--display);
    font-size: 23px;
    font-weight: 700;
    line-height: 1;
}

.rh-age-gate__badge {
    display: grid;
    width: 86px;
    height: 86px;
    margin: 0 auto 23px;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold-light);
    font-family: var(--display);
    font-size: 36px;
    font-weight: 700;
    box-shadow: 0 0 0 8px rgba(199, 167, 101, 0.05);
}

.rh-age-gate__overline {
    display: block;
    margin-bottom: 12px;
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.rh-age-gate__title {
    margin-bottom: 16px;
    font-family: var(--display);
    font-size: 39px;
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.02em;
}

.rh-age-gate__text {
    max-width: 470px;
    margin: 0 auto 15px;
    color: #bac4c0;
    font-size: 11px;
    line-height: 1.72;
}

.rh-age-gate__notice {
    margin-bottom: 23px;
    color: #8f9b97;
    font-size: 9px;
    letter-spacing: 0.04em;
}

.rh-age-gate__button {
    position: relative;
    width: 100%;
    min-height: 50px;
    overflow: hidden;
    padding: 12px 20px;
    border: 1px solid var(--gold);
    color: var(--ink);
    background: var(--gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s var(--ease);
}

.rh-age-gate__button:hover {
    color: var(--ink);
    background: var(--white);
    transform: translateY(-2px);
}

.rh-age-gate__button:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 4px;
}

.rh-cookie[hidden] {
    display: none;
}

.rh-cookie {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 200;
    color: var(--white);
    background: var(--ink-soft);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.36);
}

.rh-cookie::before {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(228, 207, 157, 0.22);
    content: "";
    pointer-events: none;
}

.rh-cookie__inner {
    position: relative;
    padding: 24px;
}

.rh-cookie__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.rh-cookie__title {
    margin-bottom: 9px;
    font-family: var(--display);
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
}

.rh-cookie__text {
    margin-bottom: 19px;
    color: #b9c2bf;
    font-size: 10px;
    line-height: 1.65;
}

.rh-cookie__text a {
    border-bottom: 1px solid var(--gold);
    color: var(--gold-light);
}

.rh-cookie__actions {
    display: grid;
    gap: 9px;
}

.rh-cookie__btn {
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    background: transparent;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.rh-cookie__btn--accept {
    border-color: var(--gold);
    color: var(--ink);
    background: var(--gold);
}

.rh-cookie__btn:hover {
    border-color: var(--white);
    color: var(--ink);
    background: var(--white);
}

@media (min-width: 360px) {
    .rh-container {
        width: min(100% - 48px, 1240px);
    }

    .rh-hero__btn,
    .rh-contact__btn {
        width: auto;
    }

    .rh-hero__title {
        font-size: 48px;
    }

    .rh-lodges__card {
        padding: 32px;
    }
}

@media (min-width: 768px) {
    body {
        font-size: 16px;
    }

    .rh-container {
        width: min(100% - 80px, 1240px);
    }

    .rh-section {
        padding: 105px 0;
    }

    .rh-text-center {
        margin-inline: auto;
        text-align: center;
    }

    .rh-text-center .rh-section__overline {
        justify-content: center;
    }

    .rh-text-center .rh-section__text {
        margin-inline: auto;
    }

    .rh-section__header {
        margin-bottom: 52px;
    }

    .rh-header__notice-wrapper {
        justify-content: space-between;
    }

    .rh-header__notice-left {
        display: block;
    }

    .rh-header__notice-text {
        font-size: 10px;
        text-align: left;
    }

    .rh-header__wrapper {
        min-height: 78px;
    }

    .rh-header__nav {
        top: 112px;
        padding: 58px 40px;
    }

    .rh-header__nav-link {
        font-size: 36px;
    }

    .rh-hero {
        padding: 125px 0 135px;
    }

    .rh-hero__title {
        font-size: 80px;
    }

    .rh-hero__text {
        font-size: 16px;
    }

    .rh-features__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rh-features__item {
        min-height: 210px;
        padding: 42px 32px;
        border-right: 1px solid var(--line-light);
        border-bottom: 0;
    }

    .rh-features__item:first-child {
        padding-left: 0;
    }

    .rh-features__item:last-child {
        padding-right: 0;
        border-right: 0;
    }

    .rh-lodges__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rh-lodges__card:last-child {
        grid-column: 1 / -1;
    }

    .rh-casino__grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 65px;
    }

    .rh-taste__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .rh-taste__card {
        min-height: 410px;
        padding: 36px 30px;
    }

    .rh-taste__card:nth-child(2) {
        transform: translateY(24px);
    }

    .rh-wellbeing__notice {
        grid-template-columns: auto 1fr;
        align-items: center;
        padding: 30px;
    }

    .rh-contact__grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .rh-footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .rh-footer__col:last-child {
        grid-column: 1 / -1;
    }

    .rh-legal-hero {
        padding: 105px 0;
    }

    .rh-legal-hero__title {
        font-size: 64px;
    }

    .rh-legal {
        padding: 100px 0 115px;
    }

    .rh-legal__grid {
        grid-template-columns: 210px minmax(0, 1fr);
        gap: 60px;
        align-items: start;
    }

    .rh-legal__aside {
        position: sticky;
        top: 25px;
    }

    .rh-legal__title {
        font-size: 35px;
    }

    .rh-error__code {
        font-size: 150px;
    }

    .rh-error__title {
        font-size: 56px;
    }

    .rh-age-gate {
        padding: 45px;
    }

    .rh-age-gate__dialog {
        padding: 42px 50px 45px;
    }

    .rh-age-gate__badge {
        width: 104px;
        height: 104px;
        font-size: 44px;
    }

    .rh-age-gate__title {
        font-size: 53px;
    }

    .rh-age-gate__text {
        font-size: 12px;
    }

    .rh-age-gate__button {
        width: auto;
        min-width: 270px;
    }

    .rh-cookie {
        right: 24px;
        bottom: 24px;
        left: auto;
        width: min(620px, calc(100% - 48px));
    }

    .rh-cookie__inner {
        padding: 28px;
    }

    .rh-cookie__actions {
        grid-template-columns: auto auto;
        justify-content: end;
    }
}

@media (min-width: 1024px) {
    html {
        scroll-padding-top: 80px;
    }

    body.rh-menu-open {
        overflow: auto;
    }

    .rh-section {
        padding: 125px 0;
    }

    .rh-section__title,
    .rh-casino__title,
    .rh-wellbeing__title,
    .rh-contact__title {
        font-size: 57px;
    }

    .rh-header__content {
        position: relative;
    }

    .rh-header__wrapper {
        min-height: 84px;
    }

    .rh-header__nav {
        position: static;
        visibility: visible;
        flex-direction: row;
        align-items: center;
        padding: 0;
        background: transparent;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .rh-header__nav::after {
        display: none;
    }

    .rh-header__nav-list {
        display: flex;
        align-items: center;
        gap: 30px;
        margin: 0 30px 0 0;
    }

    .rh-header__nav-item {
        border: 0;
    }

    .rh-header__nav-link {
        position: relative;
        padding: 30px 0;
        font-family: var(--body);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .rh-header__nav-link::after {
        position: absolute;
        right: 0;
        bottom: 23px;
        left: 0;
        height: 1px;
        content: "";
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.35s var(--ease);
    }

    .rh-header__nav-link:hover {
        padding-left: 0;
    }

    .rh-header__nav-link:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .rh-header__nav-btn {
        width: auto;
        min-height: 42px;
        padding: 9px 18px;
    }

    .rh-header__burger {
        display: none;
    }

    .rh-hero {
        min-height: 690px;
        display: flex;
        align-items: center;
    }

    .rh-hero__grid {
        grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.45fr);
        align-items: center;
    }

    .rh-hero__title {
        font-size: 90px;
    }

    .rh-hero__decoration {
        position: relative;
        display: grid;
        width: 260px;
        height: 370px;
        justify-self: end;
        place-items: center;
        border: 1px solid rgba(228, 207, 157, 0.35);
        border-radius: 50% 50% 12px 12px;
    }

    .rh-hero__decoration::before,
    .rh-hero__decoration::after {
        position: absolute;
        content: "";
    }

    .rh-hero__decoration::before {
        inset: 18px;
        border: 1px solid rgba(228, 207, 157, 0.15);
        border-radius: inherit;
    }

    .rh-hero__decoration::after {
        width: 1px;
        height: 120%;
        background: linear-gradient(transparent, rgba(228, 207, 157, 0.4), transparent);
        transform: rotate(35deg);
    }

    .rh-hero__mark {
        color: var(--gold-light);
        font-family: var(--display);
        font-size: 34px;
        font-weight: 500;
        letter-spacing: 0.04em;
        transform: rotate(-90deg);
    }

    .rh-lodges__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rh-lodges__card:last-child {
        grid-column: auto;
    }

    .rh-casino__grid {
        gap: 110px;
    }

    .rh-wellbeing__grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 100px;
    }

    .rh-wellbeing__notice {
        margin-top: 60px;
    }

    .rh-footer__grid {
        grid-template-columns: 1.6fr 0.8fr 1fr 1.1fr;
        gap: 50px;
        padding: 80px 0 58px;
    }

    .rh-footer__col:last-child {
        grid-column: auto;
    }

    .rh-legal-hero {
        padding: 120px 0;
    }

    .rh-legal-hero__title {
        font-size: 72px;
    }

    .rh-legal__grid {
        grid-template-columns: 240px minmax(0, 760px);
        gap: 90px;
        justify-content: center;
    }

    .rh-error {
        min-height: calc(100vh - 118px);
    }
}

@media (min-width: 1440px) {
    .rh-container {
        width: min(100% - 120px, 1320px);
    }

    .rh-section {
        padding: 145px 0;
    }

    .rh-section__title,
    .rh-casino__title,
    .rh-wellbeing__title,
    .rh-contact__title {
        font-size: 64px;
    }

    .rh-header__nav-list {
        gap: 42px;
        margin-right: 42px;
    }

    .rh-hero {
        min-height: 760px;
    }

    .rh-hero__title {
        font-size: 105px;
    }

    .rh-hero__decoration {
        width: 300px;
        height: 430px;
    }

    .rh-features__item {
        padding-block: 48px;
    }

    .rh-lodges__grid {
        gap: 25px;
    }

    .rh-lodges__card {
        min-height: 420px;
        padding: 40px;
    }

    .rh-taste__card {
        min-height: 440px;
        padding: 42px 38px;
    }

    .rh-contact__grid {
        gap: 150px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto;
        transition-duration: 0.01ms !important;
    }
}
