@font-face {
  font-family: "Playfair Display";
  src: url(../fonts/PlayfairDisplay-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --primary: #b86b3a;
  --primary-light: #d4894f;
  --primary-dark: #8f4f29;
  --accent: #2c3e50;
  --bg-light: #faf8f5;
  --bg-white: #ffffff;
  --text-dark: #1e1e1e;
  --text-muted: #5e5e5e;
  --border-light: #e9e2d8;
  --shadow-sm: 0 8px 20px rgba(0,0,0,0.04);
  --shadow-md: 0 12px 28px rgba(0,0,0,0.06);
  --radius: 12px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif;
  --font-heading: 'Playfair Display', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
.thanks-wrapper {
  word-break: break-word;
}
body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
}

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

ul {
  list-style: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 40px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  background: transparent;
}

.btn--primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 18px rgba(184,107,58,0.2);
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn--block {
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header__overline {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

.header {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: contain;
}

.logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
}

.logo__line1,
.logo__line2 {
  display: block;
  line-height: 1.2;
}

.logo__line1 {
  font-size: 1.4rem;
}

.logo__line2 {
  font-size: 1rem;
  color: var(--primary);
}

.header__notice {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-light);
  padding: 6px 16px;
  border-radius: 30px;
  margin-left: auto;
  margin-right: 30px;
}

.nav__list {
  display: flex;
  gap: 28px;
}

.nav__link {
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger__line {
  width: 100%;
  height: 3px;
  background: var(--text-dark);
  border-radius: 4px;
  transition: 0.2s;
}

.hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #fefaf7 0%, #fff8f0 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 500px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 32px;
}

.hero__badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--accent);
}

.hero__badges i {
  color: var(--primary);
}

.hero__cta {
  margin-bottom: 16px;
}

.hero__note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero__image img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.feature-grid {
  padding: 60px 0;
}

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

.card {
  background: var(--bg-white);
  padding: 28px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card__icon {
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.card__text {
  color: var(--text-muted);
  line-height: 1.6;
}

.product-showcase {
  padding: 50px 0;
  background: var(--bg-light);
}

.product-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.product-showcase__content .section-header__title {
  text-align: left;
  margin-bottom: 24px;
}

.product-showcase__text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.product-showcase__list {
  margin-bottom: 28px;
}

.product-showcase__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
}

.product-showcase__list i {
  color: var(--primary);
  width: 24px;
  text-align: center;
}

.product-showcase__materials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-showcase__materials span {
  background: white;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 1/1;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s;
  object-fit: cover;
}

.gallery-thumb.active {
  border-color: var(--primary);
}

.testimonials {
  padding: 60px 0;
}

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

.testimonial-card {
  background: var(--bg-white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.testimonial-card__stars {
  color: #f5b342;
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.7;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
}

.testimonial-card__name {
  font-weight: 700;
}

.testimonial-card__location {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.order-section {
  padding: 60px 0;
  background: linear-gradient(145deg, #ffffff 0%, #f7f3ef 100%);
}

.order-section__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.order-section__info .section-header__title {
  text-align: left;
  margin-bottom: 24px;
}

.price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}

.price-block__current {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
}

.price-block__old {
  font-size: 1.6rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-block__saving {
  background: #c0392b;
  color: white;
  padding: 4px 12px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
}

.order-section__includes {
  margin-bottom: 28px;
  font-size: 1.1rem;
}

.order-section__includes i {
  color: var(--primary);
  margin-right: 8px;
}

.order-section__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.order-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.order-feature i {
  color: var(--primary);
  width: 24px;
}

.order-section__image {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.form-card {
  background: white;
  padding: 36px 28px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.form-card__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 24px;
  text-align: center;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: 40px;
  font-size: 1rem;
  transition: border 0.2s;
  background: white;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group--checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-group--checkbox input {
  width: 20px;
  height: 20px;
}

.form-group--checkbox label {
  margin-bottom: 0;
}

.form-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.faq {
  padding: 60px 0;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.faq-item {
  background: var(--bg-light);
  padding: 24px;
  border-radius: var(--radius);
}

.faq-item__question {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.faq-item__answer {
  color: var(--text-muted);
  line-height: 1.6;
}

.footer {
  background: #1a1e22;
  color: #e0e0e0;
  padding: 48px 0 24px;
  margin-top: auto;
}

.footer__container {
  max-width: 1280px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.8fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer__logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  margin-bottom: 16px;
}

.footer__logo-link img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
}

.footer__logo-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.footer__tagline {
  font-size: 0.95rem;
  color: #b0b0b0;
  margin-bottom: 20px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

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

.footer__list li {
  margin-bottom: 12px;
}

.footer__list a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.95rem;
}

.footer__list a:hover {
  color: var(--primary-light);
}

.footer__contacts p {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #c0c0c0;
  line-height: 1.5;
}

.footer__disclaimer {
  border-top: 1px solid #3a4048;
  border-bottom: 1px solid #3a4048;
  padding: 20px 0;
  margin-bottom: 24px;
}

.footer__disclaimer p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #9a9a9a;
  margin: 0;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  font-size: 0.9rem;
  color: #a0a0a0;
}

.footer__payment i {
  font-size: 1.8rem;
  margin-left: 14px;
  color: #cccccc;
  transition: color 0.2s;
}

.footer__payment--mobile {
  display: none;
}

@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .footer__payment--desktop {
    display: none;
  }
  .footer__payment--mobile {
    display: block;
  }
}

@media (max-width: 576px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer__payment i {
    margin: 0 7px;
  }
}

@media (max-width: 992px) {
  .cards--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__grid,
  .product-showcase__grid,
  .order-section__container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .header__notice {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .nav {
    display: none;
  }
  .nav--open {
    display: block;
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-md);
  }
  .nav--open .nav__list {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .hamburger {
    display: flex;
  }
  .hamburger.active .hamburger__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active .hamburger__line:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .hamburger__line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cards--4 {
    grid-template-columns: 1fr;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  .faq__grid {
    grid-template-columns: 1fr;
  }
  .order-section__container {
    gap: 24px;
  }
  .gallery-thumbs {
    justify-content: center;
    flex-wrap: wrap;
  }
}