:root {
  --pf-green-950: #022c22;
  --pf-green-900: #003027;
  --pf-green-800: #005845;
  --pf-green-700: #08745e;
  --pf-orange: #f97316;
  --pf-cream: #f7f5ef;
  --pf-surface: #ffffff;
  --pf-border: #e5e7eb;
  --pf-text: #111827;
  --pf-muted: #64748b;
  --pf-radius: 8px;
  --pf-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--pf-text);
  background: #f5f5f5;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

.pf-topbar {
  background: var(--pf-green-950);
  color: #dbe7e2;
  font-size: 13px;
}

.pf-topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pf-phone {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.pf-header-main {
  background: var(--pf-green-900);
  color: #fff;
}

.pf-header-main__inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto minmax(240px, 1fr) auto;
  align-items: center;
  gap: 22px;
}

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

.pf-logo img {
  width: 190px;
  display: block;
}

.pf-location-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 999px;
  background: #fff;
  color: var(--pf-text);
  padding: 5px 6px 5px 18px;
  border: 1px solid rgba(148, 163, 184, 0.85);
}

.pf-location-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--pf-text);
  font: inherit;
  background: transparent;
}

.pf-location-search button,
.pf-button {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.pf-location-search button {
  background: var(--pf-orange);
  color: #fff;
}

.pf-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pf-header-actions a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.pf-cart-link {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 8px 12px;
  border-radius: 999px;
}

.pf-main-nav {
  background: var(--pf-green-800);
  color: #fff;
  box-shadow: 0 8px 20px rgba(2, 44, 34, 0.15);
}

.pf-main-nav__inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
}

.pf-main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.pf-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--pf-green-950);
  color: #fff;
}

.pf-hero__media {
  position: absolute;
  inset: 0;
}

.pf-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 44, 34, 0.88) 0%, rgba(2, 44, 34, 0.62) 44%, rgba(2, 44, 34, 0.15) 100%),
    linear-gradient(0deg, rgba(2, 44, 34, 0.52), rgba(2, 44, 34, 0.06));
}

.pf-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease;
}

.pf-hero__media img.is-active {
  opacity: 1;
}

.pf-hero__content {
  position: relative;
  z-index: 1;
  padding-block: 76px 120px;
}

.pf-kicker {
  margin: 0 0 10px;
  color: #fed7aa;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pf-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

.pf-hero p:not(.pf-kicker) {
  max-width: 660px;
  margin: 20px 0 0;
  color: #e7eee9;
  font-size: 18px;
}

.pf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pf-button--light {
  background: #fff;
  color: var(--pf-green-950);
}

.pf-button--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

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

.pf-benefits {
  margin-top: -54px;
  position: relative;
  z-index: 2;
}

.pf-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border-radius: var(--pf-radius);
  box-shadow: var(--pf-shadow);
  border: 1px solid var(--pf-border);
  overflow: hidden;
}

.pf-benefits article {
  padding: 20px;
  border-right: 1px solid var(--pf-border);
}

.pf-benefits article:last-child {
  border-right: 0;
}

.pf-benefits strong {
  display: block;
  color: var(--pf-green-800);
  font-size: 22px;
}

.pf-benefits span {
  color: var(--pf-muted);
  font-size: 14px;
}

.pf-section {
  padding-block: 78px;
}

.pf-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.pf-section__heading h2,
.pf-local h2,
.pf-partner h2,
.pf-page h1 {
  margin: 0;
  color: var(--pf-green-950);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.pf-section__heading a {
  color: var(--pf-green-800);
  font-weight: 800;
  text-decoration: none;
}

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

.pf-product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.pf-product-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.pf-product-card img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  display: block;
}

.pf-product-card h3 {
  min-height: 52px;
  margin: 16px 16px 8px;
  font-size: 16px;
  line-height: 1.25;
}

.pf-product-card p {
  margin: 0 16px 18px;
  color: var(--pf-green-800);
  font-weight: 800;
}

.pf-product-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.93);
  color: var(--pf-green-950);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.pf-local {
  background: var(--pf-cream);
}

.pf-local__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: 48px;
}

.pf-local p:not(.pf-kicker),
.pf-partner p {
  color: #475569;
  font-size: 17px;
}

.pf-local img {
  width: 100%;
  border-radius: var(--pf-radius);
  box-shadow: var(--pf-shadow);
  aspect-ratio: 1 / 0.74;
  object-fit: cover;
}

