:root {
  --pf-background: hsl(120 20% 99%);
  --pf-foreground: hsl(150 30% 12%);
  --pf-card: hsl(0 0% 100%);
  --pf-primary: hsl(152 55% 28%);
  --pf-primary-strong: hsl(152 59% 24%);
  --pf-primary-soft: hsl(120 25% 96%);
  --pf-secondary: hsl(120 15% 95%);
  --pf-muted: hsl(150 10% 45%);
  --pf-accent: hsl(36 90% 55%);
  --pf-border: hsl(120 15% 90%);
  --pf-shadow: 0 24px 60px rgba(8, 32, 20, 0.08);
  --pf-shadow-soft: 0 12px 30px rgba(8, 32, 20, 0.08);
  --pf-radius-lg: 1.5rem;
  --pf-radius-md: 1rem;
  --pf-radius-sm: 0.75rem;
  --pf-hero-gradient: linear-gradient(135deg, hsl(152 55% 28%) 0%, hsl(160 45% 35%) 50%, hsl(140 40% 42%) 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--pf-background);
  color: var(--pf-foreground);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.1;
}

p {
  margin: 0;
}

.screen-reader-text,
.pf-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pf-skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  background: var(--pf-primary);
  color: #fff;
  clip: auto;
  z-index: 1000;
}

.pf-container {
  width: min(calc(100% - 2rem), 1400px);
  margin: 0 auto;
}

.pf-site-main {
  min-height: 50vh;
}

.pf-eyebrow {
  display: inline-block;
  color: var(--pf-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pf-eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.pf-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.pf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.pf-button--primary {
  background: var(--pf-primary);
  color: #fff;
}

.pf-button--primary:hover {
  background: var(--pf-primary-strong);
}

.pf-button--dark {
  background: var(--pf-foreground);
  color: #fff;
}

.pf-button--dark:hover {
  opacity: 0.92;
}

.pf-button--ghost {
  border-color: var(--pf-border);
  background: transparent;
  color: var(--pf-foreground);
}

.pf-button--ghost:hover {
  background: var(--pf-secondary);
}

.pf-button--large {
  padding: 1.1rem 1.8rem;
  font-size: 1.05rem;
}

.pf-button--block {
  width: 100%;
}

.pf-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(183, 194, 184, 0.5);
  background: rgba(253, 254, 252, 0.92);
  backdrop-filter: blur(14px);
}

.pf-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5rem;
}

.pf-brand img {
  height: 4.1rem;
  width: auto;
}

.pf-main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.pf-nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pf-muted);
  transition: color 180ms ease;
}

.pf-nav-link:hover,
.pf-nav-link.is-active {
  color: var(--pf-primary);
}

.pf-header-cta {
  margin-left: 0.5rem;
}

.pf-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid rgba(23, 57, 98, 0.18);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  color: #173962;
  box-shadow: 0 8px 20px rgba(23, 57, 98, 0.08);
  cursor: pointer;
}

.pf-nav-toggle__icon {
  display: flex;
}

.pf-nav-toggle svg {
  width: 1.35rem;
  height: 1.35rem;
}

.pf-nav-toggle__icon--close {
  display: none;
}

.pf-nav-open .pf-nav-toggle__icon--open {
  display: none;
}

.pf-nav-open .pf-nav-toggle__icon--close {
  display: flex;
}

.pf-mobile-nav {
  border-top: 1px solid var(--pf-border);
  background: var(--pf-background);
}

.pf-mobile-nav__inner {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 0 1.5rem;
}

.pf-hero,
.pf-section,
.pf-page-hero,
.pf-error-page {
  padding: 5rem 0;
}

.pf-section--soft,
.pf-page-hero--soft {
  background: var(--pf-primary-soft);
}

.page-template-page-products .pf-page-hero--soft,
.page-template-page-products .pf-section--soft {
  background: #b5d7ff;
}

.page-template-page-products .pf-section--products-catalogue {
  background: #b5d7ff;
}

