:root {
  --green-950: #10291c;
  --green-900: #173823;
  --green-700: #285b38;
  --earth: #8a5a34;
  --wheat: #d8aa3f;
  --cream: #f7f3e9;
  --paper: #fffdf8;
  --ink: #172018;
  --muted: #667164;
  --line: rgba(23, 32, 24, 0.14);
  --shadow: 0 22px 55px rgba(16, 41, 28, 0.16);
  --radius: 8px;
  --header-h: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--paper);
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--wheat);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--green-950);
  background: white;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  color: white;
  background: linear-gradient(to bottom, rgba(10, 24, 17, 0.68), rgba(10, 24, 17, 0.1));
  transition: background-color 240ms ease, box-shadow 240ms ease, height 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(16, 41, 28, 0.96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  width: clamp(110px, 10vw, 130px);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 88px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.35));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding-block: 10px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--wheat);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
  color: white;
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-slide {
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: slowZoom 12s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 26, 17, 0.72) 0%, rgba(9, 26, 17, 0.42) 43%, rgba(9, 26, 17, 0.18) 100%),
    linear-gradient(0deg, rgba(9, 26, 17, 0.48), rgba(9, 26, 17, 0.08) 42%);
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  padding: var(--header-h) 0 42px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--wheat);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(3rem, 6.4vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-content p:not(.eyebrow) {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 2.2vw, 1.46rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--green-950);
  background: var(--wheat);
}

.btn-secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary.dark {
  color: var(--green-950);
  border-color: var(--green-700);
  background: transparent;
}

.slider-controls {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 4vh, 32px);
  z-index: 4;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.slider-dot {
  width: 42px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--wheat);
}

.section {
  padding: clamp(70px, 9vw, 118px) 0;
}

.about {
  padding-top: clamp(58px, 7vw, 96px);
}

.section h2 {
  margin: 0;
  max-width: 760px;
  color: var(--green-950);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-copy > p:last-child,
.section-head {
  max-width: 780px;
}

.section-copy > p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.about { background: var(--paper); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.feature-grid {
  display: grid;
  gap: 16px;
}

.feature-card,
.product-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 36px rgba(16, 41, 28, 0.07);
}

.feature-card {
  padding: 26px;
}

.feature-mark {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--earth);
  font-weight: 900;
}

.feature-card h3,
.product-card h3 {
  margin: 0 0 8px;
  color: var(--green-950);
  font-size: 1.25rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.products {
  background:
    linear-gradient(180deg, rgba(216, 170, 63, 0.09), rgba(255, 255, 255, 0)),
    var(--cream);
}

.section-head {
  margin-bottom: 34px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-card ul {
  margin: 8px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.quality {
  color: white;
  background:
    linear-gradient(115deg, rgba(16, 41, 28, 0.96), rgba(40, 91, 56, 0.9)),
    url("duve.jpeg") center / cover;
}

.quality-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.quality h2 {
  color: white;
}

.quality-panel p:last-child {
  margin: 22px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
}

.quality-list {
  display: grid;
  gap: 12px;
}

.quality-list div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.quality-list strong,
.quality-list span {
  display: block;
}

.quality-list strong {
  margin-bottom: 6px;
  color: var(--wheat);
  font-size: 1.1rem;
}

.quality-list span {
  color: rgba(255, 255, 255, 0.84);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #e6e0d4;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.price-list {
  background: #f8f5ec;
}

.price-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: center;
}

.price-preview {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(16, 41, 28, 0.14);
  transition: transform 180ms ease;
}

.price-preview:hover {
  transform: scale(1.02);
}

.price-preview img {
  display: block;
  width: 100%;
  height: clamp(360px, 42vw, 540px);
  object-fit: cover;
}

.price-copy h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.price-copy p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.price-copy .price-updated {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 34px);
  font-style: normal;
}

.contact-card strong {
  color: var(--green-950);
  font-size: 1.16rem;
}

.contact-card a,
.contact-card span {
  color: var(--muted);
}

.map-section {
  width: 100vw;
  height: 30vh;
  min-height: 240px;
  margin-left: calc(50% - 50vw);
  background: var(--green-950);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.88) contrast(1.02);
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(160px, 0.6fr) minmax(210px, 0.8fr);
  gap: 32px;
  padding: 48px 0;
}

.footer-logo {
  width: min(310px, 80vw);
  height: 86px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 16px;
}

.footer-grid p {
  max-width: 430px;
  margin: 0;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--wheat);
}

.copyright {
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.9rem;
}

.fixed-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.fixed-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 160ms ease, opacity 160ms ease;
}

.fixed-button img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex: 0 0 auto;
}

.fixed-button:hover {
  opacity: 0.86;
  transform: scale(1.1);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 15, 11, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  font-size: 2rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowZoom {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.09);
  }
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .price-grid {
    grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(16, 41, 28, 0.98);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .about-grid,
  .quality-grid,
  .price-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quality-grid {
    align-items: stretch;
  }
}

@media (max-width: 620px) {
  .container,
  .hero-content {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    width: clamp(95px, 25vw, 110px);
  }

  .brand img {
    height: 50px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-bottom: 58px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 26, 17, 0.78), rgba(9, 26, 17, 0.38)),
      linear-gradient(0deg, rgba(9, 26, 17, 0.42), rgba(9, 26, 17, 0.1));
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 320px);
  }

  .btn {
    width: 100%;
  }

  .product-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .fixed-cta {
    right: 12px;
    bottom: 12px;
    gap: 12px;
  }

  .fixed-button {
    width: 38px;
    height: 38px;
  }

  .fixed-button img {
    width: 36px;
    height: 36px;
  }

  .price-preview img {
    height: min(430px, 78vw);
  }

  .price-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 320px);
  }
}

@media (max-width: 390px) {
  .header-inner {
    width: calc(100% - 24px);
    gap: 12px;
  }

  .brand {
    width: 96px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    font-size: 2.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