.pf-city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pf-city-links a {
  text-decoration: none;
  color: var(--pf-green-950);
  background: #fff;
  border: 1px solid var(--pf-border);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 800;
}

.pf-partner {
  padding-block: 54px;
}

.pf-partner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius);
  padding: 34px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.pf-footer {
  background: var(--pf-green-950);
  color: #e5e7eb;
  padding-top: 58px;
}

.pf-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 32px;
}

.pf-footer__brand {
  background: #0b221e;
  border-radius: var(--pf-radius);
  padding: 24px;
}

.pf-footer__brand img {
  width: 190px;
  display: block;
  margin-bottom: 12px;
}

.pf-footer__phone {
  display: inline-flex;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(148, 163, 184, 0.6);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 12px;
}

.pf-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
}

.pf-footer a:not(.pf-footer__phone) {
  display: block;
  color: #d1d5db;
  text-decoration: none;
  font-size: 14px;
  margin-top: 9px;
}

.pf-footer a:hover {
  color: var(--pf-orange);
}

.pf-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 32px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pf-anpc {
  display: flex;
  gap: 14px;
}

.pf-anpc img {
  height: 42px;
  width: auto;
}

.pf-page {
  max-width: 980px;
  background: #fff;
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius);
  padding: 34px;
}

.pf-page h1 {
  margin-bottom: 18px;
}

.pf-page .pf-lead {
  color: #163126;
  font-size: 21px;
  line-height: 1.55;
  max-width: 820px;
}

.pf-page h2 {
  color: var(--pf-green-950);
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: 0;
}

.pf-page p,
.pf-page li {
  color: #334155;
  font-size: 17px;
}

.pf-page a {
  color: var(--pf-green-800);
  font-weight: 800;
}

.pf-page ul,
.pf-page ol {
  padding-left: 22px;
}

.pf-page li + li {
  margin-top: 8px;
}

.pf-page .pf-editorial-band {
  background: #edf7f0 !important;
  border: 1px solid #c8e0cf !important;
  border-left: 6px solid var(--pf-green-700) !important;
  border-radius: var(--pf-radius);
  margin: 30px 0;
  padding: 26px;
}

.pf-page .pf-editorial-band h2,
.pf-page .pf-editorial-band p {
  margin-top: 0;
}

.pf-page .pf-proof-grid {
  gap: 18px;
  margin: 28px 0;
}

.pf-page .pf-proof-grid > .wp-block-column {
  background: #fbfdfb !important;
  border: 1px solid #d9eadc !important;
  border-radius: var(--pf-radius);
  box-shadow: 0 10px 26px rgba(15, 48, 35, 0.07);
  padding: 22px;
}

.pf-page h3 {
  color: var(--pf-green-950);
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 10px;
}

.pf-page .pf-faq-list {
  border-top: 1px solid var(--pf-border);
  margin-top: 14px;
}

.pf-page .pf-faq-list h3 {
  border-top: 1px solid var(--pf-border);
  margin-top: 0;
  padding-top: 20px;
}

.pf-page .pf-faq-list h3:first-child {
  border-top: 0;
}

.pf-page .wp-block-button__link {
  background: var(--pf-green-800);
  border-radius: 4px;
  color: #fff;
  font-weight: 800;
  padding: 13px 18px;
}

.pf-post-list {
  display: grid;
  gap: 18px;
}

.pf-post-card {
  background: #fff;
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius);
  padding: 24px;
}

@media (max-width: 920px) {
  .pf-header-main__inner {
    grid-template-columns: 1fr;
    padding-block: 16px;
  }

  .pf-header-actions {
    justify-content: space-between;
  }

  .pf-benefits__grid,
  .pf-products,
  .pf-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pf-local__grid,
  .pf-partner__inner {
    grid-template-columns: 1fr;
    display: grid;
  }
}

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

  .pf-topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 8px;
    gap: 2px;
  }

  .pf-logo img {
    width: 168px;
  }

  .pf-location-search {
    border-radius: var(--pf-radius);
    align-items: stretch;
  }

  .pf-location-search button {
    padding-inline: 12px;
  }

  .pf-hero {
    min-height: 620px;
  }

  .pf-hero__content {
    padding-block: 56px 110px;
  }

  .pf-benefits__grid,
  .pf-products,
  .pf-footer__grid {
    grid-template-columns: 1fr;
  }

  .pf-benefits article {
    border-right: 0;
    border-bottom: 1px solid var(--pf-border);
  }

  .pf-section__heading {
    display: block;
  }

  .pf-footer__bottom {
    display: block;
  }
}
