@font-face {
	font-family: "Expo 5";
	src: url("../fonts/EXPO5.TTF") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--olive: #00864f;
	--olive-dark: #006c40;
	--cream: #fdfcf8;
	--sand: #f5f2ed;
	--stone: #e8e4de;
	--ink: #1a1a1a;
	--ink-soft: #333333;
	--serif: "Expo 5", serif;
	--sans: "Expo 5", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.rv-page { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--sans); }
body.rv-lock { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
.rv-icon { display: inline-block; flex: 0 0 auto; vertical-align: middle; }

.rv-container { width: min(1488px, calc(100% - 48px)); margin: 0 auto; }
.rv-container--narrow { width: min(980px, calc(100% - 48px)); }
.rv-section { padding: 96px 0; }
.rv-section--sand { background: var(--sand); }
.rv-section--stone { background: rgba(232, 228, 222, .3); }
.rv-section--soft { background: rgba(245, 242, 237, .35); }
.rv-section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.rv-section-head h2, .rv-about h2, .rv-history h2, .rv-groups h2, .rv-contact h2, .rv-booking h2 {
	font-family: var(--serif); font-size: 48px; line-height: 1.1; font-weight: 400; margin: 0 0 24px;
}
.rv-section-head p, .rv-lead, .rv-about p, .rv-groups p, .rv-contact p, .rv-booking p {
	font-size: 1.1rem; line-height: 1.7; color: var(--ink-soft);
}
.rv-eyebrow { color: var(--olive); font-size: .78rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.rv-section-head .rv-eyebrow { color: var(--olive); font-size: 12px; font-weight: 600; letter-spacing: .16em; margin: 0 0 8px; }

.rv-loader { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; align-content: center; gap: 18px; background: var(--cream); transition: opacity .5s ease, visibility .5s ease; }
.rv-loader.is-hidden { opacity: 0; visibility: hidden; }
.rv-loader__icon { width: 96px; height: 96px; border-radius: 50%; background: rgba(0, 134, 79, .1); display: grid; place-items: center; color: var(--olive); }
.rv-loader__title { margin: 0; font-family: var(--serif); color: var(--olive); font-size: 2rem; font-weight: 400; }
.rv-loader span { width: 52px; height: 4px; border-radius: 999px; background: rgba(0, 134, 79, .22); position: relative; overflow: hidden; }
.rv-loader span:after { content: ""; position: absolute; inset: 0; background: var(--olive); animation: rvLoad 1.25s linear infinite; }
@keyframes rvLoad { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

.rv-header { position: fixed; inset: 0 0 auto; z-index: 80; padding: 24px 0; transition: .25s ease; }
.rv-header.is-scrolled { padding: 12px 0; background: rgba(253, 252, 248, .92); border-bottom: 1px solid rgba(0, 134, 79, .14); backdrop-filter: blur(12px); }
.rv-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.rv-brand { display: flex; align-items: center; gap: 16px; }
.rv-brand__text > span { display: block; color: var(--olive); font-family: var(--serif); font-size: 24px; letter-spacing: 0; line-height: 1; }
.rv-brand__text small { display: block; margin-top: 8px; color: var(--olive); font-size: 13px; font-weight: 700; letter-spacing: .18em; line-height: 1.35; text-transform: uppercase; }
.rv-brand__text small span { display: block; }
.rv-brand img { width: auto; height: 56px; }
.rv-nav { display: flex; align-items: center; gap: 32px; }
.rv-nav a:not(.rv-button), .rv-nav button { display: inline-flex; align-items: center; gap: 6px; border: 0; background: transparent; color: var(--ink); font-size: 14px; font-weight: 500; cursor: pointer; }
.rv-nav a:hover, .rv-nav button:hover { color: var(--olive); }
.rv-lang-wrap { position: relative; }
.rv-lang .rv-icon:last-child { transition: transform .2s ease; }
.rv-lang[aria-expanded="true"] .rv-icon:last-child { transform: rotate(180deg); }
.rv-lang-menu { position: absolute; right: 0; top: calc(100% + 8px); min-width: 120px; padding: 8px 0; overflow: hidden; border: 1px solid rgba(232, 228, 222, .5); border-radius: 12px; background: white; box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1); }
.rv-lang-menu[hidden] { display: none; }
.rv-lang-menu button { position: relative; width: 100%; justify-content: space-between; padding: 8px 16px; border-radius: 0; color: var(--ink); text-align: left; transition: background .2s ease, color .2s ease; }
.rv-lang-menu button span { color: inherit; font-size: 14px; }
.rv-lang-menu button:hover { background: var(--sand); color: var(--ink); }
.rv-lang-menu button.is-active { color: var(--olive); font-weight: 700; }
.rv-lang-menu button.is-active::after { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--olive); }
.rv-menu-toggle { display: none; border: 0; background: transparent; color: var(--olive); font-size: 2rem; }

@media (min-width: 768px) {
	.rv-brand img { height: 64px; }
}

.rv-button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 999px; background: var(--olive); color: var(--cream); padding: 16px 40px; font-size: 18px; font-weight: 700; box-shadow: 0 14px 28px rgba(0, 0, 0, .12); cursor: pointer; transition: .2s ease; }
.rv-button:hover { background: var(--olive-dark); transform: translateY(-1px); }
.rv-button--small { padding: 10px 24px; font-size: 14px; font-weight: 600; }
.rv-button--white, .rv-button--outline { background: white; color: var(--olive); border: 1px solid rgba(0, 134, 79, .22); box-shadow: none; }
.rv-button--outline { border-width: 2px; }
.rv-button--white:hover, .rv-button--outline:hover { background: var(--sand); color: var(--olive); }
.rv-button--whatsapp { background: #25d366; }
.rv-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.rv-actions--center { justify-content: center; }

.rv-hero { position: relative; min-height: 90vh; display: flex; align-items: center; padding-top: 80px; overflow: hidden; }
.rv-hero__image, .rv-hero__veil { position: absolute; inset: 0; width: 100%; height: 100%; }
.rv-hero__image { object-fit: cover; opacity: .2; }
.rv-hero__veil { background: linear-gradient(to bottom, rgba(253, 252, 248, .5), transparent 45%, var(--cream)); }
.rv-hero__content { position: relative; z-index: 1; }
.rv-hero h1 { max-width: 896px; margin: 16px 0 32px; font-family: var(--serif); font-size: 96px; line-height: 1.1; font-weight: 400; }
.rv-hero .rv-lead { max-width: 672px; margin-bottom: 40px; font-size: 20px; line-height: 1.625; }
.rv-address { display: flex; align-items: center; gap: 12px; margin-top: 48px; color: rgba(51, 51, 51, .7); font-size: 14px; font-weight: 500; }
.rv-address .rv-icon { color: var(--olive); }

.rv-about { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.rv-about__media { position: relative; }
.rv-about__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 16px; box-shadow: 0 28px 58px rgba(0, 0, 0, .18); }
.rv-about__badge { position: absolute; right: -32px; bottom: -32px; width: 300px; padding: 29px; border-radius: 16px; background: var(--olive); color: var(--cream); box-shadow: 0 20px 40px rgba(0, 0, 0, .18); }
.rv-about__badge .rv-icon { margin-bottom: 16px; }
.rv-about__badge span { display: block; font-family: var(--serif); font-size: 20px; line-height: 1.35; }
.rv-check-list { display: grid; gap: 22px; padding: 0; margin: 34px 0 0; list-style: none; }
.rv-check-list li { display: flex; align-items: center; gap: 16px; font-weight: 500; }
.rv-check-list li > span:first-child, .rv-contact-list > div > span:first-child { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; color: var(--olive); background: rgba(0, 134, 79, .1); flex: 0 0 auto; }

.rv-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.rv-food-card { overflow: hidden; border: 1px solid rgba(232, 228, 222, .7); border-radius: 16px; background: white; box-shadow: 0 2px 8px rgba(0,0,0,.08); transition: .25s ease; }
.rv-food-card:hover { transform: translateY(-8px); box-shadow: 0 22px 38px rgba(0,0,0,.12); }
.rv-food-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: .7s ease; }
.rv-food-card:hover img { transform: scale(1.08); }
.rv-food-card div { padding: 32px; }
.rv-food-card h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 24px; font-weight: 400; }
.rv-food-card p, .rv-why p { margin: 0; font-size: 14px; line-height: 1.65; color: var(--ink-soft); }

