:root {
  --text: #f3f5f8;
  --text-soft: #d7dde6;
  --surface: rgba(27, 33, 41, 0.72);
  --surface-soft: rgba(37, 45, 56, 0.62);
  --line: rgba(203, 214, 227, 0.28);
  --accent: #ffb84d;
  --accent-soft: #ffd79b;
  --shadow: 0 14px 30px rgba(3, 5, 9, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "PT Sans", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.5;
  background:
    linear-gradient(rgba(17, 22, 29, 0.66), rgba(13, 18, 25, 0.86)),
    url("file_00000000d2e8720aab5876bf8f48158d.png") center / cover fixed no-repeat;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(10, 14, 20, 0.84);
  border-bottom: 1px solid rgba(255, 184, 77, 0.28);
  backdrop-filter: blur(8px);
}

.topbar {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-logo {
  width: 168px;
  height: 168px;
  object-fit: contain;
  border-radius: 20px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 184, 77, 0.65);
  box-shadow: var(--shadow);
}

.brand-text p {
  margin: 0;
}

.brand-name {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-subtitle {
  margin-top: 6px;
  color: var(--accent-soft);
  font-size: 1.02rem;
}

.menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.menu a {
  text-decoration: none;
  color: #f2f5f9;
  font-weight: 700;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 180ms ease;
}

.menu a:hover {
  border-color: var(--accent);
}

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

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

.hero-content h1 {
  margin: 10px 0 14px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.1rem, 4.9vw, 3.8rem);
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-label {
  margin: 0;
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(255, 184, 77, 0.45);
  background: rgba(255, 184, 77, 0.12);
  padding: 6px 16px;
  color: #ffe2b1;
  font-weight: 700;
}

.hero-text {
  margin: 0;
  color: var(--text-soft);
  max-width: 58ch;
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #1a1310;
  background: linear-gradient(145deg, #ffc86f, #ffab37);
  box-shadow: 0 8px 22px rgba(255, 171, 55, 0.34);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  box-shadow: 0 8px 20px rgba(12, 17, 24, 0.35);
}

.button-disabled {
  opacity: 0.62;
  pointer-events: none;
}

.hero-media img {
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.section {
  padding: 44px 0;
}

.section > .container {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.section h2 {
  margin: 0 0 14px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section p {
  margin: 0;
  color: var(--text-soft);
}

.section-accent > .container {
  background: var(--surface-soft);
  border-color: rgba(255, 184, 77, 0.32);
}

.carousel {
  margin-top: 18px;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(10, 14, 20, 0.35);
}

.carousel-track {
  display: flex;
  transition: transform 750ms cubic-bezier(0.2, 0.75, 0.25, 1);
  will-change: transform;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.slide img.garden-photo {
  width: 80%;
  margin: 0 auto;
  object-fit: contain;
}

.service-slide img {
  aspect-ratio: 16 / 8;
}

.slide-caption {
  position: static;
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(255, 184, 77, 0.4);
  background: linear-gradient(rgba(8, 11, 16, 0.64), rgba(8, 11, 16, 0.86));
  border-top: none;
  padding: 12px 14px 13px;
}

.slide-caption h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.01em;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

.slide-caption p {
  margin: 6px 0 0;
  color: #d8e0eb;
}

.slide img.grill-5mm-photo {
  width: 70%;
  margin: 0 auto;
  object-fit: contain;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
  gap: 8px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 184, 77, 0.5);
  background: rgba(20, 27, 35, 0.86);
  color: #fff;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
}

.carousel-btn:hover {
  background: rgba(255, 184, 77, 0.2);
}

.buy-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gallery img {
  border-radius: 12px;
  border: 1px solid var(--line);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.site-footer {
  border-top: 1px solid rgba(255, 184, 77, 0.3);
  background: rgba(7, 10, 14, 0.88);
}

.footer-row {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #d0d7e2;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .buy-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar {
    min-height: 190px;
  }
}

@media (max-width: 720px) {
  .menu {
    display: none;
  }

  .topbar {
    min-height: 148px;
  }

  .brand-logo {
    width: 112px;
    height: 112px;
  }

  .hero {
    padding-top: 30px;
  }

  .section {
    padding: 30px 0;
  }

  .section > .container {
    padding: 18px;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .slide-caption {
    border-radius: 0 0 10px 10px;
  }

  .footer-row {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 10px 0;
  }
}
