* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
body {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: currentColor;
}

button {
  font-family: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

input,
textarea {
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  width: 24px;
  height: 24px;
  display: block;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #ffffff;
}
body.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel Decorative", cursive;
  color: #1a1a1a;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 345px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 375px) {
  .container {
    max-width: 345px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 708px;
    padding: 0 30px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 944px;
    padding: 0 40px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
    padding: 0 60px;
  }
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}
.btn--contained {
  background-color: #d4af37;
  color: #ffffff;
  border: 1px solid #d4af37;
}
.btn--contained:hover {
  background-color: #8b6c39;
  border-color: #8b6c39;
}
.btn--outlined {
  background-color: transparent;
  color: #d4af37;
  border: 1px solid #d4af37;
}
.btn--outlined:hover {
  background-color: #d4af37;
  color: #ffffff;
}

.header {
  background-color: #1a1a1a;
  padding: 15px 0;
  position: relative;
  z-index: 100;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  height: 64px;
  width: auto;
}
.header__nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #1a1a1a;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(26, 26, 26, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.header__nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (min-width: 1024px) {
  .header__nav {
    width: auto;
    display: block;
    position: static;
    background-color: transparent;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header__menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
}
@media (min-width: 1024px) {
  .header__menu {
    flex-direction: row;
  }
}
.header__menu-item {
  margin: 10px 0;
}
@media (min-width: 1024px) {
  .header__menu-item {
    margin-left: 30px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.header__menu-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 0;
  display: block;
  position: relative;
}
.header__menu-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #d4af37;
  transition: width 0.3s ease;
}
.header__menu-link:hover::after {
  width: 100%;
}
@media (min-width: 1024px) {
  .header__menu-link {
    padding: 5px 0;
  }
  .header__menu-link::after {
    left: 0;
    transform: translateX(0);
  }
}
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}
.header__burger-line {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.header__burger.is-active .header__burger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header__burger.is-active .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger.is-active .header__burger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hero {
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
@media (min-width: 768px) {
  .hero {
    min-height: 600px;
    padding: 120px 0;
  }
}
@media (min-width: 1024px) {
  .hero {
    min-height: 700px;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.5);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero__wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.hero__title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #f0d780;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 4.5rem;
  }
}
.hero__text {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .hero__text {
    font-size: 1.3rem;
  }
}

.about {
  padding: 60px 0;
  background-color: #f5f5f5;
}
@media (min-width: 768px) {
  .about {
    padding: 80px 0;
  }
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .about__wrapper {
    flex-direction: row;
    align-items: center;
  }
}
.about__img-wrapper {
  flex: 1;
  text-align: center;
}
.about__img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(26, 26, 26, 0.1);
}
.about__content {
  flex: 1;
}
.about__title {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #8b6c39;
  text-align: center;
}
@media (min-width: 768px) {
  .about__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .about__title {
    text-align: left;
  }
}
.about__description {
  margin-top: 20px;
}
.about__text {
  margin-bottom: 15px;
  color: #666666;
}
.about__text-accent {
  font-weight: 600;
  color: #8b6c39;
}

.offer {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .offer {
    padding: 80px 0;
  }
}
.offer__head {
  text-align: center;
  margin-bottom: 40px;
}
.offer__head-title {
  font-size: 2rem;
  color: #8b0000;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .offer__head-title {
    font-size: 2.5rem;
  }
}
.offer__head-text {
  font-size: 1.1rem;
  color: #666666;
}
.offer__title-icon {
  color: #dc143c;
  margin-right: 10px;
}
.offer__list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .offer__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .offer__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.offer__list-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(26, 26, 26, 0.05);
  transition: transform 0.3s ease;
}
.offer__list-item:hover {
  transform: translateY(-5px);
}
.offer__item-icon {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 20px;
}
.offer__item-title {
  font-size: 1.4rem;
  color: #8b6c39;
  margin-bottom: 15px;
}
.offer__item-text {
  color: #666666;
  font-size: 0.95rem;
}

.gallery {
  padding: 60px 0;
  background-color: #f5f5f5;
}
@media (min-width: 768px) {
  .gallery {
    padding: 80px 0;
  }
}
.gallery__head {
  text-align: center;
  margin-bottom: 40px;
}
.gallery__head-title {
  font-size: 2rem;
  color: #8b6c39;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .gallery__head-title {
    font-size: 2.5rem;
  }
}
.gallery__head-text {
  font-size: 1.1rem;
  color: #666666;
}
.gallery__title-icon {
  color: #d4af37;
  margin-right: 10px;
}
.gallery__list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .gallery__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery__list-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(26, 26, 26, 0.1);
}
.gallery__item-img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery__item-img:hover {
  transform: scale(1.05);
}
@media (min-width: 768px) {
  .gallery__item-img {
    height: 250px;
  }
}

