body {
  background-color: #fdfdfc;
  background-image: linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    radial-gradient(1200px circle at 16% 14%, rgba(45, 134, 89, 0.05), transparent 52%),
    radial-gradient(1100px circle at 82% 8%, rgba(17, 17, 17, 0.04), transparent 48%),
    linear-gradient(135deg, rgba(45, 134, 89, 0.045), rgba(255, 255, 255, 0.94));
  background-size: 240px 240px, 240px 240px, auto, auto, auto;
  background-repeat: repeat, repeat, no-repeat, no-repeat, no-repeat;
}

/* Hero Banner Mobile Adjustments */
@media (max-width: 768px) {
  .top-banner.fullheight {
    min-height: 50vh !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .top-banner.big.fullheight {
    min-height: 50vh !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .top-banner.project-details-hero {
    min-height: 50vh !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .top-banner .top-banner-video {
    object-fit: cover;
  }

  /* Ensure background images are properly sized on mobile */
  .top-banner[style*="background-image"] {
    background-size: cover !important;
    background-position: center !important;
  }
}

.gh-home {
  --gh-accent: #2d8659;
  --gh-text: #111111;
  --gh-muted: #6a6a6a;
  background: radial-gradient(140% 110% at 12% 12%, rgba(45, 134, 89, 0.04), transparent 46%),
    radial-gradient(120% 90% at 84% 6%, rgba(17, 17, 17, 0.03), transparent 42%);
}

.gh-section {
  padding: 50px 0;
  background-color: #ffffff;
}

.gh-section.gh-features {
  background: linear-gradient(180deg, rgba(45, 134, 89, 0.04) 0%, rgba(255, 255, 255, 0.96) 64%);
}

.gh-section.gh-location {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.02) 0%, rgba(255, 255, 255, 0.96) 70%);
}

.gh-section.gh-cta {
  background: radial-gradient(120% 120% at 18% 4%, rgba(45, 134, 89, 0.05), transparent 40%),
    linear-gradient(135deg, rgba(17, 17, 17, 0.025), rgba(255, 255, 255, 0.98));
}

.gh-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gh-section__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.gh-section__title {
  margin: 0;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--gh-text);
}

.gh-section__subtitle {
  margin: 0;
  max-width: 760px;
  color: var(--gh-muted);
  font-size: 16px;
  line-height: 1.7;
}

.gh-features__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.gh-feature-card {
  background: #f7f7f7;
  border: 1px solid #ededed;
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 48px -32px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gh-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px -36px rgba(0, 0, 0, 0.38);
}

.gh-feature-card__icon {
  width: 48px;
  height: 48px;
  color: var(--gh-accent);
}

.gh-feature-card__icon svg {
  width: 100%;
  height: 100%;
}

.gh-feature-card__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  color: var(--gh-text);
}

.gh-feature-card__text {
  margin: 0;
  color: #3c3c3c;
  font-size: 15px;
  line-height: 1.6;
}

.gh-location__grid {
  display: grid;
  gap: 48px;
  align-items: stretch;
}

.gh-location__copy {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gh-location__list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 12px;
}

.gh-location__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--gh-text);
}

.gh-location__bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gh-accent);
  box-shadow: 0 0 0 6px rgba(45, 134, 89, 0.14);
  flex-shrink: 0;
}

.gh-map__frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #f1f1f1;
  box-shadow: 0 24px 60px -34px rgba(0, 0, 0, 0.4);
  min-height: 380px;
}

.gh-map__embed {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.gh-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px;
  border-radius: 18px;
  border: 1px solid #e8e8e8;
  background: linear-gradient(135deg, rgba(45, 134, 89, 0.1), rgba(17, 17, 17, 0.05));
  box-shadow: 0 22px 62px -36px rgba(0, 0, 0, 0.42);
}

.gh-cta__title {
  margin: 0;
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -0.4px;
  color: var(--gh-text);
}

.gh-cta__subtitle {
  margin: 10px 0 0;
  color: #3c3c3c;
  font-size: 15px;
  line-height: 1.6;
}