.pf-section--gradient {
  background: var(--pf-hero-gradient);
  color: #fff;
}

.pf-section--compact {
  padding: 3rem 0;
}

.pf-section--bordered {
  border-bottom: 1px solid var(--pf-border);
}

.pf-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 4rem;
  align-items: center;
}

.pf-hero__content {
  display: grid;
  gap: 1.75rem;
}

.pf-hero__content h1 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 4vw, 5rem);
}

.pf-hero__content p {
  max-width: 38rem;
  font-size: 1.1rem;
  color: var(--pf-muted);
}

.pf-review-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.pf-review-strip__avatars {
  display: flex;
}

.pf-review-strip__avatars span,
.pf-hero-bubbles span {
  overflow: hidden;
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--pf-background);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(41, 111, 76, 0.18), rgba(241, 186, 76, 0.2));
  margin-left: -0.45rem;
}

.pf-review-strip__avatars span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pf-hero-bubbles span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pf-review-strip__avatars span:first-child,
.pf-hero-bubbles span:first-child {
  margin-left: 0;
}

.pf-review-strip__meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--pf-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.pf-stars {
  display: flex;
  gap: 0.2rem;
  color: var(--pf-accent);
}

.pf-icon--star {
  fill: currentColor;
  stroke-width: 1.4;
}

.pf-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.pf-hero__visual {
  display: flex;
  justify-content: center;
}

.pf-hero-card {
  position: relative;
  width: min(100%, 34rem);
}

.pf-hero-card__backdrop {
  position: absolute;
  inset: -1rem;
  border-radius: 2rem;
  background: linear-gradient(160deg, rgba(41, 111, 76, 0.09), rgba(199, 214, 199, 0.8));
}

.pf-hero-card__image {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  box-shadow: var(--pf-shadow);
  aspect-ratio: 3 / 4;
  background: rgba(41, 111, 76, 0.1);
}

.pf-hero-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pf-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(180, 190, 182, 0.55);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--pf-shadow-soft);
  backdrop-filter: blur(12px);
}

.pf-floating-card--left {
  top: 26%;
  left: -3.5rem;
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.pf-floating-card--left .pf-icon,
.pf-cert-item .pf-icon {
  color: var(--pf-primary);
}

.pf-floating-card--right {
  top: 48%;
  right: -2.5rem;
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
}

.pf-floating-card--right p {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--pf-foreground);
}

.pf-mini-chart {
  display: flex;
  gap: 0.25rem;
  align-items: flex-end;
}

.pf-mini-chart span {
  width: 0.7rem;
  height: var(--chart-height);
  border-radius: 0.25rem;
  background: rgba(41, 111, 76, 0.6);
}

.pf-floating-card--bottom {
  right: -1.75rem;
  bottom: -1.25rem;
  padding: 0.95rem 1rem;
  justify-content: space-between;
  min-width: 14rem;
}

.pf-floating-card--bottom span {
  font-size: 0.75rem;
  font-weight: 700;
}

.pf-hero-bubbles {
  display: flex;
  align-items: center;
}

.pf-hero-bubbles__plus {
  display: grid;
  place-items: center;
  background: var(--pf-primary) !important;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

.pf-section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.pf-section-heading h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.pf-section-heading--center {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.pf-section-heading--split {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.pf-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--pf-primary);
  font-size: 0.95rem;
  font-weight: 700;
}

.pf-card-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.pf-service-card,
.pf-product-card,
.pf-region-card {
  overflow: hidden;
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius-lg);
  background: var(--pf-card);
  box-shadow: var(--pf-shadow-soft);
}

.pf-service-card__image,
.pf-product-card__image {
  overflow: hidden;
  background: rgba(41, 111, 76, 0.08);
}

.pf-service-card__image {
  aspect-ratio: 4 / 3;
  margin: 0.8rem;
  border-radius: 1rem;
}

.pf-product-card__image {
  aspect-ratio: 1 / 1;
}

