:root {
  --pfh-bg: #f7faf6;
  --pfh-bg-soft: #eef5ec;
  --pfh-surface: #ffffff;
  --pfh-text: #243126;
  --pfh-heading: #18231b;
  --pfh-muted: #5c6f60;
  --pfh-accent: #add61f;
  --pfh-accent-dark: #42530C;
  --pfh-accent-soft: #dfeec2;
  --pfh-red: #f2381a;
  --pfh-amber: #e0a033;
  --pfh-line: rgba(66, 83, 12, 0.14);
  --pfh-width: 1360px;
  --pfh-topbar-height: 42px;
  --pfh-header-height: 64px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: calc(var(--pfh-topbar-height) + var(--pfh-header-height));
  background:
    radial-gradient(circle at top, rgba(173, 214, 31, 0.16), transparent 22%),
    linear-gradient(180deg, #f8fbf7 0%, #eef5ec 100%);
  color: var(--pfh-text);
  font-family: Arial, Helvetica, sans-serif;
}

body.admin-bar .pfh-topbar {
  top: 32px;
}

body.admin-bar .site-header {
  top: calc(32px + var(--pfh-topbar-height));
}

a {
  color: var(--pfh-accent-dark);
}

a:hover {
  color: #314007;
}

.pfh-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10020;
  background: #42530C;
  color: #ffffff;
  font-size: 14px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.pfh-topbar-inner {
  max-width: var(--pfh-width);
  min-height: var(--pfh-topbar-height);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
}

.pfh-topbar-left,
.pfh-topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.pfh-topbar-item,
.pfh-topbar a.pfh-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.pfh-topbar a.pfh-topbar-item:hover {
  color: #ffffff;
  opacity: 0.9;
}

.pfh-topbar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 16px;
  line-height: 1;
}

.pfh-topbar-icon-skype {
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.site-header {
  position: fixed;
  top: var(--pfh-topbar-height);
  left: 0;
  right: 0;
  z-index: 10010;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(24, 35, 27, 0.08);
}

.site-header > .header-inner,
.site-header .header-inner {
  max-width: calc(var(--pfh-width) + 48px);
  min-height: var(--pfh-header-height);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 204px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 12px;
  box-sizing: border-box;
}

.site-branding {
  justify-self: start;
}

.site-title a {
  display: inline-block;
  width: 184px;
  min-width: 184px;
  min-height: 42px;
  background: url('https://amstaffundpitbullwelpen.de/reference-assets/pitbullforesthouse/images/2018/02/pitbull-forest-house.png') left center / contain no-repeat;
  text-indent: -9999px;
  overflow: hidden;
}

.site-navigation {
  min-width: 0;
  justify-self: center;
}

.site-navigation ul.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-navigation ul.menu > li:nth-last-child(-n+3) {
  display: list-item;
}

.site-navigation ul.menu li a,
.site-navigation-dropdown ul.menu li a {
  color: #2b2b2b;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  padding: 4px 6px;
}

.site-navigation ul.menu li a:hover,
.site-navigation ul.menu li.current-menu-item a,
.site-navigation ul.menu li.current_page_item a {
  color: var(--pfh-accent-dark);
}

.pfh-header-cta-group {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  white-space: nowrap;
}

.pfh-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 4px;
  border: 1px solid var(--pfh-accent);
  background: var(--pfh-accent);
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}

.pfh-header-cta.is-red {
  background: var(--pfh-red);
  border-color: var(--pfh-red);
}

.pfh-header-cta.is-amber {
  background: var(--pfh-amber);
  border-color: var(--pfh-amber);
}

.site-navigation-toggle-holder {
  display: none;
}

body.page .entry-content,
body.home .entry-content {
  margin: 0;
}

.pfh-home,
.pfh-page {
  width: 100%;
}

.pfh-home section,
.pfh-page section {
  max-width: var(--pfh-width);
  margin: 0 auto;
  padding: 78px 24px;
  box-sizing: border-box;
}

.pfh-home .pfh-hero-slider {
  position: relative;
  max-width: 100%;
  padding: 0;
  overflow: hidden;
  background: #dfe8d9;
}

.pfh-hero-slides {
  position: absolute;
  inset: 0;
}

.pfh-hero-slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
}

.pfh-hero-slide.is-static {
  opacity: 1;
}

.pfh-hero-overlay {
  position: relative;
  min-height: calc(100vh - (var(--pfh-topbar-height) + var(--pfh-header-height)));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    linear-gradient(90deg, rgba(247, 250, 246, 0.56) 0%, rgba(247, 250, 246, 0.26) 50%, rgba(247, 250, 246, 0.12) 100%);
}

.pfh-hero-inner,
.pfh-page-hero-inner,
.pfh-page .pfh-content {
  max-width: var(--pfh-width);
  margin: 0 auto;
}

