:root {
  --bg-html: #fcfcfc;
  --bg-body: #e3e2df;
  --bg-header: #2e3035;
  --bg-header-bar: #d2cfcb;
  --bg-subheader: #f7f7f7;
  --bg-footer: #edecea;
  --bg-card: #ffffff;
  --text: #3e3e3e;
  --text-soft: #8c8b8b;
  --heading: #3c3f44;
  --heading-h3: #7d7e7e;
  --heading-h4: #444444;
  --accent: #766d62;
  --accent-dark: #4e4132;
  --blue: #2991d6;
  --menu-bg-active: #766d62;
  --dark-section: #404348;
  --footer-text: #9b958e;
  --footer-heading: #766d62;
  --border: #d5d2cc; }

* {
  box-sizing: border-box; }

html {
  background: var(--bg-html); }

body {
  margin: 0;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-body);
  -webkit-font-smoothing: antialiased; }

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

a {
  color: var(--accent);
  text-decoration: none; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Merriweather", Georgia, serif;
  color: var(--heading);
  line-height: 1.3;
  margin: 0 0 0.5em;
  font-weight: 500; }

h1 {
  font-size: 34px; }

h2 {
  font-size: 28px; }

h3 {
  font-size: 22px;
  color: var(--heading-h3); }

h4 {
  font-size: 18px;
  color: var(--heading-h4); }

h5, h6 {
  font-family: "Merienda", cursive; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  padding: 8px 14px;
  z-index: 99; }

.skip-link:focus {
  left: 0; }

.site-header {
  background: var(--bg-header-bar); }

.header-top .container {
  display: flex;
  justify-content: center;
  padding: 18px 20px; }

.header-top .logo {
  display: block;
  width: 100%; }
  .header-top .logo img {
    width: 100%;
    max-width: 860px;
    height: auto;
    display: block;
    margin: 0 auto; }

.header-bar {
  background: var(--bg-header-bar); }
  .header-bar .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px; }

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.04em; }

.main-menu a {
  display: block;
  padding: 16px 14px;
  font-family: "Merriweather", Georgia, serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--heading-h4);
  white-space: nowrap;
  border-right: 1px solid rgba(0, 0, 0, 0.08); }

.main-menu ul li:last-child a {
  border-right: 0; }

.main-menu a:hover {
  background: rgba(118, 109, 98, 0.15);
  color: var(--accent-dark); }

.main-menu a.active, .main-menu a.active:hover {
  background: var(--menu-bg-active);
  color: #fff; }

.menu-toggle {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px; }
  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px 0;
    background: #575858;
    transition: transform 0.2s; }

@media (max-width: 959px) {
  .menu-toggle {
    display: block; }
  .main-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--bg-header-bar);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease; }
    .main-menu ul {
      flex-direction: column;
      align-items: stretch;
      padding: 4px 20px 16px; }
    .main-menu a {
      padding: 12px 6px;
      white-space: normal;
      font-size: 13px;
      border-right: 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
    .main-menu ul li:last-child a {
      border-bottom: 0; }
  .main-menu.open {
    max-height: 80vh;
    overflow-y: auto; } }

.page-subheader {
  background: var(--bg-subheader);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0 26px;
  text-align: left; }
  .page-subheader h1 {
    margin: 0 0 6px;
    font-size: 25px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 0;
    color: #888888; }
  .page-subheader .breadcrumbs {
    font-size: 13px;
    color: rgba(136, 136, 136, 0.6); }
  .page-subheader .breadcrumbs a {
    color: rgba(136, 136, 136, 0.6); }
  .page-subheader .breadcrumbs .current {
    color: rgba(136, 136, 136, 0.6); }
  .page-subheader .breadcrumbs span {
    margin: 0 6px; }
  .page-subheader .home-last-update {
    font-size: 20px;
    line-height: 24px; }

.page-body {
  padding: 40px 20px 70px; }

.content > *:first-child {
  margin-top: 0; }

.content p {
  margin: 0 0 1.2em; }

.content h1, .content h2, .content h3, .content h4 {
  margin-top: 1.4em; }

.content ul, .content ol {
  padding-left: 1.4em; }

.vc-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px 14px; }
  .vc-row > .vc-col {
    padding: 0 10px;
    margin-bottom: 12px; }
  .vc-row .vc-col-1 {
    flex: 0 0 100%; }
  .vc-row .vc-col-1-2 {
    flex: 0 0 50%; }
  .vc-row .vc-col-1-3 {
    flex: 0 0 33.3333%; }
  .vc-row .vc-col-2-3 {
    flex: 0 0 66.6666%; }
  .vc-row .vc-col-1-4 {
    flex: 0 0 25%; }
  .vc-row .vc-col-3-4 {
    flex: 0 0 75%; }
  .vc-row .vc-col-1-5 {
    flex: 0 0 20%; }
  .vc-row .vc-col-1-6 {
    flex: 0 0 16.6666%; }
  .vc-row .vc-col-5-12 {
    flex: 0 0 41.6666%; }
  .vc-row .vc-col-7-12 {
    flex: 0 0 58.3333%; }
  .content .vc-row {
    margin-left: 0;
    margin-right: 0; }

