* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(28, 72, 61, 0.05), transparent 28%),
    linear-gradient(180deg, #f8f4ee 0%, #f4eee6 100%);
  color: #173a33;
  font-family: "Inter", "Segoe UI", sans-serif;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(1200px, calc(100% - 56px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 238, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 58, 51, 0.08);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0f4338, #1a5a4c);
  color: #f7f1e7;
  box-shadow: 0 16px 34px rgba(17, 59, 49, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #103c33;
  font-weight: 400;
}

.logo-subtitle {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #8f8273;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #35564d;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: #123f35;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #123f35;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  font-size: 14px;
  color: #2c5349;
  font-weight: 500;
}

.header-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7d776e;
  font-size: 14px;
}

.header-lang a:hover {
  color: #123f35;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #18463c;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(23, 58, 51, 0.06);
}

.icon-btn:hover {
  transform: translateY(-1px);
  background: rgba(23, 58, 51, 0.06);
}

.hero {
  position: relative;
  padding: 52px 0 120px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(24, 76, 64, 0.1), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(198, 170, 139, 0.14), transparent 26%),
    linear-gradient(180deg, #f8f4ee 0%, #f3ece3 100%);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -120px;
  top: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 63, 53, 0.08), transparent 65%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 56px;
}

.hero-content {
  max-width: 650px;
}

.hero-label,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #8a7d6f;
  margin-bottom: 20px;
}

.hero-label::before,
.section-label::before {
  content: "";
  width: 36px;
  height: 1px;
  background: rgba(18, 63, 53, 0.32);
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #103a31;
  font-weight: 400;
  max-width: 760px;
}

.hero-text {
  margin-top: 26px;
  max-width: 560px;
  font-size: 18px;
  color: #636860;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  width: 100%;
  max-width: 350px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-note span {
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(17, 59, 49, 0.08);
  color: #476259;
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.hero-card {
  position: absolute;
  border-radius: 36px;
  overflow: hidden;
}

.hero-card-main {
  inset: 0 46px 90px 0;
  box-shadow: 0 32px 80px rgba(23, 44, 38, 0.16);
  background-image: url('/imgs/main.png');
  background-position: center;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

.hero-card-main img {
  height: 100%;
  object-fit: cover;
}

.hero-card-small {
  right: 0;
  bottom: 0;
  width: 305px;
  min-height: 250px;
  background: rgba(255, 252, 248, 0.88);
  border: 1px solid rgba(17, 59, 49, 0.08);
  box-shadow: 0 22px 60px rgba(23, 44, 38, 0.12);
  backdrop-filter: blur(14px);
}

.hero-badge {
  padding: 30px 28px;
}

.hero-badge-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #907f6f;
}

.hero-badge strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 400;
  color: #103a31;
}

.hero-badge p {
  margin-top: 14px;
  color: #6a6f67;
  font-size: 15px;
}

.hero-badge a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #123f35;
  font-size: 14px;
  font-weight: 600;
}

.hero-badge a:hover {
  opacity: 0.7;
}

.btn {
  height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-primary {
  background: linear-gradient(135deg, #103f35, #1b5a4b);
  color: #f8f3eb;
  box-shadow: 0 18px 34px rgba(17, 59, 49, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(17, 59, 49, 0.22);
}

.btn-secondary,
.btn-outline,
.btn-transparent {
  border: 1px solid rgba(17, 59, 49, 0.14);
  background: rgba(255, 255, 255, 0.45);
  color: #123f35;
}

.btn-secondary:hover,
.btn-outline:hover,
.btn-transparent:hover {
  background: #123f35;
  color: #f8f3eb;
  border-color: #123f35;
}

.btn-light {
  background: #f8f3eb;
  color: #123f35;
}

.btn-light:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.about-preview,
.featured-categories,
.signature-section,
.products-section,
.cta-section {
  padding: 110px 0;
}

.about-preview {
  padding-top: 0;
}

.about-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
  padding: 56px 0 0;
  border-top: 1px solid rgba(17, 59, 49, 0.08);
}

.section-intro h2,
.section-heading h2,
.signature-copy h2,
.cta-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #103a31;
  font-weight: 400;
}

.about-preview-text p {
  max-width: 620px;
  color: #666b64;
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #123f35;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.text-link:hover {
  opacity: 0.72;
}

.section-heading {
  margin-bottom: 46px;
  text-align: center;
}

.section-heading-left {
  text-align: left;
}

.section-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.featured-categories-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 24px;
}

.featured-category {
  position: relative;
  display: block;
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(25, 45, 39, 0.12);
  background: #ddd4c7;
}