.pfh-hero-inner {
  min-height: calc(100vh - (var(--pfh-topbar-height) + var(--pfh-header-height)));
  padding: 56px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.pfh-hero-copy {
  max-width: 760px;
  padding: 28px 28px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 24px 60px rgba(24, 35, 27, 0.10);
  backdrop-filter: blur(8px);
}

.pfh-hero-copy {
  margin: 0 auto;
}

.pfh-hero-copy p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.pfh-hero-copy .pfh-actions {
  justify-content: center;
}

.pfh-eyebrow,
.pfh-home h6,
.pfh-page h6 {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--pfh-accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pfh-home h1,
.pfh-page h1 {
  margin: 0 0 18px;
  color: var(--pfh-heading);
  line-height: 0.92;
}

.pfh-home h1 {
  max-width: 760px;
  font-size: clamp(56px, 9vw, 108px);
}

.pfh-page-hero h1 {
  font-size: clamp(38px, 5vw, 68px);
}

.pfh-home h2,
.pfh-page h2 {
  margin: 0 0 18px;
  color: var(--pfh-heading);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
}

.pfh-home h3,
.pfh-page h3 {
  margin: 0 0 12px;
  color: var(--pfh-heading);
  font-size: 24px;
}

.pfh-home p,
.pfh-home li,
.pfh-page p,
.pfh-page li {
  margin: 0;
  color: var(--pfh-muted);
  font-size: 17px;
  line-height: 1.7;
}

.pfh-home p + p,
.pfh-page p + p {
  margin-top: 16px;
}

.pfh-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.pfh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  background: var(--pfh-accent-dark);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.pfh-button.is-ghost {
  background: transparent;
  border: 1px solid var(--pfh-accent-dark);
  color: var(--pfh-accent-dark);
}

.pfh-grid,
.pfh-card-grid,
.pfh-dog-grid,
.pfh-section-intro {
  display: grid;
  gap: 22px;
}

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

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

.pfh-card,
.pfh-panel,
.pfh-dog-card {
  border: 1px solid var(--pfh-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 240, 0.98));
  box-shadow: 0 16px 34px rgba(24, 35, 27, 0.06);
}

.pfh-card,
.pfh-panel {
  padding: 30px 28px;
}

.pfh-highlight {
  margin-top: 24px;
  padding: 20px 22px;
  border-left: 3px solid var(--pfh-accent-dark);
  background: rgba(173, 214, 31, 0.12);
  color: var(--pfh-heading);
}

.pfh-dog-card {
  overflow: hidden;
}

.pfh-dog-card img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.pfh-dog-card-body {
  padding: 24px;
}

.pfh-dog-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  background: var(--pfh-accent-soft);
  color: var(--pfh-accent-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pfh-list {
  margin: 0;
  padding-left: 20px;
}

.pfh-list li + li {
  margin-top: 8px;
}

.pfh-page-hero {
  max-width: 100%;
  padding: 88px 24px 42px;
  border-bottom: 1px solid var(--pfh-line);
  background:
    linear-gradient(180deg, rgba(173, 214, 31, 0.12), transparent 60%),
    linear-gradient(180deg, #f9fcf8 0%, #eef5ec 100%);
}

.pfh-home .pfh-story,
.pfh-home .pfh-puppies,
.pfh-home .pfh-values,
.pfh-home .pfh-news,
.pfh-page .pfh-content {
  padding-top: 72px;
  padding-bottom: 72px;
}

.pfh-home section + section,
.pfh-page section + section {
  border-top: 1px solid rgba(66, 83, 12, 0.08);
}

.site-footer {
  background: #18231b;
  border-top: none;
}

.site-footer .footer-inner {
  max-width: var(--pfh-width);
  min-height: 44px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  box-sizing: border-box;
}

.site-footer .site-branding,
.site-footer .site-navigation {
  display: none !important;
}

.site-footer .site-branding::before {
  content: none !important;
}

.site-footer .copyright {
  display: block !important;
  width: 100%;
  text-align: center;
}

.site-footer .copyright p {
  margin: 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none;
}

.site-footer .copyright .pfh-footer-separator {
  display: inline-block;
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer .copyright .pfh-footer-link {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer .copyright .pfh-footer-link:hover,
.site-footer .copyright .pfh-footer-link:focus-visible {
  color: var(--pfh-accent);
  border-bottom-color: var(--pfh-accent);
}

@media (max-width: 1280px) {
  .site-header > .header-inner,
  .site-header .header-inner {
    grid-template-columns: 198px minmax(0, 1fr) auto;
  }

  .site-title a {
    width: 188px;
    min-width: 188px;
  }

  .site-navigation ul.menu {
    gap: 4px;
  }

  .site-navigation ul.menu li a {
    font-size: 10px;
    padding: 4px;
  }

  .pfh-header-cta {
    padding: 0 12px;
    font-size: 10px;
  }
}

@media (max-width: 1120px) {
  .pfh-header-cta-group {
    display: none;
  }

  .site-header > .header-inner,
  .site-header .header-inner {
    grid-template-columns: 188px minmax(0, 1fr) auto;
  }

  .site-navigation-toggle-holder {
    display: flex;
    justify-self: end;
    align-items: center;
    padding: 0;
  }

  .site-navigation-toggle-holder .site-navigation-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 8px;
    background: transparent;
    border: 2px solid #42530C;
    border-radius: 2px;
    color: #42530C;
  }

  .site-navigation-toggle-holder .site-navigation-toggle-icon,
  .site-navigation-toggle-holder .site-navigation-toggle-icon:before,
  .site-navigation-toggle-holder .site-navigation-toggle-icon:after {
    background-color: #42530C;
  }

  .site-navigation-dropdown {
    position: fixed;
    top: calc(var(--pfh-topbar-height) + var(--pfh-header-height));
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10005;
    margin: 0;
  }

  .site-navigation-dropdown ul.menu {
    position: relative;
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(24, 35, 27, 0.14);
  }

  .site-navigation-dropdown ul.menu li a {
    padding: 16px 18px;
    font-size: 13px;
    line-height: 1.25;
  }
}

@media (max-width: 1024px) {
  .pfh-grid,
  .pfh-card-grid,
  .pfh-dog-grid,
  .pfh-section-intro {
    grid-template-columns: 1fr;
  }

  .site-navigation {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --pfh-topbar-height: 30px;
    --pfh-header-height: 44px;
  }

  body {
    padding-top: calc(var(--pfh-topbar-height) + var(--pfh-header-height));
  }

  .pfh-topbar-left,
  .pfh-topbar-right .pfh-topbar-item:not(:first-child),
  .pfh-topbar-right a.pfh-topbar-item:not(:first-child) {
    display: none;
  }

  .pfh-topbar {
    font-size: 13px;
  }

  .pfh-topbar-inner {
    padding: 0 10px;
    justify-content: center;
  }

  .pfh-topbar-right {
    width: 100%;
    justify-content: center;
    gap: 0;
  }

  .pfh-topbar a.pfh-topbar-item:first-child {
    justify-content: center;
    font-size: 13px;
  }

  .pfh-topbar-icon,
  .pfh-topbar-icon-skype {
    width: 16px;
    height: 16px;
    font-size: 14px;
  }

  .site-header > .header-inner,
  .site-header .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: var(--pfh-header-height);
    padding: 0 12px;
  }

  .site-title a {
    width: 158px;
    min-width: 158px;
    min-height: 36px;
  }

  .site-navigation-toggle-holder .site-navigation-toggle {
    min-width: 36px;
    min-height: 36px;
    padding: 5px;
  }

  .site-navigation-toggle-holder .site-navigation-toggle-icon {
    position: relative;
    display: block;
    width: 18px;
    height: 3px;
    background-color: #42530C;
  }

  .site-navigation-toggle-holder .site-navigation-toggle-icon:before,
  .site-navigation-toggle-holder .site-navigation-toggle-icon:after {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 3px;
    background-color: #42530C;
    box-shadow: none;
  }

  .site-navigation-toggle-holder .site-navigation-toggle-icon:before {
    top: -6px;
    transform: none;
  }

  .site-navigation-toggle-holder .site-navigation-toggle-icon:after {
    top: 6px;
    transform: none;
  }

  .site-navigation-dropdown {
    top: calc(var(--pfh-topbar-height) + var(--pfh-header-height));
  }

  .pfh-home section,
  .pfh-page section,
  .pfh-page-hero,
  .pfh-hero-inner,
  .site-footer .footer-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .pfh-home section,
  .pfh-page section,
  .pfh-home .pfh-story,
  .pfh-home .pfh-puppies,
  .pfh-home .pfh-values,
  .pfh-home .pfh-news,
  .pfh-page .pfh-content {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .pfh-page-hero {
    padding-top: 72px;
    padding-bottom: 32px;
  }

  .pfh-hero-overlay {
    min-height: calc(100vh - (var(--pfh-topbar-height) + var(--pfh-header-height)));
  }

  .pfh-home h1 {
    font-size: clamp(34px, 11vw, 56px);
    line-height: 0.95;
  }

  .pfh-page-hero h1 {
    font-size: clamp(28px, 9vw, 42px);
  }

  .pfh-home h2,
  .pfh-page h2 {
    font-size: 28px;
  }

  .pfh-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .pfh-button {
    width: 100%;
  }

  .pfh-card,
  .pfh-panel {
    padding: 22px 18px;
  }

  .pfh-dog-card img {
    height: 220px;
  }

  .pfh-dog-card-body {
    padding: 18px;
  }

  .site-footer .footer-inner {
    min-height: 40px;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
  }

  .site-footer .copyright p {
    font-size: 11px;
    letter-spacing: 0.05em;
  }
}

@keyframes pfhHeroFade {
  0% { opacity: 0; transform: scale(1.04); }
  5% { opacity: 1; }
  28% { opacity: 1; transform: scale(1); }
  33% { opacity: 0; }
  100% { opacity: 0; transform: scale(1.04); }
}

/* Final header/mobile overrides */
.site-header.dynamic-header,
.site-header {
  position: fixed;
  top: var(--pfh-topbar-height);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10010;
}

.site-header.dynamic-header > .header-inner,
.site-header > .header-inner,
.site-header .header-inner {
  max-width: calc(var(--pfh-width) + 48px) !important;
  margin: 0 auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  grid-template-columns: 204px minmax(0, 1fr) auto !important;
  min-height: 64px !important;
  align-items: center !important;
}

.site-branding {
  justify-self: start !important;
}

.site-navigation {
  justify-self: center !important;
}

.pfh-header-cta-group {
  display: flex !important;
  justify-self: end !important;
  align-items: center !important;
  gap: 8px !important;
}

.site-title a {
  width: 184px !important;
  min-width: 184px !important;
  min-height: 38px !important;
}

@media (max-width: 1120px) {
  .pfh-header-cta-group {
    display: none !important;
  }

  .site-header.dynamic-header > .header-inner,
  .site-header > .header-inner,
  .site-header .header-inner {
    grid-template-columns: 188px minmax(0, 1fr) auto !important;
  }

  .site-navigation-toggle-holder {
    display: flex !important;
    align-items: center !important;
    justify-self: end !important;
    padding: 0 !important;
  }

  .site-navigation-toggle-holder .site-navigation-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 42px !important;
    min-height: 38px !important;
    padding: 8px !important;
    background: transparent !important;
    border: 2px solid #42530C !important;
    border-radius: 2px !important;
    color: #42530C !important;
  }
}

@media (max-width: 767px) {
  :root {
    --pfh-topbar-height: 30px;
    --pfh-header-height: 44px;
  }

  body {
    padding-top: calc(var(--pfh-topbar-height) + var(--pfh-header-height)) !important;
  }

  .pfh-topbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10020 !important;
  }

  .pfh-topbar-left,
  .pfh-topbar-right .pfh-topbar-item:not(:first-child),
  .pfh-topbar-right a.pfh-topbar-item:not(:first-child) {
    display: none !important;
  }

  .pfh-topbar-inner {
    min-height: 30px !important;
    padding: 0 10px !important;
    justify-content: center !important;
  }

  .pfh-topbar-right {
    width: 100% !important;
    justify-content: center !important;
    gap: 0 !important;
  }

  .pfh-topbar a.pfh-topbar-item:first-child {
    justify-content: center !important;
    font-size: 13px !important;
    color: #ffffff !important;
  }

  .pfh-topbar-icon,
  .pfh-topbar-icon-skype {
    width: 16px !important;
    height: 16px !important;
    font-size: 14px !important;
  }

  .site-header.dynamic-header,
  .site-header,
  .site-header.is-scrolled {
    position: fixed !important;
    top: var(--pfh-topbar-height) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10010 !important;
  }

  .site-header.dynamic-header > .header-inner,
  .site-header > .header-inner,
  .site-header .header-inner {
    grid-template-columns: minmax(0, 1fr) auto !important;
    min-height: 44px !important;
    padding: 0 12px !important;
  }

  .site-title a {
    width: 158px !important;
    min-width: 158px !important;
    min-height: 32px !important;
  }

  .site-navigation-toggle-holder {
    display: flex !important;
    align-items: center !important;
    justify-self: end !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .site-navigation-toggle-holder .site-navigation-toggle {
    min-width: 36px !important;
    min-height: 32px !important;
    padding: 5px !important;
    border: 2px solid #42530C !important;
    border-radius: 2px !important;
    background: transparent !important;
  }

  .site-navigation-toggle-holder .site-navigation-toggle-icon {
    position: relative !important;
    display: block !important;
    width: 18px !important;
    height: 3px !important;
    background-color: #42530C !important;
  }

  .site-navigation-toggle-holder .site-navigation-toggle-icon:before,
  .site-navigation-toggle-holder .site-navigation-toggle-icon:after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    width: 18px !important;
    height: 3px !important;
    background-color: #42530C !important;
    box-shadow: none !important;
  }

  .site-navigation-toggle-holder .site-navigation-toggle-icon:before {
    top: -6px !important;
    transform: none !important;
  }

  .site-navigation-toggle-holder .site-navigation-toggle-icon:after {
    top: 6px !important;
    transform: none !important;
  }

  .site-navigation-dropdown {
    position: fixed !important;
    top: calc(var(--pfh-topbar-height) + var(--pfh-header-height)) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    z-index: 10005 !important;
  }
}

/* Sticky top bar + header on desktop and mobile */
html body {
  padding-top: calc(var(--pfh-topbar-height) + var(--pfh-header-height)) !important;
}

.pfh-topbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 10030 !important;
}

.site-header,
.site-header.dynamic-header,
.site-header.is-scrolled {
  position: fixed !important;
  top: var(--pfh-topbar-height) !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 10020 !important;
}

.site-header.dynamic-header > .header-inner,
.site-header > .header-inner,
.site-header .header-inner {
  max-width: calc(var(--pfh-width) + 48px) !important;
  margin: 0 auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  min-height: 64px !important;
  grid-template-columns: 204px minmax(0, 1fr) auto !important;
  align-items: center !important;
}

.site-branding {
  justify-self: start !important;
}

.site-navigation {
  display: flex !important;
  justify-self: center !important;
}

.pfh-header-cta-group {
  display: flex !important;
  justify-self: end !important;
  align-items: center !important;
  gap: 8px !important;
}

@media (max-width: 1120px) {
  .pfh-header-cta-group {
    display: none !important;
  }

  .site-header.dynamic-header > .header-inner,
  .site-header > .header-inner,
  .site-header .header-inner {
    grid-template-columns: 188px minmax(0, 1fr) auto !important;
  }

  .site-navigation {
    display: none !important;
  }

  .site-navigation-toggle-holder {
    display: flex !important;
    align-items: center !important;
    justify-self: end !important;
    padding: 0 !important;
  }

  .site-navigation-toggle-holder .site-navigation-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 42px !important;
    min-height: 38px !important;
    padding: 8px !important;
    border: 2px solid #42530C !important;
    border-radius: 2px !important;
    background: transparent !important;
    color: #42530C !important;
  }

  .site-navigation-dropdown {
    position: fixed !important;
    top: calc(var(--pfh-topbar-height) + var(--pfh-header-height)) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    z-index: 10015 !important;
  }
}