.gh-cta__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.gh-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.gh-cta__btn--primary {
  background: var(--gh-accent);
  color: #ffffff;
  border: 1px solid var(--gh-accent);
  box-shadow: 0 14px 28px -18px rgba(45, 134, 89, 0.65);
}

.gh-cta__btn--primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 16px 34px -16px rgba(45, 134, 89, 0.72);
}

.gh-cta__btn--secondary {
  background: transparent;
  color: var(--gh-accent);
  border: 1px solid rgba(45, 134, 89, 0.4);
}

.gh-cta__btn--secondary:hover {
  border-color: var(--gh-accent);
  color: var(--gh-accent);
  background: rgba(45, 134, 89, 0.08);
}

/* Project cards */
.prague_list.no-figure .project-list-item .project-list-outer {
  background: #fbfbfa;
  position: relative;
}

.prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-content {
  position: relative;
  isolation: isolate;
}

.prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-content::before {
  content: '';
  position: absolute;
  inset: 18px 20px;
  background-image: linear-gradient(90deg, rgba(45, 134, 89, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px);
  background-size: 140px 140px;
  border-radius: 12px;
  pointer-events: none;
  z-index: 0;
}

.prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-content > * {
  position: relative;
  z-index: 1;
}

.prague_list .project-info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 12px 0;
  align-items: center;
}

.prague_list .project-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  font-size: 11px;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: #1f1f1f;
  background: rgba(45, 134, 89, 0.05);
  border: 1px solid rgba(45, 134, 89, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 36px -28px rgba(0, 0, 0, 0.4);
}

.prague_list .project-chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #2d8659;
  box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.12);
  flex-shrink: 0;
}

.prague_list .project-location {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 14px 0;
}

.prague_list .project-location__icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(45, 134, 89, 0.08);
  color: #2d8659;
  box-shadow: inset 0 0 0 1px rgba(45, 134, 89, 0.16);
  flex-shrink: 0;
  margin-top: 2px;
}

.prague_list .project-location__icon svg {
  width: 12px;
  height: 12px;
}

.prague_list .project-location__text {
  color: #333333;
  line-height: 1.6;
  flex: 1;
}

.prague_list .project-meta-divider {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.03), rgba(17, 17, 17, 0.08));
  margin: 0 0 14px 0;
  opacity: 0.6;
}

/* Desktop: Refined typography for project cards */
.prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px 0;
  color: #111111;
  transition: color 0.2s ease;
}

.prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-title:hover {
  color: #2d8659;
}

.prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-excerpt {
  margin: 0 0 16px 0;
  color: #6a6a6a;
  line-height: 1.65;
  font-size: 15px;
  font-weight: 400;
}

.prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-excerpt p {
  margin: 0;
  color: inherit;
  line-height: inherit;
}

.gh-project-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-size: 14px;
  letter-spacing: 0.02em;
  font-weight: 600;
  line-height: 1.4;
  color: #2d8659;
  text-transform: none;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 0;
}

.gh-project-cta .gh-project-cta__label {
  display: inline-block;
}

