  @font-face {
    font-family: 'Pirulen';
    src: url('pirulen_rg.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

  /* Bildschutz */
  img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    pointer-events: auto;
  }

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

  :root {
    --sand: #e8e0d5;
    --linen: #f2ede7;
    --warm-grey: #9a9189;
    --dark: #3a3530;
    --brown: #a0623a;
    --brown-hover: #8a5230;
    --text: #4a4540;
  }

  body {
    font-family: 'Jost', sans-serif;
    color: var(--text);
    background: var(--linen);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 48px;
    background: rgba(242, 237, 231, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(154,145,137,0.15);
  }

  .logo {
    display: flex; align-items: center;
    text-decoration: none;
  }
  .logo img {
    height: 48px; width: auto;
  }

  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }
  .nav-links a {
    text-decoration: none; color: var(--dark);
    font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 400; position: relative; padding-bottom: 2px;
    transition: color 0.2s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--brown);
    transition: width 0.3s ease;
  }
  .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
  .nav-links a.active { color: var(--brown); }

  /* Hamburger button - hidden on desktop */
  .nav-hamburger {
    display: none;
    flex-direction: column; justify-content: space-between;
    width: 24px; height: 18px;
    cursor: pointer; background: none; border: none; padding: 0;
    z-index: 101;
  }
  .nav-hamburger span {
    display: block; width: 100%; height: 1.5px;
    background: var(--dark); transition: all 0.3s ease;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(8.25px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-8.25px) rotate(-45deg); }

  .nav-search { cursor: pointer; color: var(--dark); opacity: 0.7; }

  /* ── PAGES ── */
  .page { display: none; }
  .page.active { display: block; }

  /* ── HOME HERO ── */
  .hero {
    height: 100vh; position: relative;
    display: flex; align-items: center; justify-content: flex-end;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(
      135deg,
      #c4bdb0 0%, #b8c4ba 25%, #d4cbbf 50%, #bfc8c0 75%, #e8e0d5 100%
    );
    display: flex; align-items: center; justify-content: center;
  }
  /* Placeholder for actual photo */


  .hero-overlay { display: none; }
  .hero-content {
    position: relative; z-index: 2;
    text-align: right; padding-right: 8%; max-width: 600px;
    animation: fadeUp 1.2s ease both;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 300; line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
    letter-spacing: 0.05em; text-transform: uppercase;
  }
  .hero-buttons {
    display: flex; gap: 16px; justify-content: flex-end;
    margin-top: 36px;
  }
  .btn-outline {
    padding: 13px 28px; border: 1.5px solid rgba(255,255,255,0.8);
    color: #fff; background: transparent;
    font-family: 'Jost', sans-serif;
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s;
    text-decoration: none; display: inline-block;
  }
  .btn-outline:hover { background: rgba(255,255,255,0.15); }
  .btn-brown {
    padding: 13px 28px; border: 1.5px solid var(--brown);
    color: #fff; background: var(--brown);
    font-family: 'Jost', sans-serif;
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s;
    text-decoration: none; display: inline-block;
  }
  .btn-brown:hover { background: var(--brown-hover); border-color: var(--brown-hover); }

  /* ── HOME SECTION 2 ── */
  .home-tagline {
    text-align: center; padding: 70px 48px 50px;
    font-family: 'Pirulen', 'Cormorant Garamond', serif;
    font-size: clamp(14px, 1.8vw, 20px);
    letter-spacing: 0.2em; color: var(--warm-grey);
    text-transform: uppercase; font-weight: 400;
  }

  .home-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; padding: 0 48px 80px;
  }
  .home-card {
    position: relative; overflow: hidden; cursor: pointer;
    aspect-ratio: 4/3;
  }
  .home-card-img {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.5s ease;
  }
  .home-card:hover .home-card-img { transform: scale(1.04); }
  /* Nature-toned placeholder backgrounds */
  .card-wolf  { background: linear-gradient(135deg, #c4b89a, #d4c8a8, #a89878); }
  .card-bear  { background: linear-gradient(135deg, #b8c4a0, #c8d4a8, #8a9870); }
  .card-deer  { background: linear-gradient(135deg, #c8b890, #d8c8a0, #b0985c); }
  .card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
    padding: 40px 24px 20px; color: #fff;
  }
  .card-category {
    font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
    font-weight: 400; opacity: 0.9;
  }
  .card-desc {
    font-size: 12px; letter-spacing: 0.08em; margin-top: 4px; opacity: 0.8;
  }
  .btn-card {
    display: inline-block; margin-top: 12px;
    padding: 8px 20px; background: rgba(100,80,60,0.7);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
    cursor: pointer; transition: background 0.3s; text-decoration: none;
  }
  .btn-card-brown { background: rgba(160,98,58,0.85); }
  .btn-card:hover { background: rgba(160,98,58,0.9); }


 /* ── PRINTS PAGE ── */
  .prints-hero {
    height: 65vh; position: relative;
    display: flex; align-items: center; justify-content: flex-end;
    overflow: hidden;
  }
  .prints-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(
      120deg, #c0bab0 0%, #b4c0b2 30%, #ccc4b8 60%, #d8d0c4 100%
    );
  }
  .prints-hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 25% 65%, rgba(160,120,70,0.3) 0%, transparent 50%);
  }
  /* Overlay for kalender hero – darkens right side where text sits */
  .page-kalender .prints-hero-bg::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
      to left,
      rgba(20,18,15,0.65) 0%,
      rgba(20,18,15,0.35) 50%,
      rgba(20,18,15,0.05) 100%
    );
  }
  .page-kalender .prints-hero-content {
    color: #fff;
  }
  .page-kalender .prints-hero-title {
    color: #fff;
  }
  .page-kalender .prints-hero-text {
    color: rgba(255,255,255,0.88);
  }
  .page-kalender .prints-features li {
    color: rgba(255,255,255,0.85);
  }
  .page-kalender .prints-features li::before {
    background: #fff;
  }
  .prints-hero-content {
    position: relative; z-index: 2;
    padding-right: 8%; padding-top: 80px; max-width: 520px;
    animation: fadeUp 1s ease both;
  }
  .prints-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300; color: var(--dark);
    line-height: 1.2; margin-bottom: 20px;
  }
  .prints-hero-text {
    font-size: 16px; line-height: 1.7; color: var(--text);
    margin-bottom: 24px;
  }
  .prints-features {
    list-style: none; margin-bottom: 32px;
  }
  .prints-features li {
    font-size: 15px; padding: 5px 0; display: flex; align-items: center; gap: 10px;
    color: var(--text);
  }
  .prints-features li::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--dark); flex-shrink: 0;
  }
  .prints-features li.heart::before {
    content: '♥'; background: none; color: var(--brown);
    font-size: 12px; width: auto; height: auto;
  }

  /* ── MOTIV SECTION ── */
  .section {
    padding: 100px 80px;
    background: #f5f0ea;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 300; text-align: center;
    margin-bottom: 48px; color: var(--dark);
    letter-spacing: 0.02em;
  }

  .motiv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-bottom: 20px;
  }
  .motiv-row2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; max-width: 66.66%; margin: 0 auto;
  }
  .motiv-card {
    position: relative;
    min-height: 200px;
    max-height: 300px;
    overflow: hidden;
    border-radius: 2px;
    transition: transform 0.3s;
}
.motiv-card:hover { transform: translateY(-4px); }  
  .motiv-card:hover { transform: translateY(-4px); }
  .motiv-card.selected .motiv-img-wrap { outline: 2.5px solid var(--brown); outline-offset: 3px; }
  .motiv-img-wrap {
    aspect-ratio: 4/3; overflow: hidden;
    border-radius: 2px;
  }
  .motiv-img {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: transform 0.5s;
  }
  .motiv-card:hover .motiv-img { transform: scale(1.04); }
  /* Placeholder colors matching the warmth of original photos */
  .motiv-butterfly { background: linear-gradient(135deg, #d4c8b0, #e0d4b8, #c4b890); }
  .motiv-fox       { background: linear-gradient(135deg, #c8b898, #d8c8a8, #b09870); }
  .motiv-wolf-fog  { background: linear-gradient(135deg, #b8c0b0, #c8d0c0, #a0a898); }
  .motiv-bear      { background: linear-gradient(135deg, #b0b898, #c0c8a8, #909870); }
  .motiv-deer-aut  { background: linear-gradient(135deg, #c8b880, #d8c890, #b89850); }
  .motiv-label {
    text-align: center; font-size: 14px; color: var(--text);
    margin-top: 10px; letter-spacing: 0.04em;
  }

  /* ── SIZES SECTION ── */
  .sizes-section { padding: 60px 48px; background: var(--linen); }
  .sizes-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 12px; margin-bottom: 36px;
  }
  .size-card {
    background: #fff; border: 1px solid rgba(154,145,137,0.2);
    padding: 20px; text-align: center;
    border-radius: 2px;
  }
  .size-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 400; color: var(--dark);
  }
  .size-stock {
    font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--warm-grey); margin-top: 6px;
  }

  .btn-brown-full {
    display: block; width: 100%; max-width: 480px; margin: 0 auto;
    padding: 18px; background: var(--brown);
    color: #fff; text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 10.5px; letter-spacing: 0.25em; text-transform: uppercase;
    cursor: pointer; border: none; transition: background 0.3s;
    text-decoration: none;
  }
  .btn-brown-full:hover { background: var(--brown-hover); }

  .prints-footnote {
    text-align: center; font-size: 14px; color: var(--warm-grey);
    margin-top: 28px; line-height: 1.7;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .fade-in.visible { opacity: 1; transform: none; }

  /* ── ÜBER MICH ── */
  .prints-hero-bg-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to right, rgba(15,12,10,0.6) 0%, rgba(15,12,10,0.25) 60%, rgba(15,12,10,0.05) 100%);
  }
  .ueber-hero-content { color: #fff; }
  .ueber-eyebrow {
    font-size: 42px; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.9); margin-bottom: 16px;
    font-family: 'Jost', sans-serif; font-weight: 200;
  }
  .ueber-intro {
    display: grid; grid-template-columns: 1fr 280px; gap: 80px;
    max-width: 1000px; margin: 0 auto; padding: 0 40px;
  }
  .ueber-section-heading {
    font-family: 'Cormorant Garamond', serif; font-size: 26px;
    font-weight: 400; color: var(--dark); margin-bottom: 24px;
    letter-spacing: 0.02em;
  }
  .ueber-section-heading.light { color: #fff; }
  .ueber-text {
    font-size: 17px; line-height: 1.95; color: var(--text);
    margin-bottom: 20px; font-family: 'Jost', sans-serif; font-weight: 300;
  }
  .ueber-text.light { color: rgba(255,255,255,0.82); }
  .ueber-values {
    display: flex; flex-direction: column; gap: 16px;
    justify-content: center;
  }
  .ueber-value-item {
    border-left: 2px solid var(--sand); padding: 12px 24px;
  }
  .ueber-value-word {
    font-family: 'Cormorant Garamond', serif; font-size: 22px;
    font-style: italic; color: var(--dark); letter-spacing: 0.03em;
  }
  .ueber-dark-section {
    background: #1e1c19; margin: 0; padding: 100px 80px;
  }
  .ueber-two-col {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    max-width: 1000px; margin: 0 auto;
  }
  .ueber-handwerk-list {
    display: flex; flex-direction: column; gap: 12px; justify-content: center;
  }
  .ueber-handwerk-item {
    border: 1px solid rgba(255,255,255,0.15); padding: 16px 24px;
    font-family: 'Jost', sans-serif; font-size: 15px; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(255,255,255,0.7);
  }
  .ueber-natur { max-width: 700px; margin: 0 auto; text-align: center; padding: 0 40px; }
  .ueber-moments {
    display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
    margin: 32px 0;
  }
  .ueber-moment {
    font-family: 'Cormorant Garamond', serif; font-size: 19px;
    font-style: italic; color: var(--dark);
  }
  .ueber-moment-divider { color: var(--warm-grey); font-size: 18px; }
  .ueber-merkmale-section { background: var(--linen); margin: 0; padding: 100px 80px; }
  .ueber-merkmale {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
    max-width: 1000px; margin: 0 auto;
  }
  .ueber-merkmal {
    text-align: center; padding: 32px 20px;
    background: #fff; border: 1px solid rgba(154,145,137,0.2);
  }
  .ueber-merkmal-icon {
    font-size: 20px; color: var(--sand); margin-bottom: 14px;
  }
  .ueber-merkmal p {
    font-size: 14px; letter-spacing: 0.06em; color: var(--text);
    font-family: 'Jost', sans-serif; line-height: 1.7;
  }

  /* ── FOOTER ── */
  .site-footer {
    background: #1a1815; padding: 40px 80px;
    text-align: center;
  }
  .footer-inner { max-width: 900px; margin: 0 auto; }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif; font-size: 18px;
    color: rgba(255,255,255,0.5); letter-spacing: 0.2em;
    text-transform: uppercase; margin-bottom: 16px;
  }
  .footer-links {
    display: flex; justify-content: center; gap: 12px;
    margin-bottom: 14px;
  }
  .footer-links a {
    font-family: 'Jost', sans-serif; font-size: 11px;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.45); text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: rgba(255,255,255,0.85); }
  .footer-divider { color: rgba(255,255,255,0.2); font-size: 11px; }
  .footer-copy {
    font-family: 'Jost', sans-serif; font-size: 10px;
    color: rgba(255,255,255,0.25); letter-spacing: 0.08em;
  }

  /* ── LEGAL PAGES ── */
  .legal-section { background: #f5f0ea; }
  .legal-container { max-width: 720px; margin: 0 auto; padding: 0 40px; }
  .legal-title {
    font-family: 'Cormorant Garamond', serif; font-size: 36px;
    font-weight: 400; color: var(--dark); margin-bottom: 32px;
    letter-spacing: 0.02em;
  }
  .legal-hint {
    background: #fff3cd; border-left: 3px solid #e8a020;
    padding: 12px 16px; font-size: 13px; color: #7a5a10;
    font-family: 'Jost', sans-serif; margin-bottom: 40px;
    border-radius: 2px;
  }
  .legal-heading {
    font-family: 'Jost', sans-serif; font-size: 14px;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--dark); margin: 32px 0 10px; font-weight: 500;
  }
  .legal-text {
    font-family: 'Jost', sans-serif; font-size: 16px;
    line-height: 1.9; color: var(--text); font-weight: 300;
  }

  /* ── KALENDER ── */
  .kalender-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .kalender-card {
    border-radius: 2px; overflow: hidden;
    background: #fff;
    border: 1px solid rgba(154,145,137,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .kalender-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .kalender-month {
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--warm-grey); padding: 10px 14px;
    font-family: 'Jost', sans-serif; font-weight: 400;
    background: #fff;
  }
  .kalender-img {
    aspect-ratio: 3/2; background-size: cover; background-position: center;
  }
  .kalender-preview {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px; margin: 0 auto;
  }
  .kalender-info-box {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 12px; margin-bottom: 36px;
  }
  .kalender-detail {
    background: #fff; border: 1px solid rgba(154,145,137,0.2);
    padding: 20px; text-align: center; border-radius: 2px;
  }
  .kalender-detail-label {
    display: block; font-size: 9px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--warm-grey); margin-bottom: 8px;
  }
  .kalender-detail-value {
    display: block; font-family: 'Cormorant Garamond', serif;
    font-size: 17px; font-weight: 400; color: var(--dark);
  }

  /* ── CONTACT MODAL ── */
  .modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 200;
    background: rgba(58,53,48,0.6); backdrop-filter: blur(4px);
    align-items: center; justify-content: center;
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: var(--linen); padding: 48px; max-width: 480px; width: 90%;
    animation: fadeUp 0.4s ease;
  }
  .modal h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 300; margin-bottom: 24px; color: var(--dark);
  }
  .modal input:not([type="checkbox"]), .modal textarea, .modal select {
    display: block; width: 100%; padding: 12px 16px;
    border: 1px solid rgba(154,145,137,0.35); background: #fff;
    font-family: 'Jost', sans-serif; font-size: 15px; color: var(--text);
    margin-bottom: 14px; outline: none; transition: border-color 0.2s;
    border-radius: 0; -webkit-appearance: none; appearance: none;
  }
  .modal select {
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9189' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 16px center;
    padding-right: 40px; cursor: pointer;
  }
  .modal input:not([type="checkbox"]):focus, .modal textarea:focus, .modal select:focus { border-color: var(--brown); }
  .modal textarea { min-height: 100px; resize: vertical; }
  .modal-close {
    position: absolute; top: 16px; right: 20px; cursor: pointer;
    font-size: 22px; color: var(--warm-grey); background: none; border: none;
  }
  .modal { position: relative; }
  .modal-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
  .modal-cancel { font-size: 12px; color: var(--warm-grey); cursor: pointer; letter-spacing: 0.1em; text-transform: uppercase; }
  .modal-cancel:hover { color: var(--text); }
  .modal-consent {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 14px; cursor: pointer;
  }
  .modal-consent input[type="checkbox"] {
    width: 16px; height: 16px; margin-top: 2px;
    flex-shrink: 0; accent-color: var(--brown);
    cursor: pointer;
  }
  .modal-consent span {
    font-family: 'Jost', sans-serif; font-size: 12px;
    color: var(--warm-grey); line-height: 1.6; font-weight: 300;
  }
  .modal-consent a {
    color: var(--brown); text-decoration: underline;
  }

  /* ── LIGHTBOX ── */
  .lightbox-overlay {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.92); justify-content: center; align-items: center;
    cursor: zoom-out;
  }
  .lightbox-overlay.open { display: flex; }
  .lightbox-img {
    max-width: 90vw; max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
    animation: lightboxIn 0.25s ease;
  }
  @keyframes lightboxIn {
    from { opacity: 0; transform: scale(0.94); }
    to   { opacity: 1; transform: scale(1); }
  }
  .lightbox-close {
    position: fixed; top: 24px; right: 32px;
    color: rgba(255,255,255,0.7); font-size: 36px; cursor: pointer;
    line-height: 1; font-weight: 200; font-family: 'Jost', sans-serif;
    transition: color 0.2s;
  }
  .lightbox-close:hover { color: #fff; }
  .lightbox-caption {
    position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
    font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(255,255,255,0.55);
  }
  .motiv-img-wrap { cursor: zoom-in; }

  /* ── PRINTS HERO CUSTOM ── */
  .prints-hero-custom {
    background-size: cover;
    background-position: 50% center;
    height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
  }
  .prints-hero-custom::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(
      to right,
      rgba(20,18,15,0.15) 0%,
      rgba(20,18,15,0.25) 40%,
      rgba(20,18,15,0.55) 70%,
      rgba(20,18,15,0.70) 100%
    );
    z-index: 1;
  }
  .prints-hero-custom .prints-hero-content {
    position: relative; z-index: 2;
  }
  .prints-content-right {
    margin-left: 55%;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  }
  .kalender-content-right {
    margin-left: 70%;
    padding-right: 2%;
  }
  .motiv-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .motiv-card-fixed {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
  }
  .motiv-card-fixed img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
  }
  .motiv-label-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    margin: 0; padding: 12px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    font-size: 12px;
  }
  .ueber-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 0;
  }

  /* ── WILDVOGELHILFE PAGE ── */
  .spende-hero {
    position: relative; overflow: hidden;
    min-height: 75vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: #fff;
    background-size: cover; background-position: center;
  }
  .spende-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.55) 50%,
      rgba(0,0,0,0.35) 100%
    );
  }
  .spende-hero-inner {
    position: relative; z-index: 2;
    padding: 160px 80px 80px;
    max-width: 750px;
  }
  .spende-hero-icon { font-size: 48px; margin-bottom: 20px; }
  .spende-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 48px); font-weight: 300;
    margin-bottom: 12px; letter-spacing: 0.02em;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  }
  .spende-hero-sub {
    font-family: 'Jost', sans-serif; font-size: 15px;
    color: rgba(255,255,255,0.85); font-weight: 300;
    margin-bottom: 28px; letter-spacing: 0.04em;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  }
  .spende-hero-text {
    font-family: 'Jost', sans-serif; font-size: 16px;
    line-height: 1.9; color: rgba(255,255,255,0.8); font-weight: 300;
    max-width: 650px; margin: 0 auto 24px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
  }
  .spende-hero-hint {
    font-family: 'Jost', sans-serif; font-size: 12px;
    color: rgba(255,255,255,0.5); font-weight: 300;
    max-width: 550px; margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
  }
  .spende-section {
    padding: 80px 80px; max-width: 800px; margin: 0 auto;
  }
  .spende-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 3vw, 32px); font-weight: 400;
    color: var(--dark); margin-bottom: 20px; letter-spacing: 0.02em;
  }
  .spende-text {
    font-family: 'Jost', sans-serif; font-size: 16px;
    line-height: 1.9; color: var(--text); font-weight: 300;
    margin-bottom: 20px;
  }
  .spende-list {
    list-style: none; margin: 20px 0;
  }
  .spende-list li {
    font-family: 'Jost', sans-serif; font-size: 15px;
    color: var(--text); font-weight: 300;
    padding: 6px 0; display: flex; align-items: center; gap: 12px;
    line-height: 1.6;
  }
  .spende-list li::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--brown); flex-shrink: 0;
  }
  .spende-highlight {
    background: #fff; border-left: 3px solid var(--brown);
    padding: 20px 28px; margin: 28px 0;
    font-family: 'Jost', sans-serif; font-size: 17px;
    color: var(--dark); font-weight: 400; letter-spacing: 0.02em;
  }
  .spende-highlight strong {
    color: var(--brown); font-weight: 500;
  }
  .spende-divider {
    width: 60px; height: 1px; background: var(--warm-grey);
    margin: 0 auto; opacity: 0.4;
  }
  .spende-back-link {
    display: inline-block; margin-top: 32px;
    font-family: 'Jost', sans-serif; font-size: 12px;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--brown); text-decoration: none;
    transition: color 0.2s;
  }
  .spende-back-link:hover { color: var(--brown-hover); }

  /* Kalender spende button */
  .kalender-spende-banner {
    background: #f5f0ea; text-align: center;
    padding: 40px 24px; border-top: 1px solid rgba(154,145,137,0.15);
  }
  .kalender-spende-text {
    font-family: 'Jost', sans-serif; font-size: 15px;
    color: var(--text); font-weight: 300; margin-bottom: 16px;
    line-height: 1.7;
  }
  .btn-spende {
    display: inline-block; padding: 13px 32px;
    background: #2a3a2a; color: #fff; border: none;
    font-family: 'Jost', sans-serif; font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase;
    cursor: pointer; text-decoration: none;
    transition: background 0.3s;
  }
  .btn-spende:hover { background: #3a4a3a; }

  /* ══════════════════════════════════════════════
     RESPONSIVE – MUSS AM ENDE STEHEN!
     ══════════════════════════════════════════════ */

  /* ── TABLET (bis 1024px) ── */
  @media (max-width: 1024px) {
    .ueber-merkmale { grid-template-columns: repeat(3, 1fr); }
    .kalender-grid { grid-template-columns: repeat(3, 1fr); }
    .kalender-info-box { grid-template-columns: repeat(2, 1fr); }
    .sizes-grid { grid-template-columns: repeat(2, 1fr); }
    .ueber-intro { grid-template-columns: 1fr; gap: 40px; }
    .ueber-two-col { grid-template-columns: 1fr; gap: 40px; }
    .section { padding: 60px 40px; }
    .ueber-dark-section { padding: 60px 40px; }
    .ueber-merkmale-section { padding: 60px 40px; }
  }

  /* ── TABLET KLEIN / GROßES HANDY (bis 768px) ── */
  @media (max-width: 768px) {
    .feld-teaser-grid { grid-template-columns: 1fr !important; gap: 24px !important; }

    nav { padding: 12px 16px; }
    .logo img { height: 36px; }
    .nav-links { gap: 14px; }
    .nav-links a { font-size: 9px; letter-spacing: 0.1em; }
    .nav-search svg { width: 16px; height: 16px; }

    .hero { height: 70vh; justify-content: center; }
    .hero-overlay {
      display: block;
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.0) 0%,
        rgba(0,0,0,0.45) 20%,
        rgba(0,0,0,0.55) 50%,
        rgba(0,0,0,0.45) 80%,
        rgba(0,0,0,0.0) 100%
      );
    }
    .hero-content {
      text-align: center; padding-right: 5%; padding-left: 5%; max-width: 100%;
      z-index: 2;
    }
    .hero-title {
      font-size: clamp(24px, 6vw, 36px);
      text-shadow: 0 2px 16px rgba(0,0,0,0.6);
    }
    .hero-buttons { justify-content: center; flex-wrap: wrap; gap: 10px; }

    .prints-hero { height: auto; min-height: 75vh; justify-content: center; align-items: center; }
    .prints-hero-custom { height: auto !important; min-height: 75vh !important; }
    .prints-hero-content {
      margin-left: 0 !important; margin-right: 0 !important;
      padding: 100px 24px 40px !important; max-width: 100%; text-align: center;
    }
    .page-prints .prints-hero-content,
    .page-kalender .prints-hero-content {
      background: transparent;
    }
    .page-prints .prints-hero-custom::before,
    .page-kalender .prints-hero-custom::before {
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.0) 0%,
        rgba(0,0,0,0.45) 15%,
        rgba(0,0,0,0.55) 50%,
        rgba(0,0,0,0.45) 85%,
        rgba(0,0,0,0.0) 100%
      );
    }
    .page-prints .prints-hero-title,
    .page-kalender .prints-hero-title { color: #fff !important; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
    .page-prints .prints-hero-text,
    .page-kalender .prints-hero-text { color: #fff !important; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
    .page-prints .prints-features li,
    .page-kalender .prints-features li { color: #fff !important; text-shadow: 0 1px 6px rgba(0,0,0,0.4); }
    .page-prints .prints-features li::before,
    .page-kalender .prints-features li::before { background: #fff !important; }
    .prints-content-right { margin-left: 0; text-align: center; }
    .kalender-content-right { margin-left: 0; padding-right: 0; text-align: center; }
    .motiv-grid-2col { grid-template-columns: 1fr 1fr; gap: 12px; }
    .motiv-card-fixed img { height: 200px; }
    .ueber-hero-img { top: 0; }
    .prints-hero-title { font-size: clamp(22px, 5vw, 32px); }
    .prints-hero-text { font-size: 13px; }
    .prints-features { display: inline-block; text-align: left; }
    .prints-features li { font-size: 12px; }

    .home-tagline { padding: 40px 24px 30px; font-size: 14px; letter-spacing: 0.15em; }
    .home-grid { grid-template-columns: 1fr; gap: 2px; padding: 0 16px 40px; }
    .home-card { aspect-ratio: 16/10; min-height: 220px; }

    .motiv-grid { grid-template-columns: 1fr 1fr !important; gap: 12px; }
    .motiv-row2 { grid-template-columns: 1fr 1fr; max-width: 100%; gap: 12px; }
    .motiv-card { min-height: 180px; }

    .section { padding: 50px 24px; }
    .section-title { font-size: 24px; margin-bottom: 32px; }

    .kalender-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .kalender-info-box { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .sizes-section { padding: 40px 24px; }
    .sizes-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    .ueber-intro { grid-template-columns: 1fr; gap: 32px; padding: 0 24px; }
    .ueber-two-col { grid-template-columns: 1fr; gap: 32px; }
    .ueber-dark-section { padding: 50px 24px; }
    .ueber-merkmale-section { padding: 50px 24px; }
    .ueber-merkmale { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ueber-natur { padding: 0 16px; }
    .ueber-eyebrow { font-size: 28px; letter-spacing: 0.15em; }

    .site-footer { padding: 32px 24px; }
    .footer-links { flex-wrap: wrap; gap: 8px; }
    .modal { padding: 32px 24px; width: 95%; }
    .legal-container { padding: 0 20px; }
    .legal-title { font-size: 28px; }
    .legal-section { padding-top: 100px !important; }
    .spende-hero { min-height: auto; }
    .spende-hero-inner { padding: 100px 24px 50px; }
    .spende-hero-overlay {
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.6) 20%,
        rgba(0,0,0,0.65) 50%,
        rgba(0,0,0,0.6) 80%,
        rgba(0,0,0,0.2) 100%
      );
    }
    .spende-section { padding: 50px 24px; }
  }

  /* ── HANDY (bis 480px) ── */
  @media (max-width: 480px) {
    nav { padding: 10px 12px; }
    .logo img { height: 32px; }
    .nav-links { gap: 8px; }
    .nav-links a { font-size: 7.5px; letter-spacing: 0.06em; }

    .hero { height: 60vh; }
    .hero-title { font-size: clamp(20px, 5.5vw, 28px); }
    .hero-buttons { flex-direction: column; align-items: center; gap: 8px; }
    .btn-outline, .btn-brown { padding: 11px 24px; font-size: 9px; width: 100%; max-width: 260px; text-align: center; }

    .prints-hero { height: auto; min-height: 70vh; }
    .prints-hero-custom { height: auto !important; min-height: 70vh !important; }
    .prints-content-right { margin-left: 0; }
    .kalender-content-right { margin-left: 0; padding-right: 0; }
    .motiv-grid-2col { grid-template-columns: 1fr !important; gap: 10px; }
    .motiv-card-fixed img { height: 220px; }
    .prints-hero-title { font-size: clamp(20px, 5vw, 26px); }
    .prints-hero-text { font-size: 12px; }
    .prints-features li { font-size: 11px; }

    .home-grid { padding: 0 12px 30px; }
    .home-card { aspect-ratio: 16/9; min-height: 180px; }
    .card-overlay { padding: 24px 16px 14px; }
    .card-category { font-size: 9px; }
    .card-desc { font-size: 11px; }

    .motiv-grid { grid-template-columns: 1fr !important; gap: 10px; }
    .motiv-row2 { grid-template-columns: 1fr; max-width: 100%; gap: 10px; }
    .motiv-card { min-height: 200px; }

    .section { padding: 40px 16px; }
    .section-title { font-size: 20px; margin-bottom: 24px; }

    .kalender-grid { grid-template-columns: 1fr; gap: 10px; }
    .kalender-info-box { grid-template-columns: 1fr 1fr; gap: 8px; }
    .kalender-detail { padding: 14px; }
    .sizes-grid { grid-template-columns: 1fr; gap: 8px; }

    .ueber-intro { padding: 0 16px; }
    .ueber-section-heading { font-size: 22px; }
    .ueber-text { font-size: 14px; }
    .ueber-merkmale { grid-template-columns: 1fr 1fr; gap: 10px; }
    .ueber-merkmal { padding: 20px 14px; }
    .ueber-moments { gap: 8px; }
    .ueber-moment { font-size: 16px; }
    .ueber-eyebrow { font-size: 22px; letter-spacing: 0.1em; }
    .ueber-handwerk-item { font-size: 11px; padding: 12px 16px; }

    .site-footer { padding: 24px 16px; }
    .footer-logo { font-size: 15px; }
    .footer-links a { font-size: 9px; }
    .footer-copy { font-size: 9px; }
    .modal { padding: 24px 18px; }
    .modal h2 { font-size: 22px; }
    .lightbox-close { top: 16px; right: 20px; font-size: 28px; }
    .lightbox-caption { font-size: 10px; bottom: 16px; }
  }

  /* ── SEHR KLEINE HANDYS (bis 360px) ── */
  @media (max-width: 360px) {
    nav { padding: 8px 8px; }
    .nav-links a { font-size: 7px; letter-spacing: 0.04em; }
    .nav-links { gap: 6px; }
    .hero-title { font-size: 18px; }
    .prints-hero-title { font-size: 18px; }
    .ueber-eyebrow { font-size: 18px; }
  }

  /* ── SERIEN SECTION ── */
  .serien-section {
    padding: 80px 80px;
    background: var(--linen);
    text-align: center;
  }
  .serien-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 300; color: var(--dark);
    letter-spacing: 0.02em; margin-bottom: 28px;
  }
  .serien-text {
    font-family: 'Jost', sans-serif; font-size: 16px;
    line-height: 1.9; color: var(--text); font-weight: 300;
    max-width: 700px; margin: 0 auto 20px;
  }
  .serien-divider {
    width: 60px; height: 1px; background: var(--warm-grey);
    margin: 32px auto; opacity: 0.5;
  }
  .serien-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 400; color: var(--dark);
    margin-bottom: 16px; letter-spacing: 0.02em;
  }
  .serien-features {
    list-style: none; display: inline-block; text-align: left;
    margin-bottom: 24px;
  }
  .serien-features li {
    font-family: 'Jost', sans-serif; font-size: 15px;
    color: var(--text); font-weight: 300;
    padding: 4px 0; display: flex; align-items: center; gap: 10px;
  }
  .serien-features li::before {
    content: ''; width: 5px; height: 5px; border-radius: 50%;
    background: var(--brown); flex-shrink: 0;
  }
  .serien-note {
    font-family: 'Jost', sans-serif; font-size: 13px;
    color: var(--warm-grey); font-weight: 300;
    font-style: italic; margin-top: 20px;
  }
  .serien-row-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px; font-weight: 400; font-style: italic;
    color: var(--dark); letter-spacing: 0.02em;
    margin: 36px auto 12px; max-width: 900px;
  }
  .serien-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: 36px auto 0;
  }
  .serien-card {
    position: relative; overflow: hidden; border-radius: 4px;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #d4cec4, #c8c0b4, #beb6aa);
  }
  .serien-card img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .serien-card-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 8px; color: #fff; font-size: 10px;
    letter-spacing: 0.08em;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    font-family: 'Jost', sans-serif;
  }


/* Multi-page: remove SPA display logic */
.page { display: block; }

/* Kontakt page inline form */
.kontakt-input {
  display: block; width: 100%; padding: 12px 16px;
  border: 1px solid rgba(154,145,137,0.35); background: #fff;
  font-family: 'Jost', sans-serif; font-size: 15px; color: #3a3632;
  margin-bottom: 14px; outline: none; transition: border-color 0.2s;
  border-radius: 0;
}
.kontakt-input:focus { border-color: #a0623a; }
.kontakt-textarea { min-height: 120px; resize: vertical; }
.kontakt-select {
  -webkit-appearance: none; appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9189' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 16px center;
  padding-right: 40px; cursor: pointer;
}