@media (max-width: 767px) {
  :root {
    --pfh-topbar-height: 30px;
    --pfh-header-height: 44px;
  }

  html body {
    padding-top: calc(var(--pfh-topbar-height) + var(--pfh-header-height)) !important;
  }

  .pfh-topbar-left,
  .pfh-topbar-right .pfh-topbar-item:not(:first-child),
  .pfh-topbar-right a.pfh-topbar-item:not(:first-child) {
    display: none !important;
  }

  .pfh-topbar-inner {
    min-height: 30px !important;
    padding: 0 10px !important;
    justify-content: center !important;
  }

  .pfh-topbar-right {
    width: 100% !important;
    justify-content: center !important;
    gap: 0 !important;
  }

  .pfh-topbar a.pfh-topbar-item:first-child {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: auto !important;
    font-size: 13px !important;
    color: #ffffff !important;
  }

  .pfh-topbar-icon,
  .pfh-topbar-icon-skype {
    width: 16px !important;
    height: 16px !important;
    font-size: 14px !important;
  }

  .site-header,
  .site-header.dynamic-header,
  .site-header.is-scrolled {
    top: var(--pfh-topbar-height) !important;
  }

  .site-header.dynamic-header > .header-inner,
  .site-header > .header-inner,
  .site-header .header-inner {
    grid-template-columns: minmax(0, 1fr) auto !important;
    min-height: 44px !important;
    padding: 0 12px !important;
  }

  .site-title a {
    width: 158px !important;
    min-width: 158px !important;
    min-height: 32px !important;
  }

  .site-navigation {
    display: none !important;
  }

  .site-navigation-toggle-holder {
    display: flex !important;
    align-items: center !important;
    justify-self: end !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .site-navigation-toggle-holder .site-navigation-toggle {
    min-width: 36px !important;
    min-height: 32px !important;
    padding: 5px !important;
    border: 2px solid #42530C !important;
    border-radius: 2px !important;
    background: transparent !important;
  }

  .site-navigation-toggle-holder .site-navigation-toggle-icon {
    position: relative !important;
    display: block !important;
    width: 18px !important;
    height: 3px !important;
    background-color: #42530C !important;
  }

  .site-navigation-toggle-holder .site-navigation-toggle-icon:before,
  .site-navigation-toggle-holder .site-navigation-toggle-icon:after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    width: 18px !important;
    height: 3px !important;
    background-color: #42530C !important;
    box-shadow: none !important;
  }

  .site-navigation-toggle-holder .site-navigation-toggle-icon:before {
    top: -6px !important;
    transform: none !important;
  }

  .site-navigation-toggle-holder .site-navigation-toggle-icon:after {
    top: 6px !important;
    transform: none !important;
  }

  .site-navigation-dropdown {
    position: fixed !important;
    top: calc(var(--pfh-topbar-height) + var(--pfh-header-height)) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    z-index: 10015 !important;
  }
}

/* Device-specific sticky behavior */
@media (min-width: 768px) {
  html body {
    padding-top: var(--pfh-header-height) !important;
  }

  .pfh-topbar {
    position: static !important;
    width: 100% !important;
  }

  .site-header,
  .site-header.dynamic-header,
  .site-header.is-scrolled {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10020 !important;
  }

  body.admin-bar .site-header,
  body.admin-bar .site-header.dynamic-header,
  body.admin-bar .site-header.is-scrolled {
    top: 32px !important;
  }
}

@media (max-width: 767px) {
  html body {
    padding-top: calc(var(--pfh-topbar-height) + var(--pfh-header-height)) !important;
  }

  .pfh-topbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10030 !important;
  }

  .site-header,
  .site-header.dynamic-header,
  .site-header.is-scrolled {
    position: fixed !important;
    top: var(--pfh-topbar-height) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10020 !important;
  }
}

