:root {
  --green-dark: #1f5b3a;
  --green: #2d7c4f;
  --header-bg: #ffffff;
  --header-text: #171717;
  --orange: #ff4b0f;
  --yellow: #f5bf2f;
  --bg: #f7faf7;
  --text: #263027;
  --muted: #647067;
  --card: #ffffff;
  --border: #dce6dc;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

a { color: inherit; }

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--header-bg);
  color: var(--header-text);
  padding: .9rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.branding {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(0,0,0,0.04);
}

.brand { margin: 0; font-size: 1.2rem; font-weight: 700; }
.contact-mini { margin: .2rem 0 0; font-size: .92rem; opacity: .95; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243,241,232,.96);
  border-bottom: 1px solid #d7d2c3;
  backdrop-filter: blur(6px);
}


.nav-shell {
  display: flex;
  flex-direction: column;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.7);
  color: #101010;
  padding: .65rem .8rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  position: absolute;
  left: 0;
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.nav-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
  padding: .85rem 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #101010;
}

.content { padding: 2rem 0 3.5rem; }

.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: #1a1a1a;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  padding: .72rem 1.2rem;
  cursor: pointer;
}

.btn-secondary {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  padding: .62rem 1.1rem;
}

.hero {
  background:
    linear-gradient(rgba(20, 52, 35, .58), rgba(20, 52, 35, .58)),
    url('/images/banner-header.jpg') center/cover no-repeat,
    url('/images/home-hero-background.jpg') center/cover no-repeat;
  border-radius: 18px;
  padding: 4.2rem 2rem;
  min-height: 420px;
  color: #fff;
  text-align: center;
  display: grid;
  place-content: center;
}

.hero h1 {
  margin: .6rem auto 1rem;
  max-width: 850px;
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  line-height: 1.2;
}

.hero .eyebrow {
  margin: 0;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.section {
  margin-top: 2rem;
}

.section h1,
.section h2,
.section h3 {
  color: var(--green-dark);
  line-height: 1.25;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.4rem;
  align-items: center;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.2rem;
}

.highlight { color: var(--orange); }

.image-panel {
  min-height: 260px;
  border-radius: 14px;
  background: #edf3ed;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-panel img {
  max-width: 100%;
  border-radius: 12px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery figure {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.gallery img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.gallery figcaption { padding: .7rem; font-size: .9rem; color: var(--muted); }

.check-list { padding-left: 1.2rem; }
.check-list li { margin-bottom: .45rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: .65rem;
}


.contact-side {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #cfd8cf;
  border-radius: 10px;
  padding: .7rem;
  font: inherit;
}

.footer {
  background: #ffffff;
  color: var(--text);
  border-top: 1px solid var(--border);
  padding: 0 0 2.6rem;
}

.footer-branding {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.footer-branding-inner {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.footer-brand-name {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-menu-wrap {
  padding: 1.2rem 0 1rem;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
}

.footer-menu a {
  text-decoration: none;
  font-weight: 600;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}


@media (min-width: 901px) {
  .desktop-hide-link {
    display: none;
  }
}

@media (max-width: 900px) {
  .two-col,
  .contact-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .topbar-inner { flex-direction: column; align-items: flex-start; }

  .menu-toggle {
    display: flex;
    margin: .65rem 0;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
    padding-top: 0;
  }

  .nav-links.is-open {
    display: flex;
    padding: 0 0 .75rem;
  }

  .nav-links a {
    width: 100%;
    padding: .45rem 0;
  }
}

.contact-image {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-image img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.product-card-body {
  padding: .9rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}

.product-card-body h3,
.product-card-body p {
  margin: 0;
}

.product-card-body > p:first-of-type {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  min-height: calc(1.6em * 3);
}

.product-card-body .btn-primary {
  margin-top: auto;
  align-self: flex-start;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
}

.product-vat {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .5rem;
}

.gallery-thumb {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.image-modal {
  border: 0;
  border-radius: 14px;
  max-width: min(840px, 94vw);
  width: 100%;
  padding: 1rem;
}

.image-modal::backdrop {
  background: rgba(0, 0, 0, .62);
}

.image-modal img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

.modal-close {
  border: 0;
  background: #f0f0f0;
  border-radius: 999px;
  width: 34px;
  height: 34px;
  font-size: 1.1rem;
  cursor: pointer;
  float: right;
}

.form-card {
  max-width: 860px;
}

.order-form {
  display: grid;
  gap: .65rem;
}

.order-form input,
.order-form select,
.order-form textarea {
  border: 1px solid #cfd8cf;
  border-radius: 10px;
  padding: .7rem;
  font: inherit;
}

.two-col-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}

.validation {
  color: #aa1e12;
  font-size: .9rem;
}

.confirmation-card {
  max-width: 740px;
}

@media (max-width: 900px) {
  .two-col-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
  }

  .order-form {
    overflow-x: hidden;
  }
}