.contact {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .contact {
    padding-bottom: 80px;
  }
}
.contact__notice-bg {
  background-color: #8b0000;
  color: #ffffff;
  text-align: center;
  padding: 20px 15px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .contact__notice-bg {
    padding: 25px 30px;
    margin-bottom: 60px;
  }
}
.contact__notice {
  font-size: 1.2rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .contact__notice {
    font-size: 1.5rem;
  }
}
.contact__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .contact__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.contact__left, .contact__right {
  flex: 1;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.08);
}
.contact__title {
  font-size: 1.8rem;
  color: #8b6c39;
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .contact__title {
    font-size: 2.2rem;
    text-align: left;
  }
}
.contact__title-icon {
  color: #d4af37;
  margin-right: 10px;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #f5f5f5;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #333333;
  background-color: #f5f5f5;
}
.contact__form-input:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}
.contact__form-textarea {
  min-height: 120px;
  resize: vertical;
}
.contact .btn--contained {
  width: 100%;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .contact .btn--contained {
    width: auto;
    align-self: flex-start;
  }
}
.contact__form-status {
  margin-top: 15px;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.contact__form-status.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.contact__form-status--success {
  background-color: #f8f2df;
  color: #8b6c39;
  border: 1px solid #d4af37;
}
.contact__form-status--error {
  background-color: #fac3ce;
  color: #8b0000;
  border: 1px solid #dc143c;
}
.contact__list {
  list-style: none;
  padding: 0;
}
.contact__list-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.contact__item-icon {
  font-size: 1.5rem;
  color: #d4af37;
  margin-right: 15px;
  width: 30px;
  text-align: center;
}
.contact__item-text {
  font-size: 1.05rem;
  color: #666666;
}

.disclaimer {
  padding: 40px 0;
  background-color: #1a1a1a;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 768px) {
  .disclaimer {
    padding: 50px 0;
  }
}
.disclaimer__title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  color: #dc143c;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.disclaimer__text {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  color: #f5f5f5;
}

.features {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
}
@media (min-width: 768px) {
  .features {
    padding: 80px 0;
  }
}
.features__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .features__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.features__list-item {
  background-color: #f5f5f5;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(26, 26, 26, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.features__list-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(26, 26, 26, 0.1);
}
.features__item-icon {
  font-size: 3.5rem;
  color: #d4af37;
  margin-bottom: 20px;
}
.features__item-title {
  font-family: "Cinzel Decorative", cursive;
  font-size: 1.6rem;
  color: #8b6c39;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .features__item-title {
    font-size: 1.8rem;
  }
}
.features__item-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
}

.cta {
  background: linear-gradient(135deg, #8b6c39 0%, #d4af37 100%);
  padding: 60px 0;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 768px) {
  .cta {
    padding: 80px 0;
  }
}
.cta__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (min-width: 768px) {
  .cta__wrapper {
    flex-direction: row;
    justify-content: center;
    text-align: left;
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .cta__wrapper {
    justify-content: space-between;
  }
}
.cta__title {
  font-family: "Cinzel Decorative", cursive;
  font-size: 2rem;
  color: #ffffff;
  margin: 0;
  max-width: 700px;
}
@media (min-width: 768px) {
  .cta__title {
    font-size: 2.5rem;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .cta__title {
    font-size: 3rem;
  }
}
.cta .btn {
  flex-shrink: 0;
  padding: 15px 35px;
  font-size: 1.1rem;
  background-color: #ffffff;
  color: #d4af37;
  border: 2px solid #ffffff;
}
.cta .btn:hover {
  background-color: transparent;
  color: #ffffff;
}

.footer {
  background-color: #333333;
  color: #ffffff;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .footer {
    padding: 60px 0;
  }
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__wrapper {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__block {
  flex: 1;
}
.footer__logo {
  height: 64px;
  width: auto;
  margin-bottom: 20px;
}
.footer__text {
  font-size: 0.9rem;
  color: #f5f5f5;
  max-width: 350px;
  margin: 0 auto 20px auto;
}
@media (min-width: 768px) {
  .footer__text {
    margin: 0;
  }
}
.footer__title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  color: #d4af37;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer__menu {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
@media (min-width: 768px) {
  .footer__menu {
    align-items: flex-start;
  }
}
.footer__menu-link {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}
.footer__menu-link:hover {
  color: #d4af37;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 15px 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s ease-out;
  box-shadow: 0 -2px 10px rgba(26, 26, 26, 0.3);
}
.cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .cookie-banner__content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.cookie-banner__text {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .cookie-banner__text {
    flex-grow: 1;
    padding-right: 20px;
    font-size: 1rem;
  }
}
.cookie-banner__link {
  color: #f0d780;
  text-decoration: underline;
}
.cookie-banner__link:hover {
  color: #d4af37;
}
.cookie-banner__button {
  flex-shrink: 0;
  padding: 8px 20px;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .cookie-banner__button {
    font-size: 1rem;
    padding: 10px 25px;
  }
}

.legal {
  padding: 60px 0;
  background-color: #f5f5f5;
  color: #333333;
}
@media (min-width: 768px) {
  .legal {
    padding: 80px 0;
  }
}
.legal__title {
  font-family: "Cinzel Decorative", cursive;
  font-size: 2.5rem;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .legal__title {
    font-size: 3rem;
    margin-bottom: 60px;
  }
}
.legal__section {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.08);
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .legal__section {
    padding: 40px;
    margin-bottom: 40px;
  }
}
.legal__section-title {
  font-family: "Cinzel Decorative", cursive;
  font-size: 1.8rem;
  color: #8b6c39;
  margin-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .legal__section-title {
    font-size: 2rem;
  }
}
.legal__paragraph {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #666666;
}
.legal__paragraph:last-child {
  margin-bottom: 0;
}
.legal__paragraph strong {
  color: #8b6c39;
}
.legal__list {
  padding-left: 20px;
  margin-bottom: 15px;
}
.legal__list-item {
  list-style: disc;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #666666;
}
.legal__list-item strong {
  color: #1a1a1a;
}
.legal__contact-info {
  font-size: 1rem;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
  color: #8b6c39;
}