:root {
  --green: #285824;
  --green-tint: rgba(40, 88, 36, 0.08);
  --text-main: #1A1A1A;
  --white: #FFFFFF;
  --container: 1120px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --shadow-soft: 0 18px 40px rgba(40, 88, 36, 0.18);
  --shadow-card: 0 10px 30px rgba(40, 88, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.icon {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.icon--badge {
  width: 14px;
  height: 14px;
}

.icon--xl {
  width: 28px;
  height: 28px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green);
  color: var(--white);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  z-index: 999;
}

.skip-link:focus {
  left: var(--space-2);
  top: var(--space-2);
}

.container {
  width: min(100%, calc(var(--container) + var(--space-4)));
  margin: 0 auto;
  padding: 0 var(--space-2);
}

.section {
  padding: var(--space-6) 0;
}

.section--light {
  background: var(--green-tint);
}

.why-trust {
  margin-top: var(--space-5);
  display: grid;
  gap: var(--space-4);
}

.why-trust .hero-stats {
  margin-bottom: var(--space-2);
}

.section-header {
  display: grid;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.section-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
}

.section-header p {
  margin: 0;
  max-width: 680px;
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(40, 88, 36, 0.14);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-2) 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
}

.logo img {
  height: 44px;
  width: clamp(120px, 30vw, 180px);
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

	  .nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--green);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--green);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green);
  margin: 4px auto;
  transition: transform 0.2s ease;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(40, 88, 36, 0.24);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

body.nav-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
}

body.nav-open {
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--green);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

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

.btn-primary:hover,
.btn-primary:focus {
  background: var(--green);
  border-color: var(--green);
  box-shadow: var(--shadow-card);
}

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

.btn-ghost {
  background: transparent;
  color: var(--green);
}

.btn-ghost:hover,
.btn-ghost:focus {
  background: var(--green-tint);
  border-color: var(--green);
  color: var(--green);
}

.hero {
  padding: var(--space-6) 0 var(--space-7);
  background: var(--green-tint);
}

.hero--fullscreen {
  position: relative;
  height: 100vh;
  min-height: 100svh;
  padding: 0;
  background-color: var(--green);
  background-image: url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29?auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}

.hero--fullscreen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(40, 88, 36, 0.92) 0%, rgba(40, 88, 36, 0.72) 55%, rgba(40, 88, 36, 0.42) 100%);
}

.hero--fullscreen > .container {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero--fullscreen .hero-content {
  max-width: 760px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-3);
}

.hero--fullscreen h1 {
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.05;
}

.hero--fullscreen p {
  font-size: clamp(16px, 2vw, 20px);
  max-width: 680px;
  color: rgba(255, 255, 255, 0.92);
}

.hero--fullscreen .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero--fullscreen .btn-ghost:hover,
.hero--fullscreen .btn-ghost:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.hero--page {
  position: relative;
  padding: 0;
  background-color: var(--green);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}

.hero--page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(40, 88, 36, 0.92) 0%, rgba(40, 88, 36, 0.72) 55%, rgba(40, 88, 36, 0.42) 100%);
}

.hero--page > .container {
  position: relative;
  z-index: 1;
  min-height: clamp(420px, 65vh, 620px);
  display: flex;
  align-items: center;
}

.hero--page .hero-content {
  max-width: 760px;
}

.hero--page p {
  font-size: clamp(16px, 1.8vw, 19px);
  max-width: 680px;
  color: rgba(255, 255, 255, 0.92);
}

.hero--page .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero--page .btn-ghost:hover,
.hero--page .btn-ghost:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.hero--about {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=2000&q=80");
}

.hero--services {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=2000&q=80");
}

.hero--gallery {
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?auto=format&fit=crop&w=2000&q=80");
}

.hero--projects {
  background-image: url("https://images.unsplash.com/photo-1581090700227-1e37b190418e?auto=format&fit=crop&w=2000&q=80");
}