.vc-col-text {
  min-width: 0; }

.vc-col-text p {
  margin: 0 0 1em; }

.vc-separator {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 24px 0; }

.vc-empty-space {
  height: 20px; }

.vc-heading {
  text-align: left; }

.vc-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  margin: 3px 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  transition: background 0.2s; }

.vc-btn:hover {
  background: var(--accent-dark);
  color: #fff; }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px; }
  .gallery .gallery-item img {
    width: 100%;
    display: block; }

.content video {
  max-width: 100%;
  height: auto; }

a.lightbox {
  display: block; }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-out; }

.lightbox-overlay.open {
  display: flex; }

.lightbox-image {
  max-width: 96vw;
  max-height: 94vh;
  object-fit: contain;
  border-radius: 4px; }

.lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  border-radius: 50%;
  z-index: 2; }
  .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3); }

body.no-scroll {
  overflow: hidden; }

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 26px;
  border: 0;
  cursor: pointer;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em; }

.btn:hover {
  background: var(--accent-dark);
  color: #fff; }

.section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 36px; }

.section-title.light {
  color: #fff; }

.home-blog {
  background-color: var(--dark-section);
  background-image: url("/home-blog-bg.webp");
  background-repeat: repeat;
  background-position: center top;
  padding: 64px 0 50px; }

.blog-slider {
  position: relative;
  overflow: hidden; }

.blog-slider-track {
  display: flex;
  transition: transform 0.5s ease; }

.blog-card {
  flex: 0 0 33.3333%;
  min-width: 0;
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column; }

.blog-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 442 / 588;
  overflow: hidden;
  max-width: 442px;
  margin: 0 auto 16px; }
  .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; }

.blog-card time {
  display: inline-block;
  align-self: center;
  padding: 4px 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 20px; }

.blog-card h3 {
  margin: 12px 0 6px;
  font-size: 26px;
  line-height: 1.4;
  color: #fff;
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: break-word;
  min-height: 72.8px;
  /* = 72.8px; Sass evaluates this, no calc() */ }
  .blog-card h3 a {
    color: #fff; }
  .blog-card h3 a:hover {
    color: #dcd8d0; }

.blog-card hr {
  width: 50px;
  border: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.35);
  margin: 14px auto; }

.slider-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 5; }

.slider-arrow.prev {
  left: 6px; }

.slider-arrow.next {
  right: 6px; }

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3); }

.wurfplanung-band {
  display: block;
  background: #e3e2df;
  text-align: center;
  padding: 44px 0;
  transition: background 0.2s; }
  .wurfplanung-band h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 400;
    color: var(--heading);
    letter-spacing: 0.1em;
    text-transform: uppercase; }

.wurfplanung-band:hover {
  background: #c1bdb5; }

.home-features {
  padding: 90px 0 70px;
  background-color: var(--bg-body); }

.home-features.has-bg {
  background-size: cover;
  background-position: center center;
  background-attachment: fixed; }

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center; }

.feature-box {
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center; }
  .feature-box img {
    width: 110px;
    height: auto;
    margin-bottom: 18px; }
  .feature-box h3 {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.06em; }
  .feature-box p {
    font-size: 15px; }
  .feature-box .feature-more {
    font-size: 13px;
    font-weight: 500; }