.featured-category-large {
  min-height: 560px;
}

.featured-category-image,
.featured-category-image img {
  height: 100%;
}

.featured-category-image img {
  object-fit: cover;
  transition: transform 0.55s ease;
}

.featured-category::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 24, 20, 0.04) 0%, rgba(8, 24, 20, 0.56) 100%);
  z-index: 1;
}

.featured-category-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  color: #f7f2ea;
}

.featured-category-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.78;
}

.featured-category h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1.04;
  font-weight: 400;
}

.featured-category p {
  margin-top: 12px;
  max-width: 320px;
  font-size: 15px;
  color: rgba(247, 242, 234, 0.82);
}

.featured-category:hover .featured-category-image img {
  transform: scale(1.04);
}

.signature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
}

.signature-copy p:not(.section-label) {
  margin-top: 22px;
  max-width: 560px;
  color: #676c65;
  font-size: 17px;
}

.signature-copy .btn {
  margin-top: 30px;
}

.signature-points {
  display: grid;
  gap: 18px;
}

.signature-point {
  padding: 34px 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(17, 59, 49, 0.08);
  box-shadow: 0 18px 40px rgba(25, 45, 39, 0.06);
}

.signature-point span {
  display: inline-block;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  color: #c0ab8f;
}

.signature-point h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.08;
  color: #123f35;
  font-weight: 400;
}

.signature-point p {
  margin-top: 10px;
  color: #676c65;
  font-size: 15px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 59, 49, 0.08);
  box-shadow: 0 22px 56px rgba(23, 44, 38, 0.08);
  transition: 0.35s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 66px rgba(23, 44, 38, 0.12);
}

.product-card-link {
  display: block;
}

.product-image {
  aspect-ratio: 0.92 / 1;
  overflow: hidden;
  background: #e9dfd1;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-body {
  padding: 22px 22px 24px;
}

.product-type {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9b8775;
}

.product-body h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.02;
  color: #103a31;
  font-weight: 400;
}

.product-body p {
  margin-top: 14px;
  color: #6c7069;
  font-size: 15px;
}

.product-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  color: #103a31;
}

.product-action {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #31534a;
  font-weight: 600;
}

.cta-section {
  padding-top: 20px;
}

