@charset "UTF-8";
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

p, span, div {
  letter-spacing: 1px;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
  letter-spacing: 1px;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
  box-sizing: border-box;
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

@font-face {
  font-family: "Montserrat";
  src: url("/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
body {
  box-sizing: border-box;
  font-family: "Montserrat";
}

.header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo img {
  display: block;
  height: auto;
}

.header__nav {
  display: flex;
}

.nav__list {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  text-decoration: none;
  color: #222;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav__list a:hover {
  color: #d87b2f;
}

.langswitch {
  position: relative;
  margin-left: 24px;
}

.langswitch__btn {
  background: none;
  border: 1px solid #ccc;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}

.langswitch__menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  margin-top: 6px;
  list-style: none;
  padding: 4px 0;
  display: none;
}

.langswitch__menu li {
  margin: 0;
}

.langswitch__menu button {
  background: none;
  border: none;
  padding: 8px 16px;
  width: 100%;
  text-align: left;
  font-size: 14px;
  cursor: pointer;
  color: #222;
}

.langswitch__menu button:hover {
  background: #f7f7f7;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #222;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #eee;
  }
  .header__nav.active {
    display: flex;
  }
  .nav__list {
    flex-direction: column;
    gap: 16px;
  }
  .burger {
    display: flex;
  }
}
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: url("/assets/img/hero-bg.webp") center/cover no-repeat;
  color: #fff;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.2) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero__title {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  color: #222;
  margin-bottom: 24px;
}

.hero__title span {
  color: #d87b2f;
}

.hero__subtitle {
  font-size: 20px;
  line-height: 1.5;
  color: #444;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn--primary {
  background: #d87b2f;
  color: #fff;
}

.btn--primary:hover {
  background: #b96622;
}

.btn--secondary {
  border: 2px solid #d87b2f;
  color: #d87b2f;
  background: transparent;
}

.btn--secondary:hover {
  background: #d87b2f;
  color: #fff;
}

@media (max-width: 900px) {
  .hero__title {
    font-size: 40px;
  }
  .hero__subtitle {
    font-size: 18px;
  }
  .hero__actions {
    flex-direction: column;
  }
}
.menu {
  padding: 100px 0;
  background: #faf7f2;
  position: relative;
}

.menu__head {
  text-align: center;
  margin-bottom: 60px;
}

.menu__title {
  font-size: 44px;
  font-weight: 800;
  color: #222;
  margin-bottom: 16px;
}

.menu__subtitle {
  font-size: 18px;
  color: #666;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.menu__item {
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.menu__imgwrap {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.menu__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu__name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.menu__desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.4;
}

.menu__price {
  font-size: 16px;
  font-weight: 600;
  color: #d87b2f;
}

.menu__actions {
  text-align: center;
  margin-top: 50px;
}

.btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn--primary {
  background: #d87b2f;
  color: #fff;
}

.btn--primary:hover {
  background: #b96622;
}

@media (max-width: 992px) {
  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .menu__grid {
    grid-template-columns: 1fr;
  }
}
.about {
  padding: 100px 0;
  background: #fff;
}

.about__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about__image img {
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  max-width: 100%;
  height: auto;
}

.about__title {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.about__text {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 16px;
}

.about__highlight {
  font-size: 18px;
  font-weight: 600;
  color: #d87b2f;
  margin-bottom: 24px;
}

@media (max-width: 992px) {
  .about__inner {
    flex-direction: column;
    text-align: center;
  }
  .about__content {
    max-width: 640px;
  }
}
.testimonials {
  padding: 100px 0;
  background: #faf7f2;
}

.testimonials__title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
}

.testimonial__avatar img {
  border-radius: 50%;
  margin-bottom: 16px;
}

.testimonial__text {
  font-size: 16px;
  line-height: 1.5;
  color: #444;
  margin-bottom: 12px;
}

.testimonial__author {
  font-size: 14px;
  font-weight: 600;
  color: #d87b2f;
}

@media (max-width: 992px) {
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}
.testimonials {
  padding: 100px 0;
  background: #faf7f2;
}

.testimonials__title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
}

.testimonial__avatar img {
  border-radius: 50%;
  margin-bottom: 16px;
}

.testimonial__text {
  font-size: 16px;
  line-height: 1.5;
  color: #444;
  margin-bottom: 12px;
}

.testimonial__author {
  font-size: 14px;
  font-weight: 600;
  color: #d87b2f;
}

@media (max-width: 992px) {
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}
.story {
  padding: 100px 0;
  background: #faf7f2;
}

.story__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.story__title {
  font-size: 42px;
  font-weight: 800;
  color: #222;
  margin-bottom: 32px;
}

.story__highlight {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
  color: #d87b2f;
  margin-bottom: 32px;
}

.story__highlight span {
  font-size: 28px;
}

.story__text {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.why {
  padding: 100px 0;
  background: #fff;
}

.why__title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #222;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why__item {
  text-align: center;
  padding: 20px;
  border-radius: 14px;
  background: #faf7f2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.why__icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.why__name {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.why__text {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .why__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .why__grid {
    grid-template-columns: 1fr;
  }
}
.footer {
  background: #222;
  color: #eee;
  padding: 80px 20px 40px;
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo {
  max-width: 140px;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 15px;
  color: #bbb;
}

.footer__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: #fff;
}