.hero--contact {
  background-image: url("https://images.unsplash.com/photo-1521791055366-0d553872125f?auto=format&fit=crop&w=2000&q=80");
}

.hero--fullscreen .stat,
.hero--page .stat {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-2);
}

.hero--fullscreen .stat-number,
.hero--page .stat-number {
  color: var(--white);
  font-size: 22px;
}

.hero--fullscreen .stat-label,
.hero--page .stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  align-items: center;
}

.hero h1 {
  margin: 0 0 var(--space-2);
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.08;
}

.hero p {
  margin: 0 0 var(--space-3);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.stat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  box-shadow: var(--shadow-card);
}

.stat-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
}

.stat-label {
  display: block;
  font-size: 14px;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green);
  box-shadow: var(--shadow-soft);
  min-height: 420px;
  display: grid;
  align-items: center;
  justify-items: center;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.08) 0,
    rgba(255, 255, 255, 0.08) 2px,
    transparent 2px,
    transparent 8px
  );
}

.hero-visual img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-md);
  width: min(100%, 420px);
  box-shadow: var(--shadow-card);
}

.hero-badge {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  background: var(--white);
  color: var(--green);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
}

.trust-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  border: 1px solid rgba(40, 88, 36, 0.14);
}

.trust-item span {
  display: block;
  font-weight: 600;
  color: var(--green);
  margin-bottom: var(--space-1);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-3);
}

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

.card-grid--xl {
  gap: var(--space-4);
}

.card-grid--xl .card {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
}

.card-grid--xl .card-media {
  height: 200px;
  border-radius: var(--radius-md);
}

.card-grid--xl .card h3 {
  font-size: 22px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  border: 1px solid rgba(40, 88, 36, 0.14);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: var(--space-2);
}

.card-media {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.card h3 {
  margin: 0;
  font-size: 20px;
}

.card ul {
  margin: 0;
  padding-left: 18px;
}

.card li {
  margin-bottom: 6px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
}

.process-step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  border: 1px solid rgba(40, 88, 36, 0.14);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-2);
}

.gallery-item {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(40, 88, 36, 0.14);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item span {
  position: absolute;
  inset: auto 0 0 0;
  background: rgba(0, 0, 0, 0.62);
  color: var(--white);
  padding: 10px 14px;
  font-size: 14px;
}

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

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(40, 88, 36, 0.14);
  box-shadow: var(--shadow-card);
  display: grid;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.project-body {
  padding: var(--space-4);
  display: grid;
  gap: var(--space-1);
}

.project-body h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.project-body p {
  margin: 0;
  color: #444;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  align-items: center;
}

.highlight-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(40, 88, 36, 0.14);
}

.highlight-list {
  display: grid;
  gap: var(--space-2);
  padding: 0;
  margin: 0;
  list-style: none;
}

.highlight-list li {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
}

.highlight-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 2px;
  background: var(--green);
  flex-shrink: 0;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-3);
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(40, 88, 36, 0.14);
  box-shadow: var(--shadow-card);
  display: grid;
}