/* Correct sticky split: desktop header only, mobile topbar only */
@media (min-width: 768px) {
  html body {
    padding-top: 0 !important;
  }

  .pfh-topbar {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    z-index: auto !important;
  }

  .site-header,
  .site-header.dynamic-header,
  .site-header.is-scrolled {
    position: sticky !important;
    top: 0 !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    z-index: 10020 !important;
  }

  body.admin-bar .site-header,
  body.admin-bar .site-header.dynamic-header,
  body.admin-bar .site-header.is-scrolled {
    top: 32px !important;
  }
}

@media (max-width: 767px) {
  html body {
    padding-top: var(--pfh-topbar-height) !important;
  }

  .pfh-topbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10030 !important;
  }

  .site-header,
  .site-header.dynamic-header,
  .site-header.is-scrolled {
    position: relative !important;
    top: 0 !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    z-index: 10010 !important;
  }

  .site-navigation-dropdown {
    top: auto !important;
    position: absolute !important;
    z-index: 10015 !important;
  }
}






/* Sample-style hero composition */
.pfh-hero-overlay.is-showcase {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15, 21, 15, 0.10) 0%, rgba(15, 21, 15, 0.42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.00) 58%, rgba(0, 0, 0, 0.26) 100%);
}

.pfh-hero-overlay.is-showcase::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(20, 28, 20, 0) 0%, rgba(20, 28, 20, 0.58) 100%);
  pointer-events: none;
}

.pfh-hero-brand {
  position: absolute;
  top: -26px;
  left: -36px;
  width: 360px;
  height: 390px;
  background:
    url('https://amstaffundpitbullwelpen.de/reference-assets/pitbullforesthouse/images/2018/02/pitbull-forest-house.png') center 52% / 240px auto no-repeat,
    #f1f1f1;
  border-bottom-right-radius: 220px;
  opacity: 0.9;
  z-index: 1;
}

.pfh-hero-badge {
  position: absolute;
  top: 14px;
  right: 26px;
  width: 130px;
  height: 130px;
  background: url('https://amstaffundpitbullwelpen.de/reference-assets/pitbullforesthouse/images/2018/02/favicon.png') center / contain no-repeat;
  opacity: 0.38;
  z-index: 1;
  filter: grayscale(1);
}

.pfh-hero-inner.is-showcase {
  position: relative;
  z-index: 2;
  align-items: center;
}

.pfh-hero-copy {
  max-width: 1280px;
}

