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

body {
  font-family: 'Poppins', sans-serif;
  color: #1e1e1e;
  line-height: 1.6;
  background: #ffffff;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all .25s ease;
  border: 2px solid transparent;
}
.btn--primary {
  background: #d4a017;
  color: #111;
}
.btn--primary:hover { background: #b8860f; }
.btn--outline {
  border-color: #111;
  color: #111;
}
.btn--outline:hover { background: #111; color: #fff; }
.btn--full { width: 100%; text-align:center; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.logo {
  font-size: 22px;
  font-weight: 700;
  color: #111;
}
.logo span { color: #d4a017; }
.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  font-weight: 500;
  font-size: 15px;
  color: #333;
  transition: color .2s;
}
.nav a:hover { color: #d4a017; }
.nav-cta { margin-left: 20px; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  width: 26px;
  height: 3px;
  background: #111;
  border-radius: 2px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #111111 0%, #2b2b2b 60%, #3a3a3a 100%);
  color: #fff;
  padding: 100px 0 90px;
}
.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.hero__text { flex: 1 1 480px; }
.hero__text h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.25;
}
.hero__text h1 span { color: #d4a017; }
.hero__text p {
  font-size: 17px;
  color: #cfcfcf;
  max-width: 520px;
  margin-bottom: 30px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__image {
  flex: 1 1 380px;
  min-height: 320px;
  background: linear-gradient(135deg, #d4a017 0%, #f0c94c 100%);
  border-radius: 16px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.hero__badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: #111;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Strip */
.strip { background: #f5f0e6; padding: 40px 0; }
.strip__inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}
.strip__item strong {
  display: block;
  font-size: 28px;
  color: #d4a017;
}
.strip__item span { font-size: 14px; color: #555; }

/* Section */
.section { padding: 90px 0; }
.section--alt { background: #faf8f3; }
.section__title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
}
.section__title--left { text-align: left; }
.section__subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 32px 26px;
  transition: transform .25s, box-shadow .25s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.card__icon { font-size: 34px; margin-bottom: 16px; }
.card h3 { margin-bottom: 10px; font-size: 19px; }
.card p { color: #666; font-size: 15px; }

/* About */
.about {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.about__text { flex: 1 1 480px; }
.about__text p { color: #555; margin-bottom: 16px; }
.about__list li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: #333;
}
.about__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #d4a017;
  font-weight: 700;
}
.about__image {
  flex: 1 1 380px;
  min-height: 320px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ececec, #cfcfcf);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery__item {
  height: 220px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d4a017 0%, #333 100%);
  opacity: 0.9;
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.review {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid #eee;
}
.review p { font-style: italic; color: #444; margin-bottom: 14px; }
.review span { font-weight: 600; color: #d4a017; }

/* Contact */
.contact {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
.contact__info { flex: 1 1 420px; }
.contact__info p { color: #555; margin-bottom: 24px; }
.contact__list li { margin-bottom: 12px; color: #333; }
.contact__list a { color: #d4a017; font-weight: 600; }
.social { display: flex; gap: 16px; margin-top: 24px; }
.social a {
  padding: 10px 18px;
  border: 2px solid #111;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all .2s;
}
.social a:hover { background: #111; color: #fff; }

.contact__form {
  flex: 1 1 420px;
  background: #faf8f3;
  padding: 34px;
  border-radius: 16px;
  border: 1px solid #eee;
}
.contact__form h3 { margin-bottom: 20px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #d4a017;
}
.form-note {
  margin-top: 14px;
  font-size: 14px;
  color: #2e7d32;
  min-height: 18px;
}

/* Footer */
.footer {
  background: #111;
  color: #ccc;
  padding: 60px 0 20px;
}
.footer__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.footer__col h4 { color: #fff; margin-bottom: 16px; font-size: 16px; }
.footer__col a { display: block; margin-bottom: 10px; color: #ccc; font-size: 14px; }
.footer__col a:hover { color: #d4a017; }
.footer__col p { font-size: 14px; margin-bottom: 8px; }
.footer__bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #888;
}

/* Privacy page */
.policy h1 { font-size: 32px; margin-bottom: 10px; }
.policy h2 { margin-top: 28px; margin-bottom: 10px; font-size: 20px; }
.policy p { color: #444; margin-bottom: 8px; }
.policy { max-width: 860px; }
.policy .btn { margin-top: 30px; }

/* Responsive */
@media (max-width: 900px) {
  .cards, .gallery, .reviews { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    display: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  .nav.active { display: flex; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .hero__text h1 { font-size: 32px; }
  .cards, .gallery, .reviews { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .about, .contact { flex-direction: column; }
}