.rv-history { position: relative; overflow: hidden; background: var(--olive); color: var(--cream); padding: 96px 0; }
.rv-history h2 { font-size: 60px; }
.rv-history__year { position: absolute; right: 2vw; top: 0; opacity: .1; font-family: var(--serif); font-size: 300px; line-height: 1; }
.rv-history__content { max-width: 900px; position: relative; z-index: 1; }
.rv-history p { font-size: 24px; line-height: 1.65; opacity: .9; }
.rv-history blockquote { margin: 48px 0 0; padding: 8px 0 8px 32px; border-left: 4px solid rgba(253, 252, 248, .3); font-family: var(--serif); font-size: 30px; font-style: italic; opacity: .82; }

.rv-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.rv-section--stone .rv-section-head h2 { font-size: 36px; }
.rv-why { min-height: 228px; padding: 32px; border-radius: 16px; background: white; border: 1px solid rgba(232, 228, 222, .75); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.rv-why > span { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 24px; border-radius: 12px; background: var(--olive); color: var(--cream); font-family: var(--serif); font-size: 20px; }
.rv-why h3 { margin: 0 0 16px; font-family: var(--serif); font-size: 20px; font-weight: 400; }

.rv-menu-hub { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.rv-menu-hub button { min-height: 140px; display: grid; place-items: center; gap: 16px; padding: 32px; border: 1px solid rgba(0, 134, 79, .12); border-radius: 24px; background: white; color: var(--olive); font-family: var(--serif); font-size: 1.25rem; box-shadow: 0 2px 8px rgba(0,0,0,.08); cursor: pointer; }
.rv-menu-hub button:first-child, .rv-menu-hub button:hover { background: var(--olive); color: var(--cream); }
.rv-menu-hub .rv-icon { width: 32px; height: 32px; }
.rv-menu-hub span { font-size: 1.25rem; }

.rv-groups { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: 32px; background: var(--sand); border: 1px solid rgba(232, 228, 222, .7); box-shadow: 0 24px 52px rgba(0,0,0,.12); }
.rv-groups__content { padding: clamp(44px, 6vw, 80px); }
.rv-groups__content .rv-button { margin-top: 8px; }
.rv-section-icon { display: block; width: 40px; height: 40px; color: var(--olive); margin-bottom: 24px; }
.rv-groups img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; }

.rv-experience { text-align: center; }
.rv-experience h2, .rv-contact h2 { font-family: var(--serif); font-size: 36px; font-weight: 400; }
.rv-experience blockquote { max-width: 880px; margin: 24px auto 40px; font-size: 20px; line-height: 1.7; font-style: italic; }
.rv-experience p { color: var(--olive); letter-spacing: .25em; }
.rv-stars { display: flex; justify-content: center; gap: 8px; color: var(--olive); letter-spacing: 0; }

.rv-gallery-section { background: white; }
.rv-gallery { overflow: hidden; padding: 8px 0 36px; }
.rv-gallery__track { display: flex; gap: 18px; will-change: transform; transition: transform .65s ease; }
.rv-gallery__item { position: relative; flex: 0 0 calc((100% - 54px) / 4); margin: 0; overflow: hidden; aspect-ratio: 1 / 1; border-radius: 16px; background: var(--stone); }
.rv-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.rv-gallery__item:hover img { transform: scale(1.06); }

.rv-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.rv-contact-list { display: grid; gap: 28px; margin: 48px 0; }
.rv-contact-list div { display: grid; grid-template-columns: 48px 1fr; column-gap: 18px; align-items: start; }
.rv-contact-list > div > span:first-child { grid-row: 1 / span 3; width: 48px; height: 48px; background: white; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.rv-contact-list strong { font-family: var(--serif); font-size: 20px; font-weight: 500; }
.rv-contact-list p { grid-column: 2; margin: 4px 0 0; font-size: 16px; }
.rv-contact-list b { font-weight: 700; }
.rv-contact .rv-button { padding: 16px 32px; font-size: 16px; }
.rv-contact iframe { width: 100%; min-height: 600px; border: 8px solid white; border-radius: 24px; box-shadow: 0 22px 44px rgba(0,0,0,.15); }

.rv-booking { text-align: center; }
.rv-booking h2 { font-size: 60px; }
.rv-booking h2 { text-align: left; }
.rv-thefork { overflow: hidden; margin-top: 48px; border-radius: 24px; background: white; border: 1px solid rgba(232, 228, 222, .7); box-shadow: 0 24px 52px rgba(0,0,0,.12); }
.rv-thefork iframe { width: 100%; min-height: 800px; border: 0; }
.rv-booking__notice { margin: 14px auto 0; max-width: 760px; color: var(--muted); font-size: .82rem; line-height: 1.5; text-align: center; }
.rv-booking .rv-actions { margin-top: 32px; }

.rv-footer { padding: 52px 0; background: var(--ink); color: rgba(253,252,248,.62); }
.rv-footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.rv-footer img { height: 86px; width: auto; margin-bottom: 12px; }
.rv-social, .rv-footer__links { display: flex; gap: 28px; align-items: center; }
.rv-footer button { border: 0; background: transparent; color: inherit; cursor: pointer; }
.rv-footer a:hover, .rv-footer button:hover { color: var(--cream); }

.rv-page--inner { background: var(--cream); }
.rv-page-main { padding-top: 88px; }
.rv-page-hero { padding: 96px 0 72px; border-bottom: 1px solid rgba(0, 134, 79, .1); }
.rv-page-hero h1 { max-width: 900px; margin: 12px 0 0; font-family: var(--serif); font-size: clamp(48px, 6vw, 78px); line-height: 1.05; font-weight: 400; }
.rv-wp-content { padding: 56px clamp(24px, 5vw, 72px); border: 1px solid rgba(232, 228, 222, .72); border-radius: 20px; background: white; box-shadow: 0 18px 46px rgba(0, 0, 0, .08); }
.rv-wp-content > * { max-width: 980px; }
.rv-wp-content > *:first-child { margin-top: 0; }
.rv-wp-content > *:last-child { margin-bottom: 0; }
.rv-wp-content h2, .rv-wp-content h3, .rv-wp-content h4 { margin: 1.6em 0 .65em; font-family: var(--serif); font-weight: 400; line-height: 1.15; }
.rv-wp-content h2 { font-size: 36px; }
.rv-wp-content h3 { font-size: 28px; }
.rv-wp-content h4 { font-size: 22px; }
.rv-wp-content p, .rv-wp-content li { color: var(--ink-soft); font-size: 17px; line-height: 1.75; }
.rv-wp-content p, .rv-wp-content ul, .rv-wp-content ol, .rv-wp-content blockquote { margin: 0 0 1.35em; }
.rv-wp-content ul, .rv-wp-content ol { padding-left: 1.35em; }
.rv-wp-content li + li { margin-top: .45em; }
.rv-wp-content a { color: var(--olive); text-decoration: underline; text-underline-offset: 3px; }
.rv-wp-content strong { color: var(--ink); }
.rv-wp-content blockquote { padding: 8px 0 8px 24px; border-left: 4px solid rgba(0, 134, 79, .2); font-family: var(--serif); }
.rv-wp-content blockquote p { font-family: var(--serif); font-size: 24px; line-height: 1.45; }
.rv-error { min-height: calc(100vh - 260px); display: flex; align-items: center; padding: 132px 0 96px; text-align: center; }
.rv-error .rv-container { display: grid; justify-items: center; }
.rv-error h1 { max-width: 760px; margin: 12px 0 20px; font-family: var(--serif); font-size: clamp(56px, 8vw, 104px); line-height: 1; font-weight: 400; }
.rv-error p:not(.rv-eyebrow) { max-width: 560px; margin: 0 0 36px; color: var(--ink-soft); font-size: 20px; line-height: 1.65; }

.rv-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 32px; background: rgba(26, 26, 26, .62); backdrop-filter: blur(6px); }
.rv-modal.is-open { display: flex; }
.rv-modal__panel { position: relative; width: min(900px, 100%); max-height: 90vh; overflow: auto; padding: clamp(32px, 5vw, 56px); border-radius: 24px; background: var(--cream); box-shadow: 0 28px 70px rgba(0,0,0,.28); }
.rv-modal__panel--wide { width: min(1120px, 100%); }
.rv-modal__close, .rv-close { position: absolute; right: 22px; top: 18px; display: grid; place-items: center; width: 44px; height: 44px; border: 0; background: transparent; color: var(--ink); cursor: pointer; }
.rv-modal__close:hover, .rv-close:hover { color: var(--olive); }
.rv-modal__head { margin-bottom: 48px; text-align: center; }
.rv-modal__head span { display: block; margin-bottom: 8px; color: var(--olive); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.rv-modal__head h2 { margin: 0; font-family: var(--serif); font-size: 48px; line-height: 1; font-weight: 400; }
.rv-modal__head:after { content: ""; display: block; width: 96px; height: 4px; margin: 24px auto 0; background: rgba(0, 134, 79, .2); }
.rv-modal[data-modal="menu"] .rv-modal__head { margin-bottom: 48px; }
.rv-modal[data-modal="menu"] .rv-modal__head span { display: block; margin-bottom: 8px; font-size: 12px; font-weight: 600; }
.rv-modal[data-modal="menu"] .rv-modal__head h2 { margin: 0; font-size: 48px; line-height: 1; }
.rv-modal[data-modal="menu"] .rv-modal__head:after { content: ""; display: block; width: 96px; height: 4px; margin: 24px auto 0; background: rgba(0, 134, 79, .2); }
.rv-menu-list { display: grid; gap: 48px; }
.rv-menu-list h3 { padding-bottom: 12px; border-bottom: 1px solid rgba(0, 134, 79, .12); color: var(--olive); font-family: var(--serif); font-size: 1.45rem; font-weight: 500; }
.rv-menu-row { display: flex; align-items: baseline; gap: 14px; margin: 16px 0; }
.rv-menu-row span { color: var(--ink-soft); font-weight: 600; }
.rv-menu-row i { flex: 1; border-bottom: 1px dotted rgba(26,26,26,.16); }
.rv-menu-row strong { color: var(--ink); font-family: var(--serif); font-size: 18px; font-weight: 400; white-space: nowrap; }
.rv-modal[data-modal="menu"] .rv-menu-list h3 { margin: 0 0 24px; padding-bottom: 8px; font-size: 20px; font-weight: 400; }
.rv-modal[data-modal="menu"] .rv-menu-row { gap: 16px; margin: 16px 0; }
.rv-modal[data-modal="menu"] .rv-menu-row span { color: var(--ink-soft); font-size: 16px; font-weight: 500; }
.rv-modal[data-modal="menu"] .rv-menu-row i { border-bottom-color: rgba(26, 26, 26, .1); }
.rv-modal[data-modal="menu"] .rv-menu-row strong { color: var(--ink); font-family: var(--serif); font-size: 18px; font-weight: 400; white-space: nowrap; }
.rv-modal__footer { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--stone); text-align: center; color: rgba(51,51,51,.7); font-size: .82rem; line-height: 1.6; }
.rv-group-menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rv-group-menu { display: flex; flex-direction: column; gap: 20px; padding: 28px; border: 1px solid var(--stone); border-radius: 18px; background: white; }
.rv-group-menu header { display: flex; justify-content: space-between; gap: 16px; color: var(--olive); }
.rv-group-menu h3 { margin: 0; font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.rv-group-menu header strong { color: var(--ink); font-family: var(--serif); font-size: 20px; font-weight: 400; white-space: nowrap; }
.rv-group-menu small { display: block; margin-bottom: 8px; color: rgba(51,51,51,.65); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.rv-group-menu ul { margin: 0; padding-left: 18px; }
.rv-group-menu p, .rv-group-menu li { font-size: .92rem; line-height: 1.55; }
.rv-group-menu footer { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--stone); color: rgba(51,51,51,.72); font-size: .78rem; font-style: italic; line-height: 1.55; }
.rv-conditions { margin-top: 64px; padding: 32px; border: 1px solid rgba(0, 134, 79, .1); border-radius: 16px; background: var(--sand); }
.rv-conditions h3 { margin: 0 0 16px; color: var(--olive); font-family: var(--serif); font-size: 20px; font-weight: 400; }
.rv-conditions ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 48px; row-gap: 12px; margin: 0; padding: 0; list-style: none; }
.rv-conditions li { display: flex; gap: 8px; color: var(--ink-soft); font-size: 12px; line-height: 1.45; }
.rv-conditions li:before { content: "•"; color: var(--olive); line-height: 1.45; }
.rv-conditions p { margin: 24px 0 0; color: var(--olive); font-size: 14px; font-weight: 500; text-align: center; }
.rv-conditions a { text-decoration: underline; }
.rv-dessert-row em { display: block; margin: -8px 0 18px; color: rgba(51,51,51,.7); font-size: .82rem; }

.rv-mobile-panel { position: fixed; inset: 0; z-index: 160; display: none; flex-direction: column; gap: 0; padding: 32px; background: var(--cream); }
.rv-mobile-panel.is-open { display: flex; }
.rv-mobile-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.rv-mobile-head span { font-family: var(--serif); font-size: 24px; line-height: 1; }
.rv-mobile-panel .rv-close { position: static; width: 44px; height: 44px; }
.rv-mobile-lang { display: flex; gap: 16px; margin-bottom: 32px; }
.rv-mobile-lang button { min-width: 50px; padding: 8px 16px; border: 0; border-radius: 999px; background: var(--sand); color: var(--olive); font-size: 14px; font-weight: 800; cursor: pointer; }
.rv-mobile-lang button.is-active { background: var(--olive); color: var(--cream); }
.rv-mobile-links { display: flex; flex-direction: column; gap: 32px; font-family: var(--serif); font-size: 30px; line-height: 1; }
.rv-mobile-actions { display: flex; flex-direction: column; gap: 16px; margin-top: auto; }
.rv-mobile-actions .rv-button { width: 100%; padding: 16px 24px; border-radius: 12px; font-size: 16px; box-shadow: none; }
.rv-mobile-actions .rv-button--outline { background: transparent; border: 2px solid var(--olive); }
.rv-mobile-cta { display: none; }

@media (max-width: 980px) {
	.rv-nav { display: none; }
	.rv-menu-toggle { display: block; }
	.rv-hero h1 { font-size: 72px; }
	.rv-about, .rv-contact, .rv-groups { grid-template-columns: 1fr; }
	.rv-card-grid, .rv-group-menu-grid { grid-template-columns: repeat(2, 1fr); }
	.rv-why-grid, .rv-menu-hub { grid-template-columns: repeat(2, 1fr); }
	.rv-gallery__item { flex-basis: calc((100% - 18px) / 2); }
	.rv-booking h2 { text-align: center; }
	.rv-footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 767px) {
	.rv-hero h1 { font-size: 48px; }
	.rv-section-head h2, .rv-about h2, .rv-history h2, .rv-groups h2, .rv-contact h2, .rv-booking h2, .rv-experience h2 { font-size: 36px; }
	.rv-history p, .rv-booking p { font-size: 20px; }
	.rv-history blockquote { font-size: 24px; }
}

@media (max-width: 640px) {
	.rv-container, .rv-container--narrow { width: min(100% - 32px, 1488px); }
	.rv-section { padding: 72px 0; }
	.rv-brand__text > span { font-size: 18px; }
	.rv-brand__text small { font-size: 11px; }
	.rv-brand img { height: 54px; }
	.rv-hero h1 { font-size: 48px; }
	.rv-hero .rv-lead { font-size: 18px; }
	.rv-hero .rv-actions { width: 100%; flex-direction: column; align-items: stretch; }
	.rv-hero .rv-actions .rv-button { width: 100%; }
	.rv-groups__content .rv-button { align-self: center; }
	.rv-card-grid, .rv-group-menu-grid, .rv-why-grid, .rv-menu-hub { grid-template-columns: 1fr; }
	.rv-gallery__track { gap: 14px; }
	.rv-gallery__item { flex-basis: 82%; }
	.rv-about__badge { display: none; }
	.rv-modal { padding: 14px; }
	.rv-modal__panel { padding: 32px 20px; border-radius: 18px; }
	.rv-conditions ul { grid-template-columns: 1fr; }
	.rv-footer { padding-bottom: 77px; }
	.rv-footer__links, .rv-social { flex-direction: column; gap: 16px; }
	.rv-footer__inner > div:first-child { display: flex; flex-direction: column; align-items: center; }
	.rv-mobile-cta { position: fixed; left: 20px; right: 20px; bottom: 16px; z-index: 90; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
	.rv-mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 54px; border-radius: 16px; background: var(--olive); color: var(--cream); font-weight: 700; box-shadow: 0 16px 34px rgba(0,0,0,.18); }
	.rv-mobile-cta a:last-child { background: white; color: var(--olive); border: 2px solid var(--olive); }
}