.pfh-hero-copy .pfh-eyebrow {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.pfh-hero-copy h1 {
  color: #ffffff;
  font-size: clamp(58px, 7vw, 84px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.pfh-hero-copy p {
  color: rgba(255, 255, 255, 0.96);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}

.pfh-actions.is-showcase {
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 34px;
}

.pfh-actions.is-showcase .pfh-button {
  min-height: 50px;
  min-width: 240px;
  background: rgba(169, 211, 51, 0.82);
  border: 0;
  border-radius: 3px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-transform: none;
}

.pfh-actions.is-showcase .pfh-button.is-showcase-secondary {
  min-height: 50px;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 3px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.pfh-actions.is-showcase .pfh-button.is-showcase-secondary:hover,
.pfh-actions.is-showcase .pfh-button.is-showcase-secondary:focus {
  background: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.pfh-video-link {
  gap: 18px;
  color: #add61f;
  font-size: 18px;
  font-weight: 700;
}

.pfh-video-icon {
  width: 66px;
  height: 66px;
  border: 4px solid #add61f;
  font-size: 24px;
}

@media (max-width: 1024px) {
  .pfh-hero-brand {
    width: 250px;
    height: 280px;
    background-size: 170px auto, auto;
  }

  .pfh-hero-badge {
    width: 96px;
    height: 96px;
  }

  .pfh-hero-copy h1 {
    font-size: clamp(46px, 8vw, 68px);
  }

  .pfh-hero-copy p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .pfh-hero-brand {
    width: 170px;
    height: 190px;
    top: -10px;
    left: -18px;
    background-size: 118px auto, auto;
    border-bottom-right-radius: 120px;
  }

  .pfh-hero-badge {
    width: 66px;
    height: 66px;
    top: 10px;
    right: 12px;
  }

  .pfh-hero-copy .pfh-eyebrow {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .pfh-hero-copy h1 {
    font-size: clamp(32px, 10vw, 44px);
    margin-bottom: 14px;
  }

  .pfh-hero-copy p {
    font-size: 14px;
    line-height: 1.5;
  }

  .pfh-actions.is-showcase {
    gap: 14px;
    margin-top: 22px;
  }

  .pfh-actions.is-showcase .pfh-button {
    min-width: 0;
    width: auto;
    padding: 0 18px;
    font-size: 16px;
  }

  .pfh-video-link {
    font-size: 14px;
    gap: 10px;
  }

  .pfh-video-icon {
    width: 46px;
    height: 46px;
    border-width: 3px;
    font-size: 16px;
  }
}

/* Portfolio pages */
.pfh-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.pfh-portfolio-card {
  background: #fff;
  border: 1px solid rgba(20, 44, 20, 0.08);
  box-shadow: 0 14px 32px rgba(22, 34, 14, 0.08);
  overflow: hidden;
}

.pfh-portfolio-card-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.pfh-portfolio-card-media img,
.pfh-portfolio-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pfh-portfolio-card-body {
  padding: 20px;
}

.pfh-portfolio-card-body h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.pfh-portfolio-card-body h3 a {
  color: inherit;
  text-decoration: none;
}

.pfh-portfolio-card-body p {
  margin: 0 0 18px;
}

.pfh-portfolio-hero {
  position: relative;
  min-height: 0;
  padding: 88px 24px 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.pfh-portfolio-hero-media,
.pfh-portfolio-hero-overlay {
  position: absolute;
  inset: 0;
}

.pfh-portfolio-hero-media {
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.pfh-portfolio-hero-overlay {
  background: linear-gradient(180deg, rgba(20, 31, 18, 0.38) 0%, rgba(20, 31, 18, 0.75) 100%);
}

.pfh-portfolio-hero .pfh-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.pfh-portfolio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.pfh-portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pfh-portfolio-gallery-item {
  aspect-ratio: 1 / 1;
  background: #eef4e3;
  margin: 0;
  overflow: hidden;
}

.pfh-portfolio-sidebar {
  display: grid;
  gap: 18px;
}

.pfh-portfolio-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.pfh-portfolio-meta li {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(20, 44, 20, 0.08);
}

.pfh-portfolio-meta span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #42530c;
}

.pfh-portfolio-meta a {
  color: #42530c;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .pfh-portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pfh-portfolio-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .pfh-portfolio-grid,
  .pfh-portfolio-gallery {
    grid-template-columns: 1fr;
  }

  .pfh-portfolio-hero {
    min-height: 0;
    padding-top: 72px;
    padding-bottom: 32px;
  }
}

/* Brand rename overrides */
.site-header > .header-inner,
.site-header .header-inner {
  grid-template-columns: 250px minmax(0, 1fr) auto !important;
}

.site-branding {
  max-width: 250px;
}

.site-title a {
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 250px;
  background: none !important;
  text-indent: 0 !important;
  overflow: visible !important;
  color: #20301a !important;
  font-size: 27px !important;
  font-weight: 900 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.04em !important;
  text-transform: uppercase;
  text-decoration: none;
  word-break: break-word;
}

.pfh-hero-brand {
  background: #f1f1f1 !important;
}

.pfh-hero-brand::after {
  content: "Amstaff und\APitbull Welpen";
  position: absolute;
  top: 110px;
  left: 70px;
  width: 215px;
  white-space: pre;
  color: #20301a;
  font-size: 38px;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .site-header > .header-inner,
  .site-header .header-inner {
    grid-template-columns: 220px minmax(0, 1fr) auto !important;
  }

  .site-branding,
  .site-title a {
    max-width: 220px;
  }

  .site-title a {
    font-size: 23px !important;
  }
}

@media (max-width: 767px) {
  .site-branding,
  .site-title a {
    max-width: 190px;
  }

  .site-title a {
    font-size: 19px !important;
    line-height: 1.02 !important;
  }

  .pfh-hero-brand::after {
    top: 108px;
    left: 50px;
    width: 170px;
    font-size: 28px;
  }
}



/* Portfolio hero modern full-bleed override */
.pfh-portfolio-single .pfh-portfolio-hero {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 250px;
  padding: 72px 24px 28px;
  align-items: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #141f12;
  isolation: isolate;
}

.pfh-portfolio-single .pfh-portfolio-hero-media {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.02) brightness(0.88);
}

.pfh-portfolio-single .pfh-portfolio-hero-overlay {
  background:
    linear-gradient(180deg, rgba(9, 14, 8, 0.12) 0%, rgba(9, 14, 8, 0.42) 38%, rgba(9, 14, 8, 0.88) 100%),
    radial-gradient(circle at 18% 20%, rgba(173, 214, 31, 0.22), transparent 30%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 45%);
}

.pfh-portfolio-single .pfh-portfolio-hero .pfh-page-hero-inner {
  width: min(var(--pfh-width), calc(100% - 48px));
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(17, 25, 16, 0.28), rgba(17, 25, 16, 0.12));
  box-shadow: 0 32px 90px rgba(3, 8, 3, 0.28);
  backdrop-filter: blur(10px);
}

.pfh-portfolio-single .pfh-portfolio-hero .pfh-eyebrow {
  color: #d8f08a;
  margin-bottom: 16px;
}

.pfh-portfolio-single .pfh-portfolio-hero h1 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.pfh-portfolio-single .pfh-portfolio-hero p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.65;
}

@media (max-width: 767px) {
  .pfh-portfolio-single .pfh-portfolio-hero {
    min-height: 250px;
    padding: 84px 16px 24px;
  }

  .pfh-portfolio-single .pfh-portfolio-hero .pfh-page-hero-inner {
    width: 100%;
    padding: 22px 18px;
    border-radius: 20px;
  }

  .pfh-portfolio-single .pfh-portfolio-hero h1 {
    font-size: clamp(28px, 8.2vw, 42px);
  }

  .pfh-portfolio-single .pfh-portfolio-hero p {
    font-size: 14px;
  }
}






/* Homepage boxed layout with full-width hero slider */
.elementor-9 .pfh-home.pfh-elementor-page {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.elementor-9 .pfh-home.pfh-elementor-page > .pfh-elementor-section {
  width: min(var(--pfh-width), calc(100% - 48px));
  max-width: var(--pfh-width);
  margin-left: auto;
  margin-right: auto;
  padding: 72px 24px;
  box-sizing: border-box;
}

.elementor-9 .pfh-home.pfh-elementor-page > .pfh-elementor-section + .pfh-elementor-section {
  border-top: 1px solid rgba(66, 83, 12, 0.08);
}

.elementor-9 .pfh-home.pfh-elementor-page > .pfh-hero-slider {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 !important;
  border-top: 0 !important;
}

.elementor-9 .pfh-home.pfh-elementor-page > .pfh-hero-slider + .pfh-elementor-section {
  border-top: 0;
}

@media (max-width: 767px) {
  .elementor-9 .pfh-home.pfh-elementor-page > .pfh-elementor-section {
    width: calc(100% - 24px);
    padding: 42px 12px;
  }

  .elementor-9 .pfh-home.pfh-elementor-page > .pfh-hero-slider {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 !important;
  }
}


/* Homepage hero slider fixed height */
.elementor-9 .pfh-home.pfh-elementor-page > .pfh-hero-slider,
.elementor-9 .pfh-home.pfh-elementor-page > .pfh-hero-slider .pfh-hero-overlay,
.elementor-9 .pfh-home.pfh-elementor-page > .pfh-hero-slider .pfh-hero-inner {
  height: 550px;
  min-height: 550px;
  box-sizing: border-box;
}

/* Parents page gallery */
.pfh-parents-section .pfh-section-intro {
  margin-bottom: 30px;
}

.pfh-parents-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pfh-parents-gallery-card {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(20, 44, 20, 0.08);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(22, 34, 14, 0.08);
}

.pfh-parents-gallery-card a,
.pfh-parents-gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
}

.pfh-parents-gallery-card img {
  object-fit: cover;
}

.pfh-parents-empty {
  padding: 22px 24px;
  border: 1px dashed rgba(66, 83, 12, 0.28);
  background: #f6f9ef;
  color: var(--pfh-muted);
  border-radius: 18px;
}

@media (max-width: 1024px) {
  .pfh-parents-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .pfh-parents-gallery {
    grid-template-columns: 1fr;
  }
}

/* Pitbull Welpen directory */
.pfh-puppy-directory-page .pfh-page-hero-inner p {
  max-width: 860px;
}

.pfh-puppy-directory .pfh-puppy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.pfh-puppy-directory .pfh-puppy-card {
  min-width: 0;
  border: 1px solid rgba(20, 44, 20, 0.08);
  border-radius: 26px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(25, 37, 16, 0.08);
}

.pfh-puppy-directory .pfh-puppy-card > .e-con-inner,
.pfh-puppy-directory .pfh-puppy-card > .elementor-widget-wrap,
.pfh-puppy-directory .pfh-puppy-card > .elementor-element,
.pfh-puppy-directory .pfh-puppy-card .elementor-widget-container {
  height: 100%;
}

.pfh-puppy-card-media {
  background: #edf4df;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.pfh-puppy-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pfh-puppy-card-copy {
  display: grid;
  gap: 18px;
  padding: 28px 28px 30px;
}

.pfh-puppy-card-copy h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.05;
  color: #162112;
}

.pfh-puppy-card-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.pfh-puppy-card-facts li {
  display: grid;
  grid-template-columns: minmax(0, 190px) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(20, 44, 20, 0.08);
  font-size: 15px;
  line-height: 1.55;
  color: #31402b;
}

.pfh-puppy-label {
  display: inline-block;
  font-weight: 800;
  color: #42530C;
}

.pfh-puppy-card-note {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #4d5d46;
}

.pfh-puppy-card-note strong {
  color: #162112;
}

@media (max-width: 1024px) {
  .pfh-puppy-directory .pfh-puppy-grid {
    gap: 24px;
  }

  .pfh-puppy-card-copy {
    padding: 24px;
  }

  .pfh-puppy-card-facts li {
    grid-template-columns: minmax(0, 160px) minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .pfh-puppy-directory .pfh-puppy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pfh-puppy-card-copy {
    gap: 16px;
    padding: 20px 18px 22px;
  }

  .pfh-puppy-card-copy h3 {
    font-size: 28px;
  }

  .pfh-puppy-card-facts li {
    grid-template-columns: 1fr;
    gap: 4px;
    font-size: 14px;
  }

  .pfh-puppy-card-note {
    font-size: 14px;
  }
}

/* Pitbull Welpen grid fix for Elementor inner wrapper */
.pfh-puppy-directory .pfh-puppy-grid {
  display: block !important;
}

.pfh-puppy-directory .pfh-puppy-grid > .e-con-inner {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 34px !important;
  max-width: none !important;
  width: 100% !important;
}

.pfh-puppy-directory .pfh-puppy-grid > .e-con-inner > .pfh-puppy-card {
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
}

@media (max-width: 1024px) {
  .pfh-puppy-directory .pfh-puppy-grid > .e-con-inner {
    gap: 24px !important;
  }
}

@media (max-width: 767px) {
  .pfh-puppy-directory .pfh-puppy-grid > .e-con-inner {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* Pitbull Welpen boxed layout and square corners */
.pfh-puppy-directory.pfh-elementor-section > .e-con-inner {
  width: min(var(--pfh-width), calc(100% - 48px)) !important;
  max-width: var(--pfh-width) !important;
  margin: 0 auto !important;
}

.pfh-puppy-directory .pfh-puppy-card,
.pfh-puppy-directory .pfh-puppy-card > .e-con-inner,
.pfh-puppy-directory .pfh-puppy-card .elementor-widget-container,
.pfh-puppy-directory .pfh-puppy-card-media,
.pfh-puppy-directory .pfh-puppy-card-media img {
  border-radius: 0 !important;
}

.pfh-puppy-directory .pfh-puppy-card {
  box-shadow: none !important;
}

@media (max-width: 767px) {
  .pfh-puppy-directory.pfh-elementor-section > .e-con-inner {
    width: calc(100% - 24px) !important;
  }
}

/* Pitbull Welpen final boxed width to match /unsere-welpen/ */
.pfh-puppy-directory.pfh-elementor-section,
.pfh-puppy-directory.pfh-elementor-section > .e-con-inner {
  max-width: var(--pfh-width) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.pfh-puppy-directory .pfh-puppy-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 34px !important;
  width: 100% !important;
}

.pfh-puppy-directory .pfh-puppy-grid > .e-con-inner {
  display: contents !important;
}

.pfh-puppy-directory .pfh-puppy-card {
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
}

@media (max-width: 1024px) {
  .pfh-puppy-directory .pfh-puppy-grid {
    gap: 24px !important;
  }
}

@media (max-width: 767px) {
  .pfh-puppy-directory.pfh-elementor-section,
  .pfh-puppy-directory.pfh-elementor-section > .e-con-inner {
    width: calc(100% - 24px) !important;
  }

  .pfh-puppy-directory .pfh-puppy-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* Pitbull Welpen show full images without cropping */
.pfh-puppy-directory .pfh-puppy-card-media {
  aspect-ratio: auto !important;
  overflow: visible !important;
  background: #ffffff !important;
}

.pfh-puppy-directory .pfh-puppy-card-media img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  aspect-ratio: auto !important;
}

/* Pitbull Welpen exact boxed alignment with page title */
.elementor-11 .pfh-page-hero-inner,
.elementor-11 .pfh-content.pfh-puppy-directory,
.elementor-11 .pfh-content.pfh-puppy-directory .pfh-puppy-grid {
  width: min(var(--pfh-width), calc(100% - 48px)) !important;
  max-width: var(--pfh-width) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

.elementor-11 .pfh-content.pfh-puppy-directory {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.elementor-11 .pfh-content.pfh-puppy-directory .pfh-puppy-grid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 767px) {
  .elementor-11 .pfh-page-hero-inner,
  .elementor-11 .pfh-content.pfh-puppy-directory,
  .elementor-11 .pfh-content.pfh-puppy-directory .pfh-puppy-grid {
    width: calc(100% - 24px) !important;
  }
}

/* Pitbull Welpen balanced image heights per row */
.elementor-11 .pfh-puppy-card-media {
  height: 420px !important;
  min-height: 420px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  background: #ffffff !important;
}

.elementor-11 .pfh-puppy-card-media img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  margin: 0 auto !important;
}

@media (max-width: 1024px) {
  .elementor-11 .pfh-puppy-card-media {
    height: 360px !important;
    min-height: 360px !important;
  }
}

@media (max-width: 767px) {
  .elementor-11 .pfh-puppy-card-media {
    height: 300px !important;
    min-height: 300px !important;
  }
}

/* Pitbull Welpen card CTA */
.pfh-puppy-card-actions {
  margin-top: 4px;
}

.pfh-puppy-card-actions .pfh-button {
  min-width: 180px;
}

/* Pitbull Welpen highlighted price row */
.pfh-puppy-price-row {
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  padding: 16px 18px !important;
  border: 1px solid rgba(66, 83, 12, 0.22) !important;
  background: #f4f8ea !important;
}

.pfh-puppy-price-row .pfh-puppy-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pfh-puppy-price-value {
  display: block;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  color: #162112;
}

@media (max-width: 767px) {
  .pfh-puppy-price-row {
    padding: 14px 14px !important;
  }

  .pfh-puppy-price-value {
    font-size: 19px;
  }
}

/* Pitbull Welpen Kontakt button hover color */
.pfh-puppy-card-actions .pfh-button:hover,
.pfh-puppy-card-actions .pfh-button:focus-visible {
  color: #f6d84a !important;
}

/* Pitbull Welpen full-width images like Hamlin */
.elementor-11 .pfh-puppy-card-media {
  height: auto !important;
  min-height: 0 !important;
  display: block !important;
  overflow: visible !important;
  background: #ffffff !important;
}

.elementor-11 .pfh-puppy-card-media img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  margin: 0 !important;
}

/* Amstaff Welpen mirror Pitbull Welpen page-specific layout */
.elementor-10 .pfh-page-hero-inner,
.elementor-10 .pfh-content.pfh-puppy-directory,
.elementor-10 .pfh-content.pfh-puppy-directory .pfh-puppy-grid {
  width: min(var(--pfh-width), calc(100% - 48px)) !important;
  max-width: var(--pfh-width) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

.elementor-10 .pfh-content.pfh-puppy-directory {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.elementor-10 .pfh-content.pfh-puppy-directory .pfh-puppy-grid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 767px) {
  .elementor-10 .pfh-page-hero-inner,
  .elementor-10 .pfh-content.pfh-puppy-directory,
  .elementor-10 .pfh-content.pfh-puppy-directory .pfh-puppy-grid {
    width: calc(100% - 24px) !important;
  }
}

.elementor-10 .pfh-puppy-card-media {
  height: auto !important;
  min-height: 0 !important;
  display: block !important;
  overflow: visible !important;
  background: #ffffff !important;
}

.elementor-10 .pfh-puppy-card-media img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  margin: 0 !important;
}

/* Kontakt form submit button uses theme colors */
div.wpforms-container-full .wpforms-form button[type=submit].wpforms-submit,
div.wpforms-container-full .wpforms-form input[type=submit].wpforms-submit,
div.wpforms-container-full .wpforms-form button[type=submit].wpforms-submit:focus,
div.wpforms-container-full .wpforms-form input[type=submit].wpforms-submit:focus {
  min-height: 48px !important;
  padding: 0 24px !important;
  border: 1px solid var(--pfh-accent-dark) !important;
  border-radius: 4px !important;
  background: var(--pfh-accent-dark) !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  box-shadow: none !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
}

div.wpforms-container-full .wpforms-form button[type=submit].wpforms-submit:hover,
div.wpforms-container-full .wpforms-form input[type=submit].wpforms-submit:hover,
div.wpforms-container-full .wpforms-form button[type=submit].wpforms-submit:focus-visible,
div.wpforms-container-full .wpforms-form input[type=submit].wpforms-submit:focus-visible {
  border-color: var(--pfh-accent) !important;
  background: var(--pfh-accent) !important;
  color: var(--pfh-accent-dark) !important;
}

/* Ueber uns page layout */
.pfh-about-page .pfh-page-hero-inner p {
  max-width: 920px;
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--pfh-muted);
}

.pfh-about-page .pfh-panel h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.pfh-about-image {
  margin: 0;
  border: 1px solid var(--pfh-line);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(24, 35, 27, 0.06);
}

.pfh-about-image img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.pfh-about-cta .pfh-actions {
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .pfh-about-image img {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .pfh-about-page .pfh-page-hero-inner p {
    font-size: 16px;
    line-height: 1.65;
  }

  .pfh-about-image img {
    height: 260px;
  }
}

/* Ueber uns page 2-column row enforcement */
.pfh-about-page .pfh-content > .pfh-grid,
.pfh-about-page .pfh-content > .e-con-inner > .pfh-grid,
.pfh-about-page .pfh-content .pfh-about-image-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 32px !important;
  align-items: start !important;
}

.pfh-about-page .pfh-content > .pfh-grid > .pfh-panel,
.pfh-about-page .pfh-content > .e-con-inner > .pfh-grid > .pfh-panel,
.pfh-about-page .pfh-content .pfh-about-image-grid > .pfh-about-image-card {
  min-width: 0 !important;
}

@media (max-width: 767px) {
  .pfh-about-page .pfh-content > .pfh-grid,
  .pfh-about-page .pfh-content > .e-con-inner > .pfh-grid,
  .pfh-about-page .pfh-content .pfh-about-image-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px !important;
  }
}

/* Ueber uns page 3-image split layout */
.pfh-about-page .pfh-about-split-row {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 32px !important;
  align-items: stretch !important;
}

.pfh-about-page .pfh-about-split-row > .pfh-panel,
.pfh-about-page .pfh-about-split-row > .pfh-about-image-card {
  height: 100% !important;
}

.pfh-about-page .pfh-about-copy-panel {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-height: 360px !important;
}

.pfh-about-page .pfh-about-copy-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
  height: 100%;
  justify-content: space-between;
}

.pfh-about-page .pfh-about-copy-block + .pfh-about-copy-block {
  padding-top: 22px;
  border-top: 1px solid var(--pfh-line);
}

.pfh-about-page .pfh-about-image,
.pfh-about-page .pfh-about-image img {
  height: 100%;
}

.pfh-about-page .pfh-about-image {
  min-height: 360px;
}

@media (max-width: 1024px) {
  .pfh-about-page .pfh-about-copy-panel,
  .pfh-about-page .pfh-about-image {
    min-height: 320px !important;
  }
}

@media (max-width: 767px) {
  .pfh-about-page .pfh-about-split-row {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px !important;
  }

  .pfh-about-page .pfh-about-copy-panel,
  .pfh-about-page .pfh-about-image {
    min-height: 0 !important;
  }

  .pfh-about-page .pfh-about-copy-stack {
    gap: 20px;
  }

  .pfh-about-page .pfh-about-copy-block + .pfh-about-copy-block {
    padding-top: 18px;
  }
}

/* Ueber uns page copy panel spacing */
.pfh-about-page .pfh-about-copy-panel {
  padding: 34px 36px !important;
}

@media (max-width: 1024px) {
  .pfh-about-page .pfh-about-copy-panel {
    padding: 28px 28px !important;
  }
}

@media (max-width: 767px) {
  .pfh-about-page .pfh-about-copy-panel {
    padding: 22px 20px !important;
  }
}

/* Ueber uns transparent first and last panels */
.pfh-about-page .pfh-about-intro,
.pfh-about-page .pfh-about-cta {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Gesundheitsgarantie page */
.pfh-guarantee-page .pfh-page-hero-inner {
  width: min(var(--pfh-width), calc(100% - 48px));
  max-width: var(--pfh-width);
  margin-left: auto;
  margin-right: auto;
}

.pfh-guarantee-page .pfh-guarantee-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 32px !important;
  align-items: stretch !important;
}

.pfh-guarantee-page .pfh-guarantee-panel,
.pfh-guarantee-page .pfh-guarantee-intro {
  height: 100%;
}

.pfh-guarantee-page .pfh-guarantee-intro h2 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.18;
}

.pfh-guarantee-page .pfh-guarantee-panel h3,
.pfh-guarantee-page .pfh-guarantee-intro h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.pfh-guarantee-page .pfh-guarantee-note {
  margin-top: 22px;
  padding: 20px 22px;
  border: 1px solid rgba(66, 83, 12, 0.16);
  background: #f6f8ee;
}

.pfh-guarantee-page .pfh-guarantee-note ul {
  margin: 12px 0 0 20px;
}

.pfh-guarantee-page .pfh-guarantee-note li + li {
  margin-top: 8px;
}

@media (max-width: 767px) {
  .pfh-guarantee-page .pfh-page-hero-inner {
    width: calc(100% - 24px);
  }

  .pfh-guarantee-page .pfh-guarantee-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px !important;
  }

  .pfh-guarantee-page .pfh-guarantee-intro h2 {
    font-size: 26px;
  }
}