.testimonial-media {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.testimonial-body {
  padding: var(--space-3);
}

.testimonial-quote {
  margin: 0 0 var(--space-2);
  padding: 0;
  color: var(--text-main);
  font-style: normal;
}

.testimonial-author {
  display: grid;
  gap: 2px;
}

.testimonial-name {
  font-weight: 700;
  color: var(--green);
}

.testimonial-type {
  color: #555;
  font-size: 14px;
}

.testimonials--quotes {
  gap: var(--space-4);
}

@media (min-width: 981px) {
  .testimonials--quotes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.testimonials--quotes .testimonial-body {
  padding: var(--space-4);
  position: relative;
}

.testimonials--quotes .testimonial-body::before {
  content: "“";
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 60px;
  line-height: 1;
  font-weight: 700;
  color: rgba(40, 88, 36, 0.18);
  pointer-events: none;
}

.testimonials--quotes .testimonial-quote {
  font-size: 16px;
  line-height: 1.6;
  margin: 18px 0 var(--space-3);
}

.testimonials--quotes .testimonial-author {
  border-top: 1px solid rgba(40, 88, 36, 0.14);
  padding-top: var(--space-2);
}

.testimonial > p {
  margin: 0 0 var(--space-2);
  color: var(--text-main);
}

.testimonial > span {
  font-weight: 700;
  color: var(--green);
}

.cta-banner {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.cta-banner p {
  margin: 0;
}

.cta-banner .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.cta-banner .btn-ghost:hover,
.cta-banner .btn-ghost:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-banner-title {
  margin: 0 0 8px;
  font-size: 22px;
}

.section-header--center {
  text-align: center;
  justify-items: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.coverage-list {
  list-style: none;
  padding: 0;
  margin: var(--space-2) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.coverage-list li {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-tint);
  border: 1px solid rgba(40, 88, 36, 0.22);
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}

.form {
  display: grid;
  gap: var(--space-2);
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(40, 88, 36, 0.3);
  font: inherit;
  background: var(--white);
  color: var(--text-main);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 2px solid var(--green);
  border-color: var(--green);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: var(--space-5);
  align-items: start;
}

.contact-sidebar {
  display: grid;
  gap: var(--space-3);
}

.contact-card--form .btn-primary {
  width: 100%;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  border: 1px solid rgba(40, 88, 36, 0.14);
  box-shadow: var(--shadow-card);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-2);
}

.map-placeholder {
  background: linear-gradient(135deg, var(--green-tint), var(--white));
  border-radius: var(--radius-lg);
  min-height: 320px;
  border: 1px solid rgba(40, 88, 36, 0.14);
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--space-3);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--green);
  background: var(--white);
  color: var(--green);
  font-weight: 600;
}

.site-footer {
  background: var(--green);
  color: var(--white);
  padding: var(--space-5) 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.site-footer .footer-logo img {
  filter: brightness(0) invert(1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-4);
}

.footer-grid h4 {
  margin: 0 0 var(--space-2);
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-1);
}

.footer-grid a {
  color: var(--white);
}

.footer-bottom {
  margin-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--space-3);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal[data-reveal="left"] {
  transform: translateX(-24px);
}

.reveal[data-reveal="right"] {
  transform: translateX(24px);
}

.reveal.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(40, 88, 36, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 200;
  padding: var(--space-3);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  background: var(--white);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  max-width: 900px;
  width: min(100%, 900px);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.lightbox-content img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.lightbox-caption {
  margin-top: var(--space-2);
  font-weight: 600;
  color: var(--green);
}

.lightbox-close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

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

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .nav-links {
    position: fixed;
    inset: 80px var(--space-2) auto var(--space-2);
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-3);
	    border: 1px solid rgba(40, 88, 36, 0.14);
	    box-shadow: var(--shadow-card);
	    display: none;
	  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    width: 100%;
    padding: 0 var(--space-2);
    border-radius: var(--radius-sm);
  }

  .nav-links a:hover,
  .nav-links a:focus {
    background: var(--green-tint);
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-actions {
    gap: var(--space-1);
  }
}

@media (max-width: 720px) {
  .hero {
    padding: var(--space-5) 0 var(--space-6);
  }

  .section {
    padding: var(--space-5) 0;
  }

  .cta-banner {
    padding: var(--space-4);
  }

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

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

  .card-grid--3 {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo img {
    height: 40px;
    width: clamp(120px, 40vw, 140px);
  }

  .footer-logo img {
    height: 40px;
    max-width: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  .reveal {
    transition: none;
  }

  .gallery-item img {
    transition: none;
  }

  .project-card {
    transition: none;
  }

  .project-card:hover {
    transform: none;
  }
}

/* ===== MOBILE STICKY CTA BAR ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green);
  z-index: 150;
  box-shadow: 0 -4px 20px rgba(40, 88, 36, 0.25);
}

.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  border: none;
  transition: background 0.2s ease;
}

.mobile-cta-bar a:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.mobile-cta-bar a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.mobile-cta-bar svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
  }

  body {
    padding-bottom: 60px;
  }

  .site-footer {
    padding-bottom: calc(var(--space-5) + 60px);
  }
}

/* ===== ENHANCED GALLERY CARDS ===== */
.gallery-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(40, 88, 36, 0.14);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.gallery-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-card-image img {
  transform: scale(1.05);
}

.gallery-card-badge {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.gallery-card-content {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}

.gallery-card-title {
  margin: 0 0 var(--space-1);
  font-size: 18px;
  color: var(--green);
}

.gallery-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
  font-size: 14px;
  color: #666;
}

.gallery-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gallery-card .btn {
  width: 100%;
  margin-top: auto;
}

/* ===== FORM IMPROVEMENTS ===== */
.form-note {
  font-size: 13px;
  color: #666;
  margin-top: var(--space-2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-note svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.form label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
}

.form label small {
  font-weight: 400;
  color: #666;
}

/* ===== URGENCY BANNER ===== */
.urgency-note {
  background: var(--green-tint);
  border: 1px solid var(--green);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  margin-bottom: var(--space-3);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.urgency-note strong {
  color: var(--green);
}

/* ===== GALLERY IMPROVEMENTS ===== */

/* Popis karty */
.gallery-card-desc {
  font-size: 14px;
  color: #555;
  margin: 0 0 var(--space-2);
  line-height: 1.5;
}

/* Sticky filtr chipy */
.chips-wrapper {
  position: sticky;
  top: 70px;
  z-index: 50;
  background: var(--white);
  padding: var(--space-2) 0;
  margin: 0 calc(-1 * var(--space-2));
  padding-left: var(--space-2);
  padding-right: var(--space-2);
  margin-bottom: var(--space-3);
}

.chips {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-2);
  overflow-x: auto;
  padding-bottom: var(--space-1);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.chips::-webkit-scrollbar {
  display: none;
}

.chip {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--green);
  background: var(--white);
  color: var(--green);
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chip:hover,
.chip--active {
  background: var(--green);
  color: var(--white);
}

/* Inline CTA */
.inline-cta {
  background: var(--green-tint);
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin: var(--space-4) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.inline-cta-content {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.inline-cta-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

.inline-cta-content strong {
  display: block;
  font-size: 18px;
  color: var(--green);
  margin-bottom: 4px;
}

.inline-cta-content p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* Gallery Testimonial */
.gallery-testimonial {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin: var(--space-5) 0;
  position: relative;
  text-align: center;
}

.gallery-testimonial::before {
  content: "„";
  position: absolute;
  top: var(--space-3);
  left: var(--space-4);
  font-size: 60px;
  line-height: 1;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.gallery-testimonial p {
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 var(--space-3);
  font-style: italic;
}

.gallery-testimonial cite {
  font-style: normal;
  display: block;
}

.gallery-testimonial cite strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.gallery-testimonial cite span {
  font-size: 14px;
  opacity: 0.8;
}

/* Ověřeno badge */
.gallery-card-badge {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  background: var(--green);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

/* Mobile improvements */
@media (max-width: 768px) {
  .chips-wrapper {
    top: 60px;
  }

  .gallery-card .btn {
    padding: 14px 20px;
    font-size: 15px;
  }

  .inline-cta {
    flex-direction: column;
    text-align: center;
  }

  .inline-cta-content {
    flex-direction: column;
    align-items: center;
  }

  .gallery-testimonial {
    padding: var(--space-4);
  }

  .gallery-testimonial p {
    font-size: 17px;
  }

  .gallery-testimonial::before {
    display: none;
  }
}