.pf-service-card__image img,
.pf-product-card__image img,
.pf-catalogue-row__visual img,
.pf-installations-visual img,
.pf-trust-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.pf-service-card:hover img,
.pf-product-card:hover img {
  transform: scale(1.04);
}

.pf-service-card__body,
.pf-product-card__body {
  display: grid;
  gap: 0.75rem;
  padding: 1.15rem 1.5rem 1.5rem;
}

.pf-service-card__body h3,
.pf-product-card__body h3 {
  font-size: 1.35rem;
}

.pf-service-card__body p,
.pf-product-card__body p,
.pf-feature-row p,
.pf-contact-item p,
.pf-contact-form-wrap p {
  color: var(--pf-muted);
}

.pf-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.pf-trust-copy {
  display: grid;
  gap: 1.5rem;
}

.pf-trust-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.pf-trust-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.pf-cert-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.pf-cert-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.96rem;
  font-weight: 600;
}

.pf-cert-item .pf-icon {
  color: var(--pf-accent);
}

.pf-trust-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pf-trust-gallery img {
  min-height: 14rem;
  border-radius: 1rem;
}

.pf-cta-panel,
.pf-promise-panel,
.pf-page-hero__inner {
  display: grid;
  gap: 1.2rem;
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.pf-cta-panel {
  display: grid;
  gap: 1.4rem;
}

.pf-cta-panel h2,
.pf-promise-panel h2,
.pf-page-hero__inner h1,
.pf-error-page__inner h1 {
  font-size: clamp(2.2rem, 3.2vw, 4rem);
}

.pf-cta-panel p,
.pf-page-hero__inner p,
.pf-promise-panel p {
  font-size: 1.06rem;
  color: var(--pf-muted);
}

.pf-section--gradient .pf-promise-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.pf-catalogue-row {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.pf-catalogue-row--tabbed {
  grid-template-areas:
    "visual intro"
    "products products";
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1fr);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border: 1px solid var(--pf-border);
  border-radius: 1.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 246, 0.98));
  box-shadow: var(--pf-shadow-soft);
}

.pf-catalogue-row__intro-block {
  grid-area: intro;
  display: grid;
  align-content: start;
  gap: 1rem;
}

.pf-catalogue-row__visual {
  grid-area: visual;
}

.pf-catalogue-row__products {
  grid-area: products;
}

.pf-catalogue-row__visual img {
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
}

.pf-catalogue-row__content {
  display: grid;
  gap: 1.5rem;
}

.pf-catalogue-row__intro {
  max-width: 42rem;
  color: var(--pf-muted);
  font-size: 1.04rem;
}

.pf-catalogue-row__content h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
}

.pf-product-tabs {
  display: grid;
  gap: 2rem;
}

.pf-product-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  padding: 1rem;
  border: 1px solid rgba(23, 57, 98, 0.12);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 241, 0.94));
  box-shadow: 0 18px 40px rgba(23, 57, 98, 0.08);
}

.pf-product-tab {
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  background: transparent;
  color: #173962;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.pf-product-tab:hover,
.pf-product-tab:focus-visible {
  color: #173962;
  background: rgba(181, 215, 255, 0.45);
  outline: none;
}

.pf-product-tab.is-active {
  background: #173962;
  color: #fff;
  box-shadow: 0 14px 30px rgba(23, 57, 98, 0.2);
}

.pf-product-panels {
  display: grid;
}

.pf-product-panel {
  animation: pfFadeIn 220ms ease;
}

.pf-product-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.pf-product-overview-card {
  overflow: hidden;
  border: 1px solid var(--pf-border);
  border-radius: 1.5rem;
  background: var(--pf-card);
  box-shadow: var(--pf-shadow-soft);
}

.pf-product-overview-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(41, 111, 76, 0.08);
}

.pf-product-overview-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pf-product-overview-card__body {
  display: grid;
  gap: 1rem;
  padding: 1.4rem 1.5rem 1.6rem;
}

.pf-product-overview-card__body h2 {
  font-size: 1.55rem;
}

.pf-product-overview-card__body p {
  color: var(--pf-muted);
}