/* Gesundheitsgarantie single-column spacing */
.pfh-guarantee-page .pfh-guarantee-grid {
  grid-template-columns: minmax(0, 1fr) !important;
}

.pfh-guarantee-page .pfh-guarantee-panel,
.pfh-guarantee-page .pfh-guarantee-intro {
  padding: 34px 38px !important;
}

@media (max-width: 1024px) {
  .pfh-guarantee-page .pfh-guarantee-panel,
  .pfh-guarantee-page .pfh-guarantee-intro {
    padding: 28px 28px !important;
  }
}

@media (max-width: 767px) {
  .pfh-guarantee-page .pfh-guarantee-panel,
  .pfh-guarantee-page .pfh-guarantee-intro {
    padding: 22px 20px !important;
  }
}

/* Gesundheitsgarantie tighter section spacing */
.pfh-guarantee-page .pfh-content {
  padding-top: 34px !important;
  padding-bottom: 34px !important;
}

.pfh-guarantee-page .pfh-content:first-of-type {
  padding-top: 42px !important;
}

.pfh-guarantee-page .pfh-content + .pfh-content {
  border-top: 1px solid rgba(66, 83, 12, 0.06) !important;
}

@media (max-width: 767px) {
  .pfh-guarantee-page .pfh-content {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .pfh-guarantee-page .pfh-content:first-of-type {
    padding-top: 30px !important;
  }
}

/* Kundenmeinungen page */
.pfh-testimonials-page .pfh-page-hero-inner,
.pfh-testimonials-page .pfh-content {
  width: min(var(--pfh-width), calc(100% - 48px));
  max-width: var(--pfh-width);
  margin-left: auto;
  margin-right: auto;
}

.pfh-testimonials-page .pfh-content {
  padding-top: 34px !important;
  padding-bottom: 34px !important;
}

.pfh-testimonials-page .pfh-testimonials-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px !important;
  margin-top: 22px;
}

