/* main.css - Design system CSS, variables, base styles */
:root {
    --cream: #F4F8F7;
    --cream-dark: #E6EFEE;
    --sage: #7AB0AA;
    --sage-light: #B8D4D0;
    --sage-dark: #4A7878;
    --earth: #7AB0AA;
    --earth-light: #B8D4D0;
    --earth-dark: #2A4848;
    --forest: #345858;
    --mist: #C8E0DC;
    --stone: #7AB0AA;
    --sand: #D4A882;
    --white: #F9FDFC;
    --text-dark: #162828;
    --text-mid: #2A3E3E;
    --text-light: #4A7070;
    --gold: #D4A882;
    --gold-light: #E8C4A0;
  }

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

  html { scroll-behavior: smooth; font-size: 17px; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
  }

  strong {
    font-weight: 600;
    color: var(--forest);
  }

  /* Strong on dark backgrounds */
  #angebote strong, #achtsame-pferdekommunikation strong, #aufstellung-deep strong {
    color: var(--cream);
  }

  /* Aufstellungstag left side is light â€” strong dark */
  #aufstellungstag .event-content strong {
    color: var(--forest);
    font-weight: 700;
  }

  /* Aufstellungstag right card is dark â€” strong cream */
  #aufstellungstag .event-card strong {
    color: var(--cream);
  }

  #bridge strong {
    color: var(--forest) !important;
    font-weight: 700;
  }

  h1, h2, h3, h4, blockquote {
    font-family: 'Cormorant Garamond', serif;
  }

  .serif { font-family: 'Cormorant Garamond', serif; }
  .sans { font-family: 'Jost', sans-serif; }

  /* â”€â”€â”€ NAV â”€â”€â”€ */