.pf-product-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.pf-product-card-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pf-product-item-card {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(41, 111, 76, 0.1);
  border-radius: 1.15rem;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 32, 20, 0.05);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pf-product-item-card:hover,
.pf-product-item-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(41, 111, 76, 0.22);
  box-shadow: 0 18px 32px rgba(8, 32, 20, 0.1);
  outline: none;
}

.pf-product-item-card--static {
  cursor: default;
}

.pf-product-item-card--static:hover,
.pf-product-item-card--static:focus-visible {
  transform: none;
  border-color: rgba(41, 111, 76, 0.1);
  box-shadow: 0 10px 24px rgba(8, 32, 20, 0.05);
}

.pf-product-item-card__image {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 0.95rem;
  background: linear-gradient(180deg, rgba(244, 248, 242, 1), rgba(232, 239, 231, 1));
}

.pf-product-item-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pf-product-item-card h3 {
  font-size: 1.02rem;
  line-height: 1.3;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
}

.pf-modal-open {
  overflow: hidden;
}

.pf-product-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1.5rem 1rem;
}

.pf-product-modal[hidden] {
  display: none;
}

.pf-product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 33, 24, 0.5);
  backdrop-filter: blur(8px);
}

.pf-product-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), 46rem);
  max-height: calc(100vh - 3rem);
  overflow: auto;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 244, 0.98));
  box-shadow: 0 24px 60px rgba(8, 32, 20, 0.2);
}

.pf-product-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(41, 111, 76, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--pf-foreground);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.pf-product-modal__header {
  display: grid;
  gap: 0.7rem;
  padding: clamp(2rem, 3vw, 2.75rem) clamp(1.25rem, 3vw, 2rem) 0;
  text-align: center;
}

.pf-product-modal__header h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.pf-product-modal__header p {
  max-width: 32rem;
  margin: 0 auto;
  color: var(--pf-muted);
  font-size: 0.98rem;
}

.pf-product-modal__body {
  display: grid;
  gap: 1.35rem;
  padding: 1.1rem clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
}

.pf-product-modal__visual {
  display: flex;
  justify-content: center;
}

.pf-product-modal__visual img {
  width: min(100%, 12rem);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1rem;
}

.pf-product-modal__season {
  display: grid;
  gap: 1rem;
}

.pf-product-modal__legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
}

.pf-product-modal__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.pf-product-modal__legend-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  border: 2px solid rgba(30, 44, 36, 0.24);
}

.pf-product-modal__legend-dot--inactive {
  background: #ff5e31;
}

.pf-product-modal__legend-dot--active {
  background: #178c13;
}

.pf-product-modal__status {
  text-align: center;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--pf-primary);
}

.pf-product-modal__status.is-out-of-season {
  color: #ff312b;
}

.pf-product-modal__months {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.35rem;
}

.pf-product-modal__month {
  display: grid;
  gap: 0.45rem;
  text-align: center;
}

.pf-product-modal__month-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--pf-foreground);
}

.pf-product-modal__month-bar {
  display: block;
  height: 0.6rem;
  border-radius: 999px;
  background: #ff5e31;
}

.pf-product-modal__month.is-active .pf-product-modal__month-bar {
  background: #178c13;
}

.pf-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pf-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.pf-chip--accent {
  background: rgba(241, 186, 76, 0.12);
}

.pf-chip--primary {
  background: rgba(41, 111, 76, 0.08);
}

.pf-fine-print {
  text-align: center;
  color: #173962;
  font-size: 0.95rem;
}

@keyframes pfFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pf-region-card {
  padding: 2rem;
}

.pf-region-card h2 {
  margin-bottom: 1.4rem;
  font-size: 2rem;
}

.pf-region-card__list {
  display: grid;
  gap: 0.9rem;
}

.pf-region-card__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--pf-muted);
}

.pf-region-card__item .pf-icon {
  color: var(--pf-primary);
}

.pf-installations-grid,
.pf-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 4rem;
  align-items: start;
}