.pfh-testimonials-page .pfh-testimonials-intro,
.pfh-testimonials-page .pfh-reviews-group-intro,
.pfh-testimonials-page .pfh-review-card {
  height: 100%;
}

.pfh-testimonials-page .pfh-testimonials-intro h2,
.pfh-testimonials-page .pfh-reviews-group-heading h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.pfh-testimonials-page .pfh-review-card {
  padding: 28px 28px !important;
}

.pfh-review-stars {
  color: #c9d63b;
  font-size: 18px;
  letter-spacing: 0.18em;
  line-height: 1;
}

.pfh-review-copy {
  margin-top: 16px;
}

.pfh-review-copy p {
  margin: 0;
}

.pfh-review-meta {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pfh-review-meta strong {
  font-size: 16px;
  color: var(--pfh-heading);
}

.pfh-review-meta span {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pfh-muted);
}

@media (max-width: 767px) {
  .pfh-testimonials-page .pfh-page-hero-inner,
  .pfh-testimonials-page .pfh-content {
    width: calc(100% - 24px);
  }

  .pfh-testimonials-page .pfh-content {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .pfh-testimonials-page .pfh-testimonials-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
  }

  .pfh-testimonials-page .pfh-review-card {
    padding: 22px 20px !important;
  }
}

/* Kundenmeinungen without intro/title blocks */
.pfh-testimonials-page .pfh-content > .pfh-testimonials-grid:first-child {
  margin-top: 0;
}



/* Contact page form emphasis */
.page-id-17 .pfh-panel {
  margin-bottom: 28px;
}

.page-id-17 div.wpforms-container-full {
  position: relative;
  max-width: 100%;
  margin: 8px auto 0 !important;
  padding: 34px 38px 30px !important;
  border: 1px solid var(--pfh-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(242, 247, 240, 0.98));
  box-shadow: 0 20px 44px rgba(24, 35, 27, 0.09);
  overflow: hidden;
}

.page-id-17 div.wpforms-container-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--pfh-accent), var(--pfh-accent-dark));
}

.page-id-17 div.wpforms-container-full .wpforms-form {
  position: relative;
  z-index: 1;
}

.page-id-17 div.wpforms-container-full .wpforms-field-container {
  display: grid;
  gap: 18px;
}

.page-id-17 div.wpforms-container-full .wpforms-field-label {
  color: var(--pfh-heading) !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
}