.gh-project-cta .arrow-right {
  position: relative;
  top: auto;
  right: auto;
  margin-top: 0;
  width: 20px;
  height: 2px;
  background-color: #2d8659;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.gh-project-cta .arrow-right:before, 
.gh-project-cta .arrow-right:after {
  content: '';
  position: absolute;
  right: 0;
  width: 6px;
  height: 2px;
  background-color: #2d8659;
  border-radius: 1px;
}

.gh-project-cta .arrow-right:before {
  top: -2px;
  transform: rotate(45deg);
  transform-origin: right center;
}

.gh-project-cta .arrow-right:after {
  bottom: -2px;
  transform: rotate(-45deg);
  transform-origin: right center;
}

.gh-project-cta:hover {
  color: #1f5d3f;
}

.gh-project-cta:hover .arrow-right {
  transform: translateX(3px);
}

@media (max-width: 991px) {
  .gh-section__title {
    font-size: 34px;
  }

  .gh-features__grid {
    gap: 24px;
  }

  .gh-location__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gh-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  /* Global mobile adjustments */
  .gh-section {
    padding: 32px 0;
  }

  .gh-container {
    padding: 0 16px;
  }

  .gh-section__title {
    font-size: 22px;
    line-height: 1.3;
  }

  .gh-section__header {
    margin-bottom: 24px;
  }

  .gh-section__subtitle {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Projects Section - Reduce top spacing */
  .margin-lg-20t.margin-sm-30t {
    margin-top: 16px !important;
    padding-top: 0 !important;
  }

  .margin-lg-20t.margin-sm-30t .container {
    padding-top: 0 !important;
  }

  /* Projects section heading */
  .margin-lg-20t.margin-sm-30t .heading {
    padding: 0 0 12px 0 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }

  /* Remove any gap between heading and projects list */
  .margin-lg-20t.margin-sm-30t .no-padd-left.no-padd-right {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .margin-lg-20t.margin-sm-30t .heading .subtitle {
    font-size: 11px;
    letter-spacing: 2.5px;
    margin-bottom: 6px;
    line-height: 1.4;
  }

  .margin-lg-20t.margin-sm-30t .heading .title {
    font-size: 20px;
    line-height: 1.3;
    margin: 0;
  }

  /* Remove excessive margins */
  .margin-lg-20b {
    margin-bottom: 0 !important;
  }

  .margin-lg-20t:not(.margin-sm-30t) {
    margin-top: 16px !important;
  }

  .gh-features__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gh-feature-card {
    padding: 20px;
  }

  .gh-feature-card__title {
    font-size: 18px;
  }

  .gh-feature-card__text {
    font-size: 14px;
  }

  .gh-map__embed {
    height: 260px;
  }

  /* Map section - fix background and spacing */
  .gh-section.gh-location {
    padding: 24px 0 24px;
    background: transparent !important;
    margin-top: 0;
    margin-bottom: 0;
  }

  .gh-section.gh-location .gh-container {
    padding: 0 16px;
  }

  .gh-section.gh-location .gh-location__grid {
    margin: 0;
    gap: 0;
  }

  .gh-section.gh-location .gh-map__frame {
    border-radius: 18px;
    overflow: hidden;
    min-height: 260px;
    background: #E5E7EB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin: 0;
  }

  .gh-section.gh-location .gh-map__embed {
    display: block;
    width: 100%;
    height: 260px;
    border: 0;
    margin: 0;
  }

  /* Ensure no white stripe - match page background */
  .gh-home .gh-section.gh-location {
    background: transparent !important;
    padding-bottom: 24px;
  }

  /* CTA section */
  .gh-section.gh-cta {
    padding: 32px 0;
    margin-bottom: 0;
  }

  .gh-cta__inner {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .gh-cta__title {
    font-size: 20px;
    line-height: 1.3;
  }

  .gh-cta__subtitle {
    font-size: 13px;
    margin-top: 8px;
    line-height: 1.5;
  }

  .gh-cta__actions {
    width: 100%;
    flex-direction: column;
  }

  .gh-cta__btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Project cards mobile - Single column vertical list */
  /* Override row behavior to ensure single column - must override Bootstrap */
  .no-padd-left.no-padd-right .row.prague_list,
  .no-padd-left.no-padd-right .wrapper .row.prague_list {
    display: flex !important;
    flex-direction: column !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    flex-wrap: nowrap !important;
  }

  .no-padd-left.no-padd-right .row.prague_list > [class*="col-"],
  .no-padd-left.no-padd-right .wrapper .row.prague_list > [class*="col-"],
  .no-padd-left.no-padd-right .row.prague_list > .project-list-item,
  .no-padd-left.no-padd-right .wrapper .row.prague_list > .project-list-item {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    float: none !important;
  }

  .prague_list.no-figure {
    padding: 0 16px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin: 0 !important;
    margin-top: 0 !important;
  }

  .prague_list.no-figure .project-list-item {
    margin-bottom: 0;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .prague_list.no-figure .project-list-item .project-list-outer {
    width: 100%;
    background: #FFFFFF;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    padding: 0;
    margin: 0;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper {
    flex-direction: column !important;
    min-height: auto;
    gap: 0;
    display: flex;
  }

  .prague_list.no-figure .project-list-item:nth-child(even) .project-list-outer .project-list-wrapper {
    flex-direction: column !important;
  }

  /* Project image - full width, top rounded, real building photos */
  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-img {
    width: 100% !important;
    min-height: 240px !important;
    max-height: 280px !important;
    height: 240px !important;
    position: relative !important;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    background: #f5f5f5;
    display: block !important;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
  }

  .prague_list.no-figure .project-list-item:nth-child(even) .project-list-outer .project-list-wrapper .project-list-img {
    border-radius: 18px 18px 0 0;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-img img,
  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-img img.s-img-switch {
    width: 100% !important;
    height: 100% !important;
    min-height: 240px !important;
    object-fit: cover !important;
    object-position: center;
    display: block !important;
    border-radius: 0;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0;
    padding: 0;
  }

  /* Ensure images are visible and cover the container */
  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-img img[data-lazy-src] {
    /* Lazy loading script will handle this */
  }

  /* Hide placeholder background when image exists - use opacity trick */
  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-img {
    background: #f5f5f5;
  }

  /* When image loads, it will cover the background */
  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-img img {
    background: transparent;
    z-index: 1;
  }

  /* Project content - refined padding, left-aligned, airy spacing */
  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-content {
    width: 100% !important;
    padding: 12px 16px 18px 16px;
    text-align: left !important;
    margin: 0;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-content::before {
    display: none;
  }

  /* Project title - larger, bolder, clear hierarchy */
  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 8px 0;
    color: #111111;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-title a {
    color: inherit;
    text-decoration: none;
  }

  /* Info chips - compact meta line, closer to title */
  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-info-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0 0 12px 0;
    justify-content: flex-start;
    align-items: center;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-chip {
    padding: 4px 9px;
    font-size: 10px;
    line-height: 1.3;
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-chip__dot {
    width: 5px;
    height: 5px;
    box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.12);
  }

  /* Location/Address - readable, few lines max */
  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-location {
    font-size: 14px;
    margin: 0 0 14px 0;
    line-height: 1.6;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #333333;
    font-weight: 500;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-location__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-location__icon svg {
    width: 12px;
    height: 12px;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-location__text {
    flex: 1;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Divider - subtle separator */
  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-meta-divider {
    margin: 0 0 14px 0;
    height: 1px;
    opacity: 0.15;
  }

  /* Excerpt - one concise sentence, lighter color */
  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-excerpt {
    font-size: 13px;
    line-height: 1.65;
    margin: 0 0 16px 0;
    color: #6a6a6a;
    text-align: left;
    font-weight: 400;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-excerpt p {
    margin: 0;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* CTA - modern, minimalist, prominent action */
  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .gh-project-cta,
  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-link.gh-project-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #2d8659;
    text-decoration: none;
    margin: 0;
    padding: 10px 0;
    min-height: 40px;
    text-align: left;
    align-self: flex-start;
    transition: all 0.2s ease;
    position: relative;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .gh-project-cta .gh-project-cta__label {
    display: inline-block;
    line-height: 1.4;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .gh-project-cta .arrow-right {
    width: 20px;
    height: 2px;
    background-color: #2d8659;
    position: relative;
    transition: transform 0.2s ease;
    flex-shrink: 0;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .gh-project-cta .arrow-right:before,
  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .gh-project-cta .arrow-right:after {
    content: '';
    position: absolute;
    right: 0;
    width: 6px;
    height: 2px;
    background-color: #2d8659;
    border-radius: 1px;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .gh-project-cta .arrow-right:before {
    top: -2px;
    transform: rotate(45deg);
    transform-origin: right center;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .gh-project-cta .arrow-right:after {
    bottom: -2px;
    transform: rotate(-45deg);
    transform-origin: right center;
  }

  /* CTA hover/active states */
  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .gh-project-cta:hover,
  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .gh-project-cta:active {
    color: #1f5d3f;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .gh-project-cta:hover .arrow-right {
    transform: translateX(3px);
  }

  /* Wrapper adjustments for projects */
  .no-padd-left.no-padd-right {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .no-padd-left.no-padd-right .wrapper {
    padding: 0;
  }

  /* Ensure projects list is full width with proper container padding */
  .no-padd-left.no-padd-right .prague_list {
    width: 100% !important;
    margin: 0 !important;
    max-width: 100% !important;
  }

  /* Override any Bootstrap column classes that might interfere */
  .container .row.prague_list .project-list-item[class*="col-"] {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* Remove any blank placeholders or empty boxes */
  .prague_list.no-figure .project-list-item .project-list-outer:empty,
  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper:empty {
    display: none;
  }
}

@media (max-width: 480px) {
  .gh-section {
    padding: 24px 0;
  }

  .gh-container {
    padding: 0 16px;
  }

  .gh-section__title {
    font-size: 20px;
  }

  /* Projects section - even tighter spacing */
  .margin-lg-20t.margin-sm-30t {
    margin-top: 20px !important;
  }

  .margin-lg-20t.margin-sm-30t .heading {
    padding: 0 0 12px 0;
  }

  .margin-lg-20t.margin-sm-30t .heading .title {
    font-size: 18px;
  }

  /* Project cards - smaller on very small screens */
  .prague_list.no-figure {
    gap: 12px;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-img {
    min-height: 200px;
    max-height: 240px;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-content {
    padding: 12px 14px 16px 14px;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 8px 0;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-info-chips {
    margin: 0 0 10px 0;
    gap: 4px;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-chip {
    padding: 3px 8px;
    font-size: 9px;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-location {
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 12px 0;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-meta-divider {
    margin: 0 0 12px 0;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .project-list-excerpt {
    font-size: 12px;
    line-height: 1.65;
    margin: 0 0 14px 0;
    color: #6a6a6a;
  }

  .prague_list.no-figure .project-list-item .project-list-outer .project-list-wrapper .gh-project-cta {
    font-size: 13px;
    padding: 9px 0;
    min-height: 38px;
  }

  /* Map - smaller on very small screens */
  .gh-section.gh-location {
    padding: 20px 0 20px;
  }

  .gh-section.gh-location .gh-map__frame {
    min-height: 240px;
  }

  .gh-section.gh-location .gh-map__embed {
    height: 240px;
  }

  /* CTA - smaller */
  .gh-section.gh-cta {
    padding: 24px 0;
  }

  .gh-cta__title {
    font-size: 18px;
  }

  .gh-cta__subtitle {
    font-size: 12px;
  }
}

/* Premium Hero Intro Section */
.gh-hero-intro {
  padding: 60px 20px;
  margin-top: 40px;
}

.gh-hero-intro__container {
  max-width: 1200px;
  margin: 0 auto;
}

.gh-hero-intro__content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
  position: relative;
  background-image: url('../img/buildings/footer.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 18px;
  padding: 42px 52px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.gh-hero-intro__content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1;
}

.gh-hero-intro__left,
.gh-hero-intro__right {
  position: relative;
  z-index: 2;
}

.gh-hero-intro__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gh-hero-intro__title {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.96);
  margin: 0;
  letter-spacing: -0.03em;
}

.gh-hero-intro__lead {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.96);
  margin: 0;
  max-width: 680px;
}

.gh-hero-intro__right {
  padding-top: 6px;
}

.gh-hero-intro__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gh-hero-intro__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.96);
}

.gh-hero-intro__check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #46c96b;
  stroke-width: 2.5;
}

.gh-hero-intro__feature-item span {
  flex: 1;
}

/* SEO Sections */
.gh-seo-sections {
  padding: 30px 0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .gh-hero-intro__content {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 38px 42px;
  }

  .gh-hero-intro__title {
    font-size: 32px;
  }

  .gh-hero-intro__lead {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .gh-hero-intro {
    padding: 32px 15px;
    margin-top: 30px;
  }

  .gh-hero-intro__content {
    padding: 32px 28px;
    gap: 28px;
    border-radius: 16px;
  }

  .gh-hero-intro__title {
    font-size: 28px;
    letter-spacing: -0.025em;
  }

  .gh-hero-intro__lead {
    font-size: 15px;
    line-height: 1.65;
    max-width: 100%;
  }

  .gh-hero-intro__feature-item {
    font-size: 14px;
    gap: 10px;
  }

  .gh-hero-intro__check-icon {
    width: 18px;
    height: 18px;
  }
}