.pf-installations-copy {
  display: grid;
  gap: 2rem;
}

.pf-feature-row {
  display: flex;
  gap: 1rem;
}

.pf-feature-row__icon,
.pf-contact-item__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  background: rgba(41, 111, 76, 0.1);
  color: var(--pf-primary);
  flex: 0 0 auto;
}

.pf-feature-row h3 {
  margin-bottom: 0.55rem;
  font-size: 1.35rem;
}

.pf-installations-visual img {
  min-height: 30rem;
  border-radius: 1.2rem;
}

.pf-contact-copy {
  display: grid;
  gap: 1.5rem;
}

.pf-contact-copy h2 {
  font-size: 2rem;
}

.pf-contact-item {
  display: flex;
  gap: 1rem;
}

.pf-contact-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

.pf-contact-form-wrap {
  display: grid;
  gap: 1rem;
}

.pf-contact-form {
  display: grid;
  gap: 1rem;
}

.pf-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pf-field input,
.pf-field textarea {
  width: 100%;
  border: 1px solid var(--pf-border);
  border-radius: 1rem;
  background: var(--pf-card);
  color: var(--pf-foreground);
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.pf-field input:focus,
.pf-field textarea:focus {
  border-color: rgba(41, 111, 76, 0.4);
  box-shadow: 0 0 0 4px rgba(41, 111, 76, 0.08);
}

.pf-field textarea {
  resize: vertical;
  min-height: 10rem;
}

.pf-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--pf-muted);
  font-size: 0.94rem;
}

.pf-checkbox input {
  margin-top: 0.2rem;
  accent-color: var(--pf-primary);
}

.pf-alert {
  border-radius: 1rem;
  padding: 1rem 1.15rem;
  font-weight: 600;
}

.pf-alert--success {
  background: rgba(34, 121, 78, 0.12);
  color: #1b6a45;
}

.pf-alert--error {
  background: rgba(154, 41, 41, 0.12);
  color: #8d1d1d;
}

.pf-prose {
  max-width: 58rem;
  margin: 0 auto;
}

.pf-prose > * + * {
  margin-top: 1rem;
}

.pf-prose a {
  color: var(--pf-primary);
  text-decoration: underline;
}

.pf-post-card {
  padding: 1.5rem;
  border: 1px solid var(--pf-border);
  border-radius: 1rem;
  background: var(--pf-card);
}

.pf-post-card + .pf-post-card {
  margin-top: 1rem;
}

.pf-site-footer {
  position: relative;
  overflow: hidden;
  color: var(--pf-foreground);
  background: #fff;
}

.pf-site-footer__bg {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
  user-select: none;
}

.pf-site-footer__overlay {
  position: relative;
  z-index: 1;
  padding-top: clamp(2.75rem, 4vw, 4rem);
}

.pf-footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(12rem, 1fr));
  gap: 2.5rem 6rem;
  max-width: 44rem;
  margin: 0 auto;
  padding: 0 0 14rem;
  justify-content: center;
}

.pf-footer-grid h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.pf-footer-column {
  min-width: 0;
}

.pf-footer-links,
.pf-footer-contact {
  display: grid;
  gap: 0.7rem;
}

.pf-footer-links a,
.pf-footer-contact div,
.pf-footer-brand p,
.pf-footer-bar {
  color: rgba(39, 61, 51, 0.8);
}

.pf-footer-links a:hover,
.pf-footer-legal a:hover {
  color: var(--pf-primary);
}

.pf-footer-contact div {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.pf-footer-contact__icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
}

.pf-footer-brand {
  display: grid;
  grid-column: 1 / -1;
  justify-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  text-align: center;
}

.pf-footer-brand img {
  height: 4.5rem;
  width: auto;
}

.pf-footer-brand p {
  max-width: 22rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.pf-footer-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(24, 49, 37, 0.12);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.pf-footer-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  font-size: 0.78rem;
}

.pf-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.pf-footer-legal span {
  opacity: 0.72;
}

.pf-error-page {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 20rem);
}