.page-id-17 div.wpforms-container-full input[type="text"],
.page-id-17 div.wpforms-container-full input[type="email"],
.page-id-17 div.wpforms-container-full input[type="tel"],
.page-id-17 div.wpforms-container-full input[type="number"],
.page-id-17 div.wpforms-container-full input[type="url"],
.page-id-17 div.wpforms-container-full select,
.page-id-17 div.wpforms-container-full textarea {
  min-height: 52px !important;
  padding: 12px 14px !important;
  border: 1px solid rgba(66, 83, 12, 0.18) !important;
  border-radius: 4px !important;
  background: #ffffff !important;
  color: var(--pfh-text) !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.page-id-17 div.wpforms-container-full textarea {
  min-height: 160px !important;
  resize: vertical;
}

.page-id-17 div.wpforms-container-full input[type="text"]:focus,
.page-id-17 div.wpforms-container-full input[type="email"]:focus,
.page-id-17 div.wpforms-container-full input[type="tel"]:focus,
.page-id-17 div.wpforms-container-full input[type="number"]:focus,
.page-id-17 div.wpforms-container-full input[type="url"]:focus,
.page-id-17 div.wpforms-container-full select:focus,
.page-id-17 div.wpforms-container-full textarea:focus {
  border-color: var(--pfh-accent-dark) !important;
  background: #fcfefb !important;
  box-shadow: 0 0 0 4px rgba(173, 214, 31, 0.16) !important;
  outline: none !important;
}

.page-id-17 div.wpforms-container-full .wpforms-submit-container {
  margin-top: 26px !important;
  padding-top: 22px !important;
  border-top: 1px solid rgba(66, 83, 12, 0.1);
}

@media (max-width: 767px) {
  .page-id-17 div.wpforms-container-full {
    padding: 24px 20px 22px !important;
  }

  .page-id-17 div.wpforms-container-full::before {
    width: 4px;
  }
}

/* Verfuegbare Welpen page */
.pfh-available-page .pfh-page-hero-inner,
.pfh-available-page .pfh-content {
  width: min(var(--pfh-width), calc(100% - 48px));
  max-width: var(--pfh-width);
  margin-left: auto;
  margin-right: auto;
}

.pfh-available-page .pfh-content {
  padding-top: 34px !important;
  padding-bottom: 34px !important;
}

.pfh-available-page .pfh-available-intro {
  padding: 40px 42px !important;
}

.pfh-available-page .pfh-available-intro p {
  margin: 0;
}

.pfh-available-page .pfh-available-grid,
.pfh-available-page .pfh-available-grid > .e-con-inner {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px !important;
  align-items: stretch !important;
}

.pfh-available-page .pfh-available-card {
  padding: 0 !important;
  overflow: hidden;
  display: block;
  height: 100%;
}

.pfh-available-page .pfh-available-card-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pfh-available-page .pfh-available-card-media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--pfh-line);
  background: #ffffff;
}

.pfh-available-page .pfh-available-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pfh-available-page .pfh-available-card-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 38px 32px 34px;
  min-height: 100%;
}

.pfh-available-page .pfh-available-card-copy .pfh-actions {
  margin-top: auto;
}

.pfh-available-page .pfh-available-card-copy .pfh-dog-tag {
  margin-bottom: 8px;
}

.pfh-available-page .pfh-available-cta {
  padding: 38px 48px !important;
}

@media (max-width: 767px) {
  .pfh-available-page .pfh-page-hero-inner,
  .pfh-available-page .pfh-content {
    width: calc(100% - 24px);
  }

  .pfh-available-page .pfh-content {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .pfh-available-page .pfh-available-intro,
  .pfh-available-page .pfh-available-cta {
    padding: 24px 20px !important;
  }

  .pfh-available-page .pfh-available-grid,
  .pfh-available-page .pfh-available-grid > .e-con-inner {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px !important;
  }

  .pfh-available-page .pfh-available-card-copy {
    padding: 28px 20px 24px;
  }
}

/* Desktop header sizing refinement */
@media (min-width: 1121px) {
  :root {
    --pfh-header-height: 50px;
  }

  .site-header.dynamic-header > .header-inner,
  .site-header > .header-inner,
  .site-header .header-inner {
    min-height: 50px !important;
  }

  .site-title a {
    min-height: 30px !important;
  }

  .site-navigation ul.menu {
    gap: 8px !important;
  }

  .site-navigation ul.menu li a {
    font-size: 13px !important;
    padding: 4px 8px !important;
    line-height: 1.15 !important;
  }

  .pfh-header-cta {
    min-height: 32px !important;
    padding: 0 14px !important;
    font-size: 12px !important;
  }
}




/* Desktop logo height clamp */
@media (min-width: 1121px) {
  :root {
    --pfh-header-height: 46px;
  }

  .site-header.dynamic-header > .header-inner,
  .site-header > .header-inner,
  .site-header .header-inner {
    min-height: 46px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .site-header .site-branding,
  .site-header .site-logo,
  .site-header .custom-logo-link {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
  }

  .site-header .site-logo {
    margin-top: -8px !important;
    margin-bottom: -8px !important;
  }

  .site-header .custom-logo,
  .site-header .site-logo img {
    display: block !important;
    width: auto !important;
    max-width: 290px !important;
    max-height: 44px !important;
    height: auto !important;
  }

  .site-navigation ul.menu li a {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
  }

  .pfh-header-cta {
    min-height: 30px !important;
  }
}


/* Desktop logo width unlock */
@media (min-width: 1121px) {
  :root {
    --pfh-header-height: 54px;
  }

  .site-header.dynamic-header > .header-inner,
  .site-header > .header-inner,
  .site-header .header-inner {
    grid-template-columns: 460px minmax(0, 1fr) auto !important;
    min-height: 54px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .site-header .site-branding,
  .site-header .site-logo,
  .site-header .custom-logo-link {
    max-width: 460px !important;
    width: 100% !important;
    overflow: visible !important;
  }

  .site-header .site-logo {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .site-header .custom-logo-link {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: 54px !important;
  }

  .site-header .custom-logo,
  .site-header .site-logo img {
    max-width: 460px !important;
    max-height: 80px !important;
    width: auto !important;
    height: auto !important;
  }

  .site-navigation ul.menu li a {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  .pfh-header-cta {
    min-height: 36px !important;
  }
}

/* Desktop header outer padding reset */
@media (min-width: 1121px) {
  .site-header.dynamic-header,
  .site-header {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-block-start: 0 !important;
    padding-block-end: 0 !important;
    min-height: 54px !important;
  }

  .site-header.dynamic-header > .header-inner,
  .site-header > .header-inner,
  .site-header .header-inner {
    align-items: center !important;
  }
}
/* Homepage hero hard height */
.elementor-9 .pfh-home.pfh-elementor-page > .pfh-hero-slider,
.elementor-9 .pfh-home.pfh-elementor-page > .pfh-hero-slider .pfh-hero-slides,
.elementor-9 .pfh-home.pfh-elementor-page > .pfh-hero-slider .pfh-hero-slide,
.elementor-9 .pfh-home.pfh-elementor-page > .pfh-hero-slider .pfh-hero-overlay,
.elementor-9 .pfh-home.pfh-elementor-page > .pfh-hero-slider .pfh-hero-inner {
  height: 550px !important;
  min-height: 550px !important;
}
.pfh-home .pfh-home-available-section {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.pfh-home .pfh-home-available-intro {
  max-width: 760px;
  margin: 0 0 24px;
}

.pfh-home .pfh-home-available-grid,
.pfh-home .pfh-home-available-grid > .e-con-inner {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 34px !important;
}

.pfh-home .pfh-home-available-grid .pfh-panel,
.pfh-home .pfh-home-available-grid .pfh-available-card {
  padding: 0 !important;
}

.pfh-home .pfh-home-available-grid .pfh-available-card-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pfh-home .pfh-home-available-grid .pfh-available-card-media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--pfh-line);
  background: #ffffff;
}

.pfh-home .pfh-home-available-grid .pfh-available-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pfh-home .pfh-home-available-grid .pfh-available-card-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 38px 32px 34px;
  min-height: 100%;
}

.pfh-home .pfh-home-available-grid .pfh-available-card-copy .pfh-actions {
  margin-top: auto;
}

.pfh-home .pfh-home-available-grid .pfh-available-card-copy .pfh-dog-tag {
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .pfh-home .pfh-home-available-grid,
  .pfh-home .pfh-home-available-grid > .e-con-inner {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px !important;
  }

  .pfh-home .pfh-home-available-grid .pfh-available-card-copy {
    padding: 28px 20px 24px;
  }
}
/* Homepage slider local images and 2.5s timing */
.elementor-9 .pfh-home.pfh-elementor-page > .pfh-hero-slider .pfh-hero-slide {
  opacity: 0 !important;
  transform: scale(1.03);
  transition: opacity 0.75s ease, transform 2.5s ease;
  will-change: opacity, transform;
  z-index: 1;
}

.elementor-9 .pfh-home.pfh-elementor-page > .pfh-hero-slider .pfh-hero-slide.is-active {
  opacity: 1 !important;
  transform: scale(1) !important;
  z-index: 2;
}
