@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800;900&family=Manrope:wght@400;500;600;700&display=swap');
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
a, a:link, a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
aside, nav, footer, header, section, main {
  display: block;
}
h1, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}
ul, ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
img, svg {
  max-width: 100%;
  height: auto;
}
address {
  font-style: normal;
}
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}
input::-ms-clear {
  display: none;
}
button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}
input:focus, input:active,
button:focus, button:active {
  outline: none;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
label {
  cursor: pointer;
}
legend {
  display: block;
}
html {
  scroll-behavior: smooth;
}
/*------------base-styles---------------*/

:root {
  --white: #ffffff;
  --brown-lt: #f9f5f2;
  --beige: #f3ecdf;;
  --brown: #9a6842;
  --brown-hover: rgba(154, 104, 66, 0.8);
  --gray: #44403d;
  --gray-hover: rgba(68, 64, 61, 0.8);
  --dark: #222222;

  --font-accent: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-base: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: clamp(0.95rem, 0.88rem + 0.25vw, 1.0625rem);
  line-height: 1.6;
  color: var(--gray);
  background: var(--brown-lt);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brown);
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}

.rv-container {
  max-width: 1200px;
  padding: 1rem clamp(1rem, 0.4286rem + 2.8571vw, 3rem);
  margin: 0 auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-accent);
  color: var(--dark);
  margin: 0 0 .75rem 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 1.4rem + 2.2vw, 3rem) }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.125rem) }
h3 { font-size: clamp(1.25rem, 1.1rem + .6vw, 1.5rem) }
h4 { font-size: clamp(1.125rem, 1rem + .4vw, 1.25rem) }

p { margin: 0 0 1rem 0 }

.button {
  display: inline-block;
  font-family: var(--font-base);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .06s ease;
  user-select: none;
}
.button:active { transform: translateY(1px) }

.button--primary {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}
.button--primary:hover { background: var(--brown-hover) }

.button--ghost {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.button--ghost:hover {
  background: var(--dark);
  color: var(--white);
}

.card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.rv-section {
  padding: clamp(2rem, 1.2rem + 3vw, 4rem) 0;
}

.rv-section__heading {
  display: grid;
  gap: .5rem;
  margin-bottom: clamp(1.25rem, 1rem + 1.2vw, 2rem);
}

input, select, textarea {
  width: 100%;
  font: inherit;
  color: var(--dark);
  background: var(--white);
  border: 1px solid rgba(34, 34, 34, 0.12);
  border-radius: 14px;
  padding: .75rem 1rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
input::placeholder, textarea::placeholder { color: rgba(34,34,34,.55) }
input:focus, select:focus, textarea:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(173, 142, 87, 0.18);
}

.rv-form {
  display: grid;
  gap: .75rem;
}
.rv-form__row {
  display: grid;
  gap: .75rem;
}
@media (min-width: 640px) {
  .rv-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.rv-badge {
  display: inline-block;
  padding: .375rem .75rem;
  border-radius: 999px;
  background: var(--brown-lt);
  width: 250px;
  margin: 0 auto;
  color: var(--brown);
  font-weight: 600;
  font-size: .875rem;
}

.rv-muted { color: rgba(34,34,34,.7) }
.rv-hidden { display: none !important }
.rv-center { text-align: center }
.rv-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .rv-grid--2 { grid-template-columns: repeat(2, 1fr) }
  .rv-grid--3 { grid-template-columns: repeat(3, 1fr) }
  .rv-grid--4 { grid-template-columns: repeat(4, 1fr) }
}
/**/
.rv-header { background: var(--brown-lt) }
.rv-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.rv-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.rv-brand__logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}
.rv-brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rv-brand__text {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brown);
}

.rv-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.rv-menu {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.rv-menu a {
  color: var(--gray);
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.rv-menu a:hover {
  background: var(--brown);
  color: var(--white);
}

.rv-lang {
  display: flex;
  gap: 0.5rem;
}
.rv-lang a {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--brown);
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.rv-lang a:hover {
  background: var(--brown);
  color: var(--white);
}
.rv-lang .is-active {
  background: var(--brown);
  color: var(--white);
}

.rv-burger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(34,34,34,.12);
  background: var(--beige);
  cursor: pointer;
}
.rv-burger__bar {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--brown);
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.rv-burger__bar:nth-child(1) { top: 14px }
.rv-burger__bar:nth-child(2) { top: 21px }
.rv-burger__bar:nth-child(3) { top: 28px }

@media (max-width: 960px) {
  .rv-burger { display: inline-block }
  .rv-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    background: var(--white);
    border: 1px solid rgba(34,34,34,.12);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0,0,0,.06);
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    transform: scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: .18s ease;
    min-width: 220px;
    z-index: 10;
  }
  .rv-menu {
    flex-direction: column;
    gap: 0.75rem;
  }
  .rv-header.is-open .rv-nav {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
  }
  .rv-header.is-open .rv-burger__bar:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
  }
  .rv-header.is-open .rv-burger__bar:nth-child(2) {
    opacity: 0;
  }
  .rv-header.is-open .rv-burger__bar:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
  }
}
/**/
.rv-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--brown-lt);
  overflow: hidden;
  color: var(--white);
}