.home-dogs {
  background: #d9d8d6;
  padding: 70px 0 80px; }

.dogs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: center; }

.dog-card {
  flex: 1 1 260px;
  max-width: 330px;
  text-align: center;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12); }
  .dog-card img {
    width: 100%;
    display: block; }
  .dog-card .dog-card-body {
    padding: 22px 20px 26px; }
  .dog-card h3 {
    font-size: 20px;
    margin-bottom: 2px; }
  .dog-card .dog-subtitle {
    color: var(--text-soft);
    margin: 0 0 12px; }
  .dog-card .dog-details {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--accent);
    text-align: left; }

.home-content {
  padding: 60px 20px 40px; }
  .home-content .vc-row {
    justify-content: center;
    align-items: center; }
  .home-content .vc-col-text {
    text-align: center; }

.blog-archive {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px; }

.post-card {
  background: var(--bg-card);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12); }

.post-card-image {
  display: block;
  aspect-ratio: 442 / 588;
  overflow: hidden; }
  .post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.post-card-body {
  padding: 20px 22px 24px; }

.post-card time {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft); }

.post-card h2 {
  font-size: 20px;
  margin: 6px 0 10px; }

.post-card h2 a {
  color: var(--heading); }

.post-cats {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--accent); }

.page-cover {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 26px;
  display: block; }

.contact-map {
  margin-bottom: 30px; }
  .contact-map iframe {
    max-width: 100%;
    display: block; }

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px; }

.contact-address {
  flex: 1 1 320px; }

.contact-address h1 {
  font-size: 30px; }

.contact-address h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text);
  margin: 0; }

.contact-form-wrap {
  flex: 1 1 420px; }

.contact-form .form-intro {
  font-size: 13px;
  color: var(--text-soft); }

.contact-form .form-row {
  margin-bottom: 16px; }

.contact-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--heading-h4); }

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 15px;
  color: var(--text);
  background: #fff; }
  .contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(41, 145, 214, 0.25); }

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

.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  color: var(--footer-text);
  font-size: 14px; }

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 34px 20px; }

.footer-copy {
  margin: 0; }

.footer-copy a {
  color: var(--footer-text); }

.footer-copy a:hover {
  color: var(--footer-heading); }

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #65666c; }
  .footer-social:hover {
    background: var(--accent);
    color: #fff; }

.error-404 {
  text-align: center;
  padding: 60px 0; }

.error-404 h1 {
  font-size: 80px;
  margin: 0;
  color: var(--accent); }

@media (max-width: 900px) {
  .vc-row .vc-col-1-6 {
    flex: 0 0 33.3333%; }
  .vc-row .vc-col-1-5 {
    flex: 0 0 25%; }
  .vc-row .vc-col-1-4 {
    flex: 0 0 50%; }
  .vc-row .vc-col-1-3 {
    flex: 0 0 50%; }
  .blog-card {
    flex: 0 0 50%; }
  .page-subheader h1 {
    font-size: 21px;
    line-height: 26px; }
  .home-features {
    background-attachment: scroll; } }

@media (max-width: 640px) {
  h1 {
    font-size: 28px; }
  .page-subheader h1 {
    font-size: 19px;
    line-height: 23px; }
  .blog-card h3 {
    font-size: 22px;
    line-height: 30px;
    min-height: 60px; }
  .blog-card {
    padding: 0 12px; }
  .vc-row .vc-col-1-6 {
    flex: 0 0 50%; }
  .vc-row .vc-col-1-5 {
    flex: 0 0 50%; }
  .vc-row .vc-col-1-4 {
    flex: 0 0 100%; }
  .vc-row .vc-col-1-3 {
    flex: 0 0 100%; }
  .vc-row .vc-col-1-2 {
    flex: 0 0 100%; }
  .vc-row .vc-col-5-12, .vc-row .vc-col-7-12, .vc-row .vc-col-3-4, .vc-row .vc-col-2-3 {
    flex: 0 0 100%; }
  .blog-card {
    flex: 0 0 100%; }
  .blog-archive {
    grid-template-columns: 1fr; }
  .gallery {
    grid-template-columns: repeat(2, 1fr); }
  .header-top .container {
    padding: 12px 14px; } }