.cta-box {
  border-radius: 38px;
  padding: 68px 52px;
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.08), transparent 26%),
    radial-gradient(circle at 84% 78%, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(135deg, #0f3e34 0%, #195648 100%);
  color: #f8f3eb;
  box-shadow: 0 30px 70px rgba(15, 62, 52, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-box h2 {
  color: white;
}

.cta-copy {
  max-width: 720px;
}

.section-label-light {
  color: rgba(248, 243, 235, 0.7);
}

.section-label-light::before {
  background: rgba(248, 243, 235, 0.34);
}

.cta-copy p:last-child {
  margin-top: 18px;
  max-width: 620px;
  color: rgba(248, 243, 235, 0.78);
  font-size: 17px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
}

.site-footer {
  margin-top: 36px;
  background: #103b32;
  color: #f6efe6;
  padding: 78px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(246, 239, 230, 0.12);
}

.footer-logo .logo-mark {
  background: #f6efe6;
  color: #103b32;
  box-shadow: none;
}

.footer-logo .logo-title {
  color: #f6efe6;
}

.footer-logo .logo-subtitle {
  color: rgba(246, 239, 230, 0.56);
}

.footer-brand p {
  margin-top: 20px;
  max-width: 340px;
  color: rgba(246, 239, 230, 0.72);
}

.footer-column h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li+li {
  margin-top: 10px;
}

.footer-column a,
.footer-column span {
  color: rgba(246, 239, 230, 0.72);
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 22px;
  text-align: center;
  color: rgba(246, 239, 230, 0.52);
  font-size: 13px;
}

@media (max-width: 1180px) {

  .hero-grid,
  .signature-grid,
  .about-preview-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
    max-width: 720px;
  }

  .featured-categories-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-category-large {
    grid-column: span 2;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav,
  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding: 26px 0 30px;
  }

  .about-preview,
  .featured-categories,
  .signature-section,
  .products-section,
  .cta-section {
    padding: 30px 0;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-card-main {
    inset: 0 24px 80px 0;
  }

  .hero-card-small {
    width: 260px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .logo-title {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-text,
  .about-preview-text p,
  .signature-copy p:not(.section-label),
  .cta-copy p:last-child {
    font-size: 16px;
  }

  .featured-categories-grid,
  .products-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-footer {
    padding: 28px 0 28px;
  }

  .footer_text {
    display: none;
  }

  .featured-category-large {
    grid-column: auto;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .hero-card {
    position: relative;
  }

  .hero-card-main {
    inset: auto;
    min-height: 430px;
  }

  .hero-card-small {
    width: 100%;
    right: auto;
    bottom: auto;
  }

  .section-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-box {
    padding: 50px 24px;
  }
}

@media (max-width: 520px) {
  .header-phone {
    display: none;
  }

  .hero-note {
    gap: 10px;
  }

  .hero-note span {
    width: 100%;
    justify-content: center;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons,
  .cta-actions {
    width: 100%;
  }

  .featured-category,
  .featured-category-large {
    min-height: 420px;
  }

  .section-intro h2,
  .section-heading h2,
  .signature-copy h2,
  .cta-copy h2 {
    font-size: 34px;
  }

  .product-body h3 {
    font-size: 28px;
  }

  .price {
    font-size: 26px;
  }
}




.contacts {
  padding: 100px 0 120px;
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #0f3b32;
}

.section-heading p {
  color: #6b6f69;
  font-size: 16px;
}

.contacts-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
}

.info-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(18, 63, 53, 0.08);
  box-shadow: 0 18px 40px rgba(23, 44, 38, 0.06);
}

.info-card+.info-card {
  margin-top: 20px;
}

.info-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  color: #103a31;
  margin-bottom: 16px;
}

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 10px;
}

.contacts-info svg {
  width: 22px;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(16, 59, 50, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f3b32;
  flex: 0 0 50px;
  font-size: 16px;
}

.i4ewOd-pzNkMb-tJHJj {
  display: none;
}

.info-item p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9a8e80;
  margin-bottom: 4px;
}

.info-item a,
.info-item span {
  font-size: 17px;
  color: #173a33;
}

.info-item .info-icon {
  font-size: 22px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0f3b32;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: 0.3s;
}

.socials a:hover {
  transform: translateY(-2px);
  background: #174d42;
}

.contact-form-box {
  background: #ffffff;
  border-radius: 26px;
  padding: 36px;
  border: 1px solid rgba(18, 63, 53, 0.08);
  box-shadow: 0 22px 50px rgba(23, 44, 38, 0.07);
}

.contact-form h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 22px;
  color: #103a31;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #415a54;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(18, 63, 53, 0.12);
  background: #faf8f4;
  transition: 0.25s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #0f3b32;
  background: #ffffff;
}

textarea {
  resize: vertical;
}

.btn-primary {
  margin-top: 10px;
  width: 100%;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f3b32, #1b5a4c);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(18, 63, 53, 0.2);
}

.map-box {
  margin-top: 40px;
  background: #ffffff;
  border-radius: 26px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(18, 63, 53, 0.08);
}

.map-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
  color: #0f3b32;
}

.map-placeholder p {
  color: #7a7f78;
}

@media (max-width: 900px) {
  .contacts-layout {
    grid-template-columns: 1fr;
  }

  .map-box {
    padding: 60px 20px;
  }
}


.cta-section h2 {
  color: white;
}





.contact-call-box {
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f3 100%);
  border: 1px solid rgba(18, 63, 53, 0.08);
  border-radius: 30px;
  padding: 42px 38px;
  box-shadow: 0 24px 50px rgba(23, 44, 38, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  align-items: center;
}

.contact-call-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f3b32, #1a5a4b);
  color: #ffffff;
  font-size: 28px;
  box-shadow: 0 14px 30px rgba(18, 63, 53, 0.18);
  margin-bottom: 24px;
}

.contact-call-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9a8e80;
  margin-bottom: 12px;
}

.contact-call-box h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.05;
  font-weight: 400;
  color: #103a31;
  margin-bottom: 16px;
}

.contact-call-text {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.7;
  color: #6b6f69;
  margin-bottom: 28px;
  text-align: center;
}

.contact-call-phone {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(15, 59, 50, 0.04);
  border: 1px solid rgba(18, 63, 53, 0.08);
  margin-bottom: 26px;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.contact-call-phone-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9a8e80;
}

.contact-call-phone a {
  font-size: 28px;
  font-weight: 600;
  color: #103a31;
  line-height: 1.2;
}

.contact-call-phone a:hover {
  color: #1a5a4b;
}

.contact-call-btn {
  width: fit-content;
  min-width: 190px;
  height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f3b32, #1a5a4b);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(18, 63, 53, 0.16);
  transition: 0.3s ease;
  width: 100%;
}

.contact-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(18, 63, 53, 0.22);
}