.footer__socials a {
  font-size: 22px;
  margin-right: 12px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.footer__socials a:hover {
  transform: scale(1.2);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.footer__legal {
  font-size: 14px;
  color: #888;
}

.footer__legal-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.footer__legal-links a {
  font-size: 14px;
  color: #aaa;
  text-decoration: none;
}

.footer__legal-links a:hover {
  color: #fff;
}

@media (max-width: 992px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
.about-hero {
  padding: 100px 0 60px;
  text-align: center;
  background: #faf7f2;
}

.about-hero__title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #222;
}

.about-hero__subtitle {
  font-size: 20px;
  color: #555;
}

.about-story,
.about-philosophy,
.about-team,
.about-values,
.about-gallery {
  padding: 80px 0;
}

.about-story h2,
.about-philosophy h2,
.about-team h2,
.about-values h2,
.about-gallery h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.about-story p,
.about-philosophy p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.team-member__emoji {
  font-size: 48px;
  margin-bottom: 16px;
}

.team-member h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}

.team-member p {
  font-size: 16px;
  color: #555;
}

.values-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 20px;
  font-weight: 600;
  color: #222;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .values-list {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.contact-hero {
  padding: 100px 0 60px;
  text-align: center;
  background: #faf7f2;
}

.contact-hero__title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #222;
}

.contact-hero__subtitle {
  font-size: 20px;
  color: #555;
}

.contact-info {
  padding: 80px 0;
  background: #fff;
}

.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.contact-info h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #222;
}

.contact-info p {
  font-size: 16px;
  color: #555;
}

.contact-map {
  padding: 80px 0;
}

.contact-map h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #222;
}

.contact-form {
  padding: 80px 0;
  background: #faf7f2;
}

.contact-form h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.btn--primary {
  background: #d87b2f;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.btn--primary:hover {
  background: #b96622;
}

.contact-socials {
  padding: 60px 0;
  text-align: center;
}

.contact-socials h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.socials a {
  display: inline-block;
  margin: 0 12px;
  font-size: 18px;
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
}

.socials a:hover {
  color: #d87b2f;
}

@media (max-width: 768px) {
  .contact-info__grid {
    grid-template-columns: 1fr;
  }
}
.popup[hidden] {
  display: none;
}

.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.popup__content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.popup__content p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #222;
}

#popupClose {
  background: #d87b2f;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

#popupClose:hover {
  background: #b96622;
}

.privacy {
  padding: 100px 20px;
  background: #fff;
}

.privacy__inner {
  max-width: 900px;
  margin: 0 auto;
}

.privacy__title {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

.privacy__update {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-bottom: 50px;
}

.privacy__subtitle,
.privacy h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 16px;
  color: #222;
}

.privacy__text,
.privacy p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.privacy ul {
  list-style: disc inside;
  margin: 0 0 20px 0;
  padding: 0;
}

.privacy li {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .privacy__title {
    font-size: 32px;
  }
  .privacy__subtitle,
  .privacy h2 {
    font-size: 20px;
  }
  .privacy__text,
  .privacy p,
  .privacy li {
    font-size: 15px;
  }
}
.terms {
  padding: 100px 20px;
  background: #fff;
}

.terms__inner {
  max-width: 900px;
  margin: 0 auto;
}

.terms__title {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

.terms__update {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-bottom: 50px;
}

.terms h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 16px;
  color: #222;
}

.terms p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .terms__title {
    font-size: 32px;
  }
  .terms h2 {
    font-size: 20px;
  }
  .terms p {
    font-size: 15px;
  }
}
.cookies {
  padding: 100px 20px;
  background: #fff;
}

.cookies__inner {
  max-width: 900px;
  margin: 0 auto;
}

.cookies__title {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

.cookies__update {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-bottom: 50px;
}

.cookies h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 16px;
  color: #222;
}

.cookies p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.cookies ul {
  list-style: disc inside;
  margin: 0 0 20px 0;
  padding: 0;
}

.cookies li {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .cookies__title {
    font-size: 32px;
  }
  .cookies h2 {
    font-size: 20px;
  }
  .cookies p,
  .cookies li {
    font-size: 15px;
  }
}
.security {
  padding: 100px 20px;
  background: #fff;
}

.security__inner {
  max-width: 900px;
  margin: 0 auto;
}

.security__title {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

.security__intro {
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #444;
}

.security h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 30px 0 16px;
  color: #222;
}

.security p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 16px;
}

.security__list {
  list-style: disc inside;
  margin: 0;
  padding: 0;
}

.security__list li {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .security__title {
    font-size: 32px;
  }
  .security h2 {
    font-size: 20px;
  }
}

/*# sourceMappingURL=main.css.map */