.pf-error-page__inner {
  display: grid;
  gap: 1rem;
}

.pf-error-page__code {
  color: var(--pf-primary);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
}

@media (max-width: 1199px) {
  .pf-card-grid--services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pf-hero__grid,
  .pf-trust-grid,
  .pf-installations-grid,
  .pf-contact-grid,
  .pf-product-overview,
  .pf-product-card-grid,
  .pf-product-card-grid--compact {
    grid-template-columns: 1fr;
  }

  .pf-hero__content h1 {
    max-width: none;
  }

  .pf-hero__visual {
    margin-top: 1rem;
  }

  .pf-floating-card--left {
    left: -1rem;
  }

  .pf-floating-card--right {
    right: -1rem;
  }

  .pf-floating-card--bottom {
    right: 0;
  }
}

@media (max-width: 959px) {
  .pf-main-nav--desktop {
    display: none;
  }

  .pf-nav-toggle {
    display: inline-flex;
  }

  .pf-card-grid--products,
  .pf-card-grid--regions,
  .pf-form-grid {
    grid-template-columns: 1fr;
  }

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

  .pf-product-tabs__nav {
    justify-content: stretch;
    overflow-x: visible;
    flex-wrap: wrap;
    padding: 0.8rem;
    border-radius: 1.5rem;
  }

  .pf-product-tab {
    flex: 1 1 calc(50% - 0.85rem);
    text-align: center;
  }

  .pf-product-modal__months {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .pf-section-heading--split {
    grid-template-columns: 1fr;
  }

  .pf-footer-grid,
  .pf-footer-bar__inner {
    text-align: center;
  }

  .pf-footer-contact div,
  .pf-footer-bar__inner,
  .pf-footer-legal {
    justify-content: center;
  }

  .pf-footer-grid {
    gap: 2rem;
    max-width: 24rem;
    padding-bottom: 11rem;
  }

  .pf-footer-brand {
    margin-top: 0.5rem;
  }
}

@media (max-width: 767px) {
  .pf-hero,
  .pf-section,
  .pf-page-hero,
  .pf-error-page {
    padding: 4rem 0;
  }

  .pf-container {
    width: min(calc(100% - 1.5rem), 1400px);
  }

  .pf-header-inner {
    min-height: 4.5rem;
  }

  .pf-brand img {
    height: 3.35rem;
  }

  .pf-site-footer__overlay {
    padding-top: 2.5rem;
  }

  .pf-site-footer__bg {
    width: 170%;
    max-width: none;
    left: 50%;
    transform: translate(-50%, -1.75rem);
  }

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

  .pf-product-card-grid,
  .pf-product-card-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .pf-product-item-card {
    gap: 0.65rem;
    padding: 0.65rem;
  }

  .pf-product-item-card h3 {
    font-size: 0.86rem;
  }

  .pf-product-modal__dialog {
    width: min(calc(100% - 1rem), 46rem);
    max-height: calc(100vh - 1rem);
    border-radius: 1.2rem;
  }

  .pf-product-modal__close {
    top: 0.75rem;
    right: 0.75rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .pf-product-modal__header {
    padding-top: 3rem;
  }

  .pf-product-modal__months {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pf-catalogue-row--tabbed {
    grid-template-areas:
      "intro"
      "visual"
      "products";
    grid-template-columns: 1fr;
    padding: 1rem;
    border-radius: 1.25rem;
  }

  .pf-product-tab {
    flex-basis: 100%;
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .pf-cert-list {
    grid-template-columns: 1fr;
  }

  .pf-trust-gallery {
    grid-template-columns: 1fr;
  }

  .pf-review-strip,
  .pf-action-row {
    align-items: flex-start;
  }

  .pf-floating-card {
    position: static;
    margin-top: 1rem;
  }

  .pf-hero-card {
    display: grid;
    gap: 1rem;
  }

  .pf-hero-card__backdrop {
    inset: -0.5rem;
  }

  .pf-hero-bubbles {
    margin-left: auto;
  }
}