@media (max-width: 900px) {
  .contact-call-box {
    padding: 34px 24px;
  }

  .contact-call-box h3 {
    font-size: 34px;
  }

  .contact-call-phone a {
    font-size: 24px;
  }

  .contact-call-btn {
    width: 100%;
  }
}





.header-lang {
  position: relative;
  min-width: 84px;
}

.lang-select-trigger {
  min-width: 29px;
  width: 68px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(23, 58, 51, 0.12);
  color: #123f35;
  box-shadow: 0 8px 24px rgba(23, 44, 38, 0.06);
  transition: 0.25s ease;
  cursor: pointer;
}

.lang-select-trigger:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(18, 63, 53, 0.18);
}

.lang-select-current {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-select-arrow {
  font-size: 12px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.lang-select.open .lang-select-arrow {
  transform: rotate(180deg);
}

.lang-select-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  max-width: 68px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.96);
  border: 1px solid rgba(23, 58, 51, 0.08);
  box-shadow: 0 18px 40px rgba(23, 44, 38, 0.12);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.22s ease;
  z-index: 30;
}

.lang-select.open .lang-select-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  color: #35564d;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
}

.lang-option:hover {
  background: rgba(18, 63, 53, 0.06);
  color: #123f35;
}

.lang-option.active {
  background: linear-gradient(135deg, #103f35, #1b5a4b);
  color: #f8f3eb;
}




.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 14px;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s ease;
}

.gallery-item.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.load-more-btn {
  margin: 40px auto 0;
  display: block;
}







/******/
.delivery-page {
  padding: 60px 0 110px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.delivery-heading h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  margin-top: 12px;
  color: #103a31;
}

.delivery-heading p {
  margin-top: 18px;
  max-width: 600px;
  color: #6b6f69;
  font-size: 16px;
}

.delivery-prices-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.delivery-price-card {
  padding: 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 59, 49, 0.08);
  box-shadow: 0 18px 40px rgba(23, 44, 38, 0.06);
}

.delivery-price-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  margin-bottom: 10px;
  color: #103a31;
}

.delivery-price-value {
  font-size: 34px;
  font-family: Georgia, "Times New Roman", serif;
  color: #103a31;
  margin-bottom: 12px;
}

.delivery-price-card p {
  color: #6b6f69;
  font-size: 15px;
}

.delivery-info-block {
  margin-top: 20px;
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(17, 59, 49, 0.08);
}

.delivery-info-block p {
  font-size: 16px;
  color: #5f6460;
}

.delivery-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.delivery-service-item {
  padding: 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(17, 59, 49, 0.08);
  transition: 0.3s ease;
}

.delivery-service-item:hover {
  transform: translateY(-4px);
}

.delivery-service-item h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  margin-bottom: 10px;
  color: #123f35;
}

.delivery-service-item p {
  font-size: 14px;
  color: #6b6f69;
}

.delivery-steps-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.delivery-step {
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(17, 59, 49, 0.08);
}

.delivery-step span {
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  margin-bottom: 12px;
  color: #c0ab8f;
}

.delivery-step h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  margin-bottom: 8px;
  color: #103a31;
}

.delivery-step p {
  font-size: 14px;
  color: #6b6f69;
}

.delivery-contact {
  margin-top: 80px;
}

@media (max-width: 900px) {

  .delivery-prices-grid,
  .delivery-services-grid,
  .delivery-steps-list {
    grid-template-columns: 1fr;
  }

  .delivery-heading h1 {
    font-size: 34px;
  }
}




.site-header {
  position: sticky;
  top: 0;
  z-index: 1005;
  background: rgba(248, 244, 238, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 58, 51, 0.08);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
}

.logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0f4338, #1a5a4c);
  color: #f7f1e7;
  box-shadow: 0 16px 34px rgba(17, 59, 49, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #103c33;
  font-weight: 400;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #35564d;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: #123f35;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #123f35;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  font-size: 14px;
  color: #2c5349;
  font-weight: 500;
  white-space: nowrap;
}

.header-lang {
  position: relative;
  min-width: 84px;
}

.lang-select-trigger {
  min-width: 68px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(23, 58, 51, 0.12);
  color: #123f35;
  box-shadow: 0 8px 24px rgba(23, 44, 38, 0.06);
  transition: 0.25s ease;
  cursor: pointer;
}

.lang-select-trigger:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(18, 63, 53, 0.18);
}