/* main.css - Design system CSS, variables, base styles */
:root {
    --cream: #F4F8F7;
    --cream-dark: #E6EFEE;
    --sage: #7AB0AA;
    --sage-light: #B8D4D0;
    --sage-dark: #4A7878;
    --earth: #7AB0AA;
    --earth-light: #B8D4D0;
    --earth-dark: #2A4848;
    --forest: #345858;
    --mist: #C8E0DC;
    --stone: #7AB0AA;
    --sand: #D4A882;
    --white: #F9FDFC;
    --text-dark: #162828;
    --text-mid: #2A3E3E;
    --text-light: #4A7070;
    --gold: #D4A882;
    --gold-light: #E8C4A0;
  }

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

  html { scroll-behavior: smooth; font-size: 17px; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
  }

  strong {
    font-weight: 600;
    color: var(--forest);
  }

  /* Strong on dark backgrounds */
  #angebote strong, #achtsame-pferdekommunikation strong, #aufstellung-deep strong {
    color: var(--cream);
  }

  /* Aufstellungstag left side is light â€” strong dark */
  #aufstellungstag .event-content strong {
    color: var(--forest);
    font-weight: 700;
  }

  /* Aufstellungstag right card is dark â€” strong cream */
  #aufstellungstag .event-card strong {
    color: var(--cream);
  }

  #bridge strong {
    color: var(--forest) !important;
    font-weight: 700;
  }

  h1, h2, h3, h4, blockquote {
    font-family: 'Cormorant Garamond', serif;
  }

  .serif { font-family: 'Cormorant Garamond', serif; }
  .sans { font-family: 'Jost', sans-serif; }

  /* â”€â”€â”€ NAV â”€â”€â”€ */
  .site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; flex-direction: column; align-items: center;
    background: rgba(248,250,249,0.97);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    padding: 0.8rem 2rem 0;
  }

  .nav-top {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; padding-bottom: 0.6rem;
    width: 100%; transition: all 0.4s ease;
  }

  .nav-brand {
    display: flex; align-items: center; gap: 1rem; text-decoration: none;
    transition: all 0.4s ease;
  }

  .nav-logo-img {
    height: 170px; width: auto; object-fit: contain; border-radius: 6px;
    transition: all 0.4s ease;
  }

  .nav-brand-text { display: flex; align-items: center; gap: 0.6rem; transition: all 0.4s ease; }
  .nav-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 2.1rem; font-weight: 400; color: var(--forest); letter-spacing: 0.04em; }
  .nav-brand-dot { color: var(--sand); font-size: 1.25rem; line-height: 1; transform: translateY(-0.04em); }
  .nav-brand-desc { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-style: italic; color: var(--sage); letter-spacing: 0.04em; }
  .tagline-title em { color: var(--sage); font-style: italic; }

  .nav-bottom {
    width: 100%; display: flex; justify-content: center;
    border-top: 1px solid rgba(122,176,170,0.15); padding: 0.5rem 0;
    transition: all 0.4s ease;
  }

  /* SCROLLED STATE */
  .site-nav.scrolled {
    flex-direction: row; justify-content: space-between; padding: 0.4rem 2rem;
    background: rgba(248,250,249,0.99);
    border-bottom: 1px solid rgba(122,176,170,0.15);
  }

  .site-nav.scrolled .nav-top {
    width: auto; padding-bottom: 0; justify-content: flex-start;
  }

  .site-nav.scrolled .nav-logo-img {
    height: 45px;
  }

  .site-nav.scrolled .nav-brand-desc,
  .site-nav.scrolled .nav-brand-dot {
    display: none;
  }

  .site-nav.scrolled .nav-brand-name {
    font-size: 1.45rem;
  }

  .site-nav.scrolled .nav-bottom {
    width: auto; border-top: none; padding: 0;
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--forest);
    text-decoration: none;
  }

  .nav-logo span { color: var(--sage); font-style: italic; }

  .nav-links {
    display: flex; gap: 0.7rem; list-style: none;
    align-items: center; flex-wrap: nowrap;
  }

  .nav-links a, .nav-dropdown-toggle {
    font-size: 0.65rem; letter-spacing: 0.05em; text-transform: uppercase;
    color: var(--text-mid); text-decoration: none;
    transition: color 0.3s; white-space: nowrap;
  }

  .nav-links a:hover { color: var(--sage-dark); }

  .hero-quote-below {
    position: relative;
    padding: 3rem 2.5rem 0;
    background: transparent;
    z-index: 5;
    margin-bottom: 2rem;
  }

  .nav-cta {
    font-size: 0.75rem !important;
    letter-spacing: 0.12em;
    background: var(--forest) !important;
    color: var(--cream) !important;
    padding: 0.65rem 1.5rem;
    border-radius: 2px;
    transition: background 0.3s !important;
    margin-left: 0 !important;
    text-align: left;
  }
  .nav-links li:last-child {
    margin-left: 0;
  }
  .nav-cta:hover { background: var(--sage-dark) !important; color: var(--white) !important; }

  .nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; margin-left: auto; z-index: 110; position: relative; }
  .nav-burger span { display: block; width: 24px; height: 1.5px; background: var(--forest); transition: all 0.3s; }

  .nav-burger {
    appearance: none;
    background: transparent;
    border: 0;
    padding: 0;
  }

  .nav-mobile-meta {
    display: none;
  }

  body.nav-is-open {
    overflow: hidden;
  }

  .pferde-media {
    padding: 0;
    overflow: hidden;
  }

  .pferde-image,
  .event-inline-image,
  .kontakt-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .pferde-cta {
    background: rgba(244,248,247,0.12) !important;
    color: var(--cream) !important;
    border: 1px solid rgba(212,168,130,0.3);
  }

  .kontakt-image-card {
    margin-top: 2rem;
    border-radius: 1.1rem;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(22,40,40,0.16);
  }

  .kontakt-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .kontakt-inline-form input,
  .kontakt-inline-form select,
  .kontakt-inline-form textarea {
    width: 100%;
  }

  .blog-overview {
    background: linear-gradient(180deg, rgba(249,253,252,0.85) 0%, rgba(244,248,247,0.96) 100%);
  }

  .blog-overview-header {
    max-width: 760px;
    margin-bottom: 3.5rem;
  }

  .blog-overview-intro {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 620px;
    line-height: 1.85;
    margin-top: 1rem;
  }

  .blog-group + .blog-group {
    margin-top: 4rem;
  }

  .blog-group-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .blog-group-line {
    width: 2.5rem;
    height: 1px;
    background: var(--gold);
    display: block;
  }

  .blog-group-head h3 {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    font-family: 'Jost', sans-serif;
    font-weight: 500;
  }

  .blog-card {
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(122,176,170,0.14);
    border-radius: 1.2rem;
    padding: 1.25rem;
    box-shadow: 0 18px 45px rgba(35,68,68,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .blog-card-image-link {
    display: block;
    border-radius: 0.95rem;
    overflow: hidden;
    margin-bottom: 1.2rem;
    aspect-ratio: 4 / 3;
  }

  .blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .blog-card-title a {
    color: inherit;
    text-decoration: none;
  }

  .blog-card-subtitle {
    font-size: 0.95rem;
    color: var(--sage-dark);
    margin-top: 0.75rem;
  }

  .blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: auto;
    padding-top: 1.25rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
  }

  .blog-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    align-self: flex-start;
    text-decoration: none;
    color: var(--forest);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(52,88,88,0.2);
    padding-bottom: 0.25rem;
  }

  .article-hero {
    padding: 12rem 0 4rem;
    background:
      radial-gradient(circle at top right, rgba(122,176,170,0.18), transparent 32%),
      linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  }

  .article-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 3rem;
    align-items: end;
  }

  .article-back-link {
    grid-column: 1 / -1;
    text-decoration: none;
    color: var(--sage-dark);
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .article-meta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage-dark);
  }

  .article-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--forest);
  }

  .article-subtitle {
    margin-top: 1.2rem;
    font-size: 1.08rem;
    color: var(--text-mid);
    max-width: 40rem;
  }

  .article-hero-image-wrap {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(35,68,68,0.16);
    aspect-ratio: 4 / 4.5;
  }

  .article-hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .article-content-section {
    padding: 0 0 6rem;
    background: linear-gradient(180deg, rgba(244,248,247,0.96), rgba(249,253,252,0.94));
  }

  .article-content-wrap {
    max-width: 860px;
  }

  .article-entry {
    background: rgba(255,255,255,0.78);
    border-radius: 1.5rem;
    box-shadow: 0 24px 55px rgba(35,68,68,0.10);
    padding: 3rem;
    border: 1px solid rgba(122,176,170,0.12);
  }

  .article-content h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
    font-weight: 400;
    color: var(--forest);
    margin: 2.3rem 0 1rem;
  }

  .article-content p,
  .article-content li {
    font-size: 1.02rem;
    color: var(--text-mid);
    line-height: 1.9;
    font-weight: 300;
  }

  .article-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
  }

  body:not(.page-template-page-home) .section-pad,
  body:not(.page-template-page-home) .section-pad-lg {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  body:not(.page-template-page-home) .bio-layout,
  body:not(.page-template-page-home) .pferde-layout,
  body:not(.page-template-page-home) .aufstellung-layout,
  body:not(.page-template-page-home) .kontakt-layout,
  body:not(.page-template-page-home) .event-layout {
    align-items: stretch;
    gap: 4rem;
  }

  body:not(.page-template-page-home) .bio-content,
  body:not(.page-template-page-home) .pferde-content,
  body:not(.page-template-page-home) .aufstellung-content,
  body:not(.page-template-page-home) .kontakt-info {
    max-width: 42rem;
  }

  body:not(.page-template-page-home) .bio-image-frame,
  body:not(.page-template-page-home) .pferde-frame,
  body:not(.page-template-page-home) .aufstellung-frame {
    border-radius: 1.4rem;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(35,68,68,0.14);
  }

  body:not(.page-template-page-home) .quali-item,
  body:not(.page-template-page-home) .wert-item,
  body:not(.page-template-page-home) .testimonial,
  body:not(.page-template-page-home) .faq-item {
    border-radius: 1.15rem;
    box-shadow: 0 16px 42px rgba(35,68,68,0.07);
    border: 1px solid rgba(122,176,170,0.12);
  }