.rv-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.rv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(61 41 22 / 55%) 35%, rgb(101 94 94 / 20%) 70%);
  backdrop-filter: blur(3px);
  z-index: 2;
}

.rv-hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 85vh;
  padding-left: clamp(1rem, 5vw, 4rem);
  max-width: none;
  padding-right: 1rem;
}

.rv-hero__content {
  max-width: 540px;
  display: grid;
  gap: 1.25rem;
}

.rv-hero__title {
  color: var(--white);
  margin: 0;
}

.rv-hero__desc {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 600;
}

.rv-hero__button-wrapper {
  max-width: 220px;
  width: 100%;
}

.rv-hero__button-wrapper .button {
  width: 100%;
  text-align: center;
}
/**/
.rv-contact-form {
  background: var(--beige);
  padding: 4rem 0;
  color: var(--dark);
}

.rv-contact-form__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.rv-contact-form__text {
  flex: 1 1 40ch;
}

.rv-contact-form__title {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.25rem);
  margin-bottom: 1rem;
}

.rv-contact-form__desc {
  font-family: var(--font-base);
  font-size: 1rem;
}

.rv-contact-form__form {
  flex: 1 1 30ch;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rv-contact-form__icon-title {
  color: var(--brown);
  margin-right: 0.5rem;
  font-size: 1.5rem;
  vertical-align: middle;
}

.rv-input-wrapper {
  position: relative;
}

.rv-input-wrapper i {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: var(--brown-hover);
  font-size: 1.1rem;
}

.rv-input-wrapper input,
.rv-input-wrapper textarea {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border: 2px solid var(--brown-hover);
  border-radius: 8px;
  font-family: var(--font-base);
  font-size: 1rem;
  background: var(--brown-lt);
  color: var(--dark);
}

.rv-input-wrapper textarea {
  min-height: 100px;
  resize: none;
}

.rv-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.rv-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.rv-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  color: var(--dark);
  padding: 2rem;
  border-radius: 16px;
  max-width: 90%;
  width: 340px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.rv-modal__icon {
  font-size: 3rem;
  color: var(--brown);
  margin-bottom: 1rem;
}

.rv-modal__message {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.rv-modal__close {
  background: var(--brown);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.rv-modal__close:hover {
  background: var(--brown-hover);
}

/**/
.rv-footer {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 0;
  font-family: var(--font-base);
  font-size: 0.95rem;
}

.rv-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.rv-footer__col {
  flex: 1 1 200px;
  min-width: 200px;
}
.rv-footer__col-title {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.rv-footer__info {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.rv-footer__info i {
  margin-right: 0.4rem;
  color: var(--brown);
}

.rv-footer__info a {
  display: block;
  margin-top: 0.5rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.rv-footer__info a:hover {
  color: var(--brown);
}

.rv-footer__logo img {
  max-width: 77px;
  margin-bottom: 1rem;
  border-radius: 10px;
}

.rv-footer__info a {
  color: var(--white);
  text-decoration: none;
}

.rv-footer__menu {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.rv-footer__menu li {
  margin-bottom: 0.5rem;
}

.rv-footer__menu a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.rv-footer__menu a:hover {
  color: var(--brown);
}

.rv-footer__disclaimer {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.rv-footer__copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .rv-footer__inner {
    flex-direction: column;
  }
}
/**/
.rv-disclaimer {
  padding: 60px 20px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.6;
}

.rv-disclaimer-text {
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.rv-disclaimer-text p {
  margin-bottom: 1em;
}

.disclaimer__resources {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.disclaimer__link img,
.disclaimer__age img {
  max-height: 55px;
  height: auto;
  width: auto;
  transition: opacity 0.3s ease;
}

.disclaimer__link:hover img {
  opacity: 0.7;
}

.disclaimer__age {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .rv-disclaimer {
    padding: 40px 16px;
  }

  .disclaimer__resources {
    gap: 16px;
  }

  .disclaimer__link img,
  .disclaimer__age img {
    max-height: 32px;
  }
}
