:root {
  --bg: #101713;
  --panel: #18211c;
  --panel-2: #202c25;
  --text: #f5f7f4;
  --muted: #b9c3bb;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #7ba05b;
  --accent-2: #c6d47e;
  --danger: #9f4747;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: linear-gradient(180deg, #101713, #0b100d);
  color: var(--text);
  line-height: 1.5;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 14, 11, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand img {
  max-height: 44px;
}

.main-nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
}

.main-nav a:hover {
  color: var(--text);
}

.lang-switcher form {
  display: flex;
  gap: 8px;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}

.hero {
  padding: 72px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-2);
  font-size: 12px;
}

h1 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
  margin: 0 0 16px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
}

.hero-card,
.tile,
.product-card,
.order-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.hero-card {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-placeholder {
  width: 82%;
  aspect-ratio: 1.15 / 1;
  border-radius: 28px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-size: clamp(34px, 8vw, 74px);
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.22);
}

.section {
  padding: 28px 0 64px;
}

.section.muted {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.section h2 {
  font-size: clamp(26px, 4vw, 40px);
  margin: 0 0 10px;
}

.section-text,
.section-head p {
  color: var(--muted);
  max-width: 720px;
}

/* ABOUT */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.about-content {
  min-width: 0;
}

.about-video-wrap {
  width: 100%;
  min-width: 0;
}

.about-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #000;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.feature-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tile {
  padding: 24px;
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: #1e2621;
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  margin: 0 0 10px;
}

.card-body p {
  color: var(--muted);
  min-height: 84px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 14px;
  padding: 0 18px;
  font-weight: 700;
  cursor: pointer;
  border: 0;
}

.btn-primary {
  background: var(--accent);
  color: #101713;
}

.btn-secondary {
  background: var(--panel-2);
  color: var(--text);
  border: 1px solid var(--line);
}

.form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.order-form {
  padding: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.full-width {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--muted);
}

input,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(198, 212, 126, 0.7);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.map-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.messages {
  padding-top: 16px;
}

.message {
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.message.error {
  border-color: var(--danger);
}

.message.success {
  border-color: var(--accent);
}

.site-footer {
  padding: 24px 0 42px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .form-wrap,
  .contact-grid,
  .feature-grid,
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }
}

@media (max-width: 680px) {
  .hero-grid,
  .form-wrap,
  .contact-grid,
  .feature-grid,
  .card-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .section-head {
    display: block;
  }

  .about-video {
    border-radius: 16px;
  }
}

/* ABOUT GALLERY */
.about-gallery {
  margin-top: 24px;
}

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

.about-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--panel);
  min-height: 220px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.about-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.about-gallery-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(10, 14, 11, 0.72);
  backdrop-filter: blur(6px);
  font-size: 14px;
}

/* REVIEWS */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  padding: 24px;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel-2);
  flex-shrink: 0;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-name {
  margin: 0;
  font-size: 18px;
}

.review-role {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.review-text {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .about-gallery-grid,
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .about-gallery-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .about-gallery-item,
  .about-gallery-item img {
    min-height: 200px;
  }
}