.lang-select-current {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-select-arrow {
  font-size: 12px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.lang-select.open .lang-select-arrow {
  transform: rotate(180deg);
}

.lang-select-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  max-width: 68px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.96);
  border: 1px solid rgba(23, 58, 51, 0.08);
  box-shadow: 0 18px 40px rgba(23, 44, 38, 0.12);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.22s ease;
  z-index: 30;
}

.lang-select.open .lang-select-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  color: #35564d;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
}

.lang-option:hover {
  background: rgba(18, 63, 53, 0.06);
  color: #123f35;
}

.lang-option.active {
  background: linear-gradient(135deg, #103f35, #1b5a4b);
  color: #f8f3eb;
}

.burger-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 58, 51, 0.1);
  box-shadow: 0 8px 24px rgba(23, 44, 38, 0.08);
  position: relative;
  z-index: 1002;
}

.burger-btn span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #123f35;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

@media (max-width: 991px) {
  .header-inner {
    min-height: 78px;
  }

  .desktop-nav,
  .desktop-actions {
    display: none;
  }

  .burger-btn {
    display: inline-flex;
    margin-left: auto;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    top: 79px;
    left: 0;
    width: 100%;
    height: calc(100vh - 79px);
    padding: 14px 0 20px;
    background: rgba(248, 244, 238, 0.72);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    overflow-y: auto;
    z-index: 1001;
  }

  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu {
    padding: 0;
  }

  .mobile-menu .container {
    height: 100%;
    width: 100%;
    padding: 0;
  }

  .mobile-menu-inner {
    background: #f8f4ee;
    border: 1px solid rgba(23, 58, 51, 0.08);
    border-radius: 26px;
    padding: 16px;
    box-shadow: 0 22px 50px rgba(23, 44, 38, 0.12);
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-nav a {
    min-height: 52px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    border-radius: 18px;
    background: rgba(17, 59, 49, 0.04);
    color: #35564d;
    font-size: 15px;
    font-weight: 500;
  }

  .mobile-actions {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-phone {
    min-height: 52px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(17, 59, 49, 0.04);
    font-size: 15px;
  }

  .mobile-lang {
    width: 100%;
    min-width: 100%;
  }

  .mobile-lang .lang-select-trigger {
    width: 100%;
  }

  .mobile-lang .lang-select-dropdown {
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .header-inner {
    min-height: 72px;
  }

  .logo {
    gap: 10px;
  }

  .logo-mark {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .logo-title {
    font-size: 22px;
    letter-spacing: 0.12em;
  }

  .mobile-menu {
    top: 73px;
    height: calc(100vh - 73px);
  }

  .mobile-menu-inner {
    border-radius: 0;
    padding: 14px;
    height: 100%;
    width: 100%;
  }

  .mobile-nav a,
  .mobile-phone {
    min-height: 50px;
    border-radius: 16px;
  }
}

@media (max-width: 520px) {
  .logo-title {
    font-size: 20px;
  }

  .burger-btn {
    width: 44px;
    height: 44px;
  }

  .footer-brand p {
    display: none;
  }

  .delivery-page {
    padding: 0;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .delivery-contact {
    margin-top: 40px;
  }

  .mobile-nav a,
  .mobile-phone {
    padding: 0 14px;
  }

  .contacts {
    padding: 30px 0 30px;
  }
}

.wrapper-map {
  position: relative;
  overflow: hidden;
  height: 452px;
}

.wrapper-map .map-iframe {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(100% + 62px);
  top: -61px;
}


.legal-page {
  padding: 60px 0 110px;
}

.legal-header {
  margin-bottom: 34px;
}

.legal-header h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.05;
  color: #103a31;
  font-weight: 400;
  margin-top: 12px;
}

.legal-header p {
  margin-top: 18px;
  max-width: 780px;
  font-size: 16px;
  color: #666b64;
}

.legal-box {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 59, 49, 0.08);
  border-radius: 30px;
  padding: 34px 30px;
  box-shadow: 0 22px 56px rgba(23, 44, 38, 0.08);
}

.legal-section+.legal-section {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(17, 59, 49, 0.08);
}

.legal-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.12;
  color: #103a31;
  font-weight: 400;
  margin-bottom: 14px;
}

.legal-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #5f6460;
}

.legal-note {
  margin-top: 28px;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(15, 59, 50, 0.04);
  border: 1px solid rgba(18, 63, 53, 0.08);
  color: #5f6460;
  font-size: 15px;
}

@media (max-width: 767px) {
  .legal-page {
    padding: 20px 0 40px;
  }

  .legal-box {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .legal-section h2 {
    font-size: 25px;
  }

  .legal-section p {
    font-size: 15px;
  }
}