:root {
    --bg: #f3ebd9;
    --bg-soft: #ebe1cc;
    --paper: #faf4e6;
    --ink: #1a1d18;
    --ink-soft: #4a4d44;
    --muted: #8a8270;
    --green: #25382c;
    --green-deep: #15211a;
    --rust: #b25a37;
    --rust-soft: #d68e6c;
    --line: rgba(26, 29, 24, 0.12);

    --serif: "Fraunces", "Times New Roman", serif;
    --sans: "Manrope", system-ui, -apple-system, sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* Subtle paper grain overlay */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: 0.35;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.07 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  }

  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }

  .container {
    width: min(1280px, 92vw);
    margin: 0 auto;
  }

  /* ==================== TOP BAR ==================== */
  .topbar {
    background: var(--green-deep);
    color: var(--bg);
    font-family: var(--sans);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.7rem 0;
  }
  .topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
  .topbar .left { opacity: 0.75; }
  .topbar .right { display: flex; gap: 1.5rem; }
  .topbar a { transition: color .2s; }
  .topbar a:hover { color: var(--rust-soft); }

  /* ==================== NAV ==================== */
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(243, 235, 217, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
    gap: 2rem;
  }
  .logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .logo .mark {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--green);
    letter-spacing: -0.01em;
  }
  .logo .sub {
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.35rem;
  }
  .nav-links {
    display: flex;
    gap: 1.7rem;
    list-style: none;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .nav-links a {
    position: relative;
    padding-bottom: 4px;
    transition: color .25s;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--rust);
    transition: width .35s ease;
  }
  .nav-links a:hover { color: var(--rust); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--green);
    color: var(--paper);
    padding: 0.7rem 1.3rem;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 999px;
    transition: background .25s, transform .25s;
  }
  .nav-cta:hover { background: var(--rust); transform: translateY(-1px); }

  .menu-toggle { display: none; background: none; border: none; cursor: pointer; }
  .menu-toggle svg { width: 28px; height: 28px; stroke: var(--green); }

  /* ==================== HERO ==================== */
  .hero {
    position: relative;
    padding: 3.5rem 0 4rem;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: -10%; right: -15%;
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(178, 90, 55, 0.18), transparent 60%);
    pointer-events: none;
  }
  .hero .container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
    position: relative;
  }
  .hero-text .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  .hero-text .eyebrow::before {
    content: "";
    width: 36px; height: 1px;
    background: var(--rust);
  }
  .hero-text h1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.6rem, 6.3vw, 5.4rem);
    line-height: 0.98;
    color: var(--green-deep);
    letter-spacing: -0.02em;
    margin-bottom: 1.8rem;
  }
  .hero-text h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--rust);
  }
  .hero-text .lead {
    font-size: 1.05rem;
    color: var(--ink-soft);
    max-width: 30rem;
    margin-bottom: 2.5rem;
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.8rem;
    font-size: 0.83rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 999px;
    transition: transform .25s, background .25s, color .25s;
    border: 1px solid transparent;
  }
  .btn-primary { background: var(--green); color: var(--paper); }
  .btn-primary:hover { background: var(--rust); transform: translateY(-2px); }
  .btn-ghost { color: var(--green-deep); border-color: var(--green-deep); }
  .btn-ghost:hover { background: var(--green-deep); color: var(--paper); }
  .btn .arrow {
    display: inline-block;
    transition: transform .25s;
  }
  .btn:hover .arrow { transform: translateX(4px); }

  .hero-meta {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
  }
  .hero-meta .stat .num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 2.2rem;
    color: var(--green);
    line-height: 1;
  }
  .hero-meta .stat .label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.4rem;
  }

  /* Hero visual */
  .hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
  }
  .hero-frame {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(21, 33, 26, 0.55), rgba(21, 33, 26, 0.05)),
      linear-gradient(160deg, #4a5a3e, #2a3a2a 50%, #6e5236 100%);
    border-radius: 4px;
    overflow: hidden;
  }
  .hero-frame::after {
    content: "";
  }
  .hero-tag {
    position: absolute;
    top: -1.5rem; left: -1.5rem;
    background: var(--paper);
    padding: 1rem 1.3rem;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(21, 33, 26, 0.15);
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--green-deep);
    z-index: 2;
  }
  .hero-tag span { color: var(--rust); }
  .hero-stamp {
    position: absolute;
    bottom: -2rem; right: -1rem;
    width: 130px; height: 130px;
    border-radius: 50%;
    background: var(--rust);
    color: var(--paper);
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-style: italic;
    text-align: center;
    line-height: 1.1;
    font-size: 0.85rem;
    z-index: 2;
    transform: rotate(-8deg);
    box-shadow: 0 8px 30px rgba(178, 90, 55, 0.35);
  }
  .hero-stamp span {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
  }

  /* ==================== MARQUEE ==================== */
  .marquee {
    background: var(--green-deep);
    color: var(--bg);
    padding: 1.4rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .marquee-track {
    display: flex;
    gap: 3rem;
    animation: scroll 35s linear infinite;
    white-space: nowrap;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.4rem;
    font-weight: 300;
  }
  .marquee-track span { display: flex; align-items: center; gap: 3rem; }
  .marquee-track .dot {
    width: 6px; height: 6px;
    background: var(--rust);
    border-radius: 50%;
    flex-shrink: 0;
  }
  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ==================== SECTION HEADERS ==================== */
  section { padding: 4rem 0; position: relative; }
  .section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--line);
  }
  .section-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--rust);
    margin-bottom: 0.8rem;
  }
  .section-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2rem, 4.2vw, 3.6rem);
    line-height: 1.05;
    color: var(--green-deep);
    letter-spacing: -0.015em;
    max-width: 22ch;
  }
  .section-title em { font-style: italic; color: var(--rust); }
  .section-aside {
    max-width: 22rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
    text-align: right;
  }

  /* ==================== ABOUT ==================== */
  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
  }
  .about-image {
    aspect-ratio: 5 / 6;
    background:
      linear-gradient(140deg, rgba(21, 33, 26, 0.4), transparent 60%),
      linear-gradient(180deg, #6b7a5a 0%, #3a4a35 100%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }
  .about-image::after { content: ""; }
  .about-text h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--rust);
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  .about-text p {
    color: var(--ink-soft);
    margin-bottom: 1.3rem;
    font-size: 1.02rem;
  }
  .about-text .signature {
    margin-top: 2rem;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--green-deep);
  }
  .about-text .signature small {
    display: block;
    font-family: var(--sans);
    font-style: normal;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.4rem;
  }

  /* ==================== PILLARS ==================== */
  .pillars {
    background: var(--bg-soft);
  }
  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .pillar {
    padding: 3rem 2rem;
    border-right: 1px solid var(--line);
    transition: background .35s;
  }
  .pillar:last-child { border-right: none; }
  .pillar:hover { background: var(--paper); }
  .pillar .num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 2.2rem;
    color: var(--rust);
    margin-bottom: 1rem;
  }
  .pillar h4 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--green-deep);
    margin-bottom: 1rem;
    line-height: 1.15;
  }
  .pillar p {
    color: var(--ink-soft);
    font-size: 0.95rem;
  }

  /* ==================== TV FEATURE ==================== */
  .tv-feature { padding: 1.5rem 0 3rem; }
  .tv-feature-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0;
    background: var(--green-deep);
    color: var(--paper);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 18px 50px rgba(21, 33, 26, 0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
  }
  .tv-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(21, 33, 26, 0.28);
  }
  .tv-feature-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0a0c0b;
  }
  .tv-feature-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transition: transform 0.5s ease;
    display: block;
  }
  .tv-feature-card:hover .tv-feature-media img { transform: scale(1.04); }
  .tv-feature-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(21,33,26,0.4) 0%, transparent 45%, rgba(21,33,26,0.55) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .tv-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--rust);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(178, 90, 55, 0.25), 0 14px 30px rgba(21, 33, 26, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
  }
  .tv-play svg { transform: translateX(2px); }
  .tv-feature-card:hover .tv-play {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 0 0 14px rgba(178, 90, 55, 0.3), 0 14px 30px rgba(21, 33, 26, 0.4);
  }
  .tv-channel-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--paper);
    color: var(--green-deep);
    padding: 0.55rem 0.85rem 0.5rem;
    border-radius: 4px;
    line-height: 1;
    font-family: var(--sans);
    box-shadow: 0 4px 14px rgba(21, 33, 26, 0.18);
  }
  .tv-channel-badge span {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 0.2rem;
    font-weight: 500;
  }
  .tv-channel-badge strong {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--rust);
  }

  .tv-feature-body {
    padding: 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .tv-feature-eyebrow {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--rust-soft);
    margin-bottom: 0.9rem;
    letter-spacing: 0;
  }
  .tv-feature-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--paper);
    margin: 0 0 1rem;
  }
  .tv-feature-title em { font-style: italic; color: var(--rust-soft); }
  .tv-feature-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(250, 244, 230, 0.78);
    margin: 0 0 1.5rem;
  }
  .tv-feature-text strong { color: var(--paper); font-weight: 600; }
  .tv-feature-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rust-soft);
    font-weight: 600;
    transition: color 0.2s, gap 0.2s;
  }
  .tv-feature-cta .arrow { transition: transform 0.25s ease; }
  .tv-feature-card:hover .tv-feature-cta { color: var(--paper); gap: 0.7rem; }
  .tv-feature-card:hover .tv-feature-cta .arrow { transform: translateX(4px); }

  @media (max-width: 900px) {
    .tv-feature-card { grid-template-columns: 1fr; }
    .tv-feature-body { padding: 2rem 1.8rem 2.2rem; }
    .tv-feature-media { aspect-ratio: 16 / 9; }
  }

  /* ==================== LITTERS ==================== */
  .litters .litter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .litter-card {
    background: var(--paper);
    border-radius: 4px;
    overflow: hidden;
    transition: transform .35s, box-shadow .35s;
    border: 1px solid var(--line);
  }
  .litter-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(21, 33, 26, 0.12);
  }
  .litter-image {
    aspect-ratio: 16 / 10;
    background:
      linear-gradient(180deg, rgba(21, 33, 26, 0.05), rgba(21, 33, 26, 0.45)),
      linear-gradient(135deg, #8a7654 0%, #4a5a3e 100%);
    position: relative;
    overflow: hidden;
  }
  .litter-card:nth-child(2) .litter-image {
    background:
      linear-gradient(180deg, rgba(21, 33, 26, 0.05), rgba(21, 33, 26, 0.45)),
      linear-gradient(135deg, #b25a37 0%, #5a3a2a 100%);
  }
  .litter-image::after { content: ""; }
  .litter-image .badge {
    position: absolute;
    top: 1.2rem; left: 1.2rem;
    background: var(--paper);
    color: var(--green-deep);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .litter-image .badge.available { background: var(--rust); color: var(--paper); }
  .litter-body { padding: 2rem; }
  .litter-meta {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.8rem;
  }
  .litter-card h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1.9rem;
    color: var(--green-deep);
    margin-bottom: 0.8rem;
    line-height: 1.15;
  }
  .litter-card p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .litter-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 600;
  }
  .litter-link:hover { color: var(--green-deep); }
  .litter-link .arrow { transition: transform .25s; }
  .litter-link:hover .arrow { transform: translateX(5px); }

  /* ==================== DOGS GRID ==================== */
  .dogs {
    background: var(--green-deep);
    color: var(--bg);
  }
  .dogs .section-num { color: var(--rust-soft); }
  .dogs .section-title { color: var(--bg); }
  .dogs .section-aside { color: rgba(243, 235, 217, 0.7); }
  .dogs .section-head { border-bottom-color: rgba(243, 235, 217, 0.15); }

  .dogs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .dog-card {
    cursor: pointer;
  }
  .dog-image {
    aspect-ratio: 3 / 4;
    background: linear-gradient(180deg, #4a5a3e, #2a3a2a);
    border-radius: 4px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform .4s;
  }
  .dog-card:nth-child(1) .dog-image { background: linear-gradient(160deg, #8a7654, #3a4a35); }
  .dog-card:nth-child(2) .dog-image { background: linear-gradient(160deg, #b25a37, #5a3a2a); }
  .dog-card:nth-child(3) .dog-image { background: linear-gradient(160deg, #6b7a5a, #2a3a2a); }
  .dog-card:nth-child(4) .dog-image { background: linear-gradient(160deg, #a08566, #4a3a2a); }
  .dog-card:hover .dog-image { transform: scale(1.02); }
  .dog-image::after { content: ""; }
  .dog-image .role {
    position: absolute;
    top: 1rem; right: 1rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--paper);
    background: rgba(0,0,0,0.4);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
  }
  .dog-image::before {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 45%;
    background: linear-gradient(180deg, transparent 0%, rgba(21, 33, 26, 0.85) 75%, rgba(21, 33, 26, 0.95) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .dog-card-label {
    position: absolute;
    left: 1rem; right: 1rem; bottom: 1rem;
    z-index: 2;
    color: var(--paper);
  }
  .dog-card h4 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--paper);
    margin-bottom: 0.2rem;
    line-height: 1.1;
  }
  .dog-card .pedigree {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    color: rgba(250, 244, 230, 0.78);
  }

  .dogs-cta {
    margin-top: 4rem;
    text-align: center;
  }
  .dogs-cta .btn-ghost { color: var(--paper); border-color: var(--paper); }
  .dogs-cta .btn-ghost:hover { background: var(--paper); color: var(--green-deep); }

  /* ==================== TESTIMONIAL ==================== */
  .testimonial { padding: 5rem 0; }
  .testimonial blockquote {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.6rem, 3.2vw, 2.6rem);
    line-height: 1.3;
    color: var(--green-deep);
    letter-spacing: -0.01em;
    position: relative;
  }
  .testimonial blockquote::before {
    content: "“";
    position: absolute;
    top: -3rem; left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    color: var(--rust);
    opacity: 0.3;
    line-height: 1;
    font-weight: 400;
  }
  .testimonial cite {
    display: block;
    margin-top: 2.5rem;
    font-family: var(--sans);
    font-style: normal;
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
  }
  /* ==================== REVIEWS SLIDER ==================== */
  .reviews-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
  }
  .reviews-stars {
    color: #e8a93b;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    line-height: 1;
  }
  .reviews-rating-num {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
  }
  .reviews-rating-num strong {
    font-weight: 600;
    color: var(--green-deep);
  }

  .reviews-slider {
    position: relative;
    margin-top: 1.5rem;
  }
  .reviews-viewport {
    overflow: hidden;
    margin: 0 -0.5rem;
  }
  .reviews-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .review-card {
    flex: 0 0 calc(100% / 3);
    box-sizing: border-box;
    padding: 1.5rem 1.5rem 1.3rem;
    margin: 0 0.5rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(21, 33, 26, 0.04);
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  }
  .reviews-slider[data-per-view="2"] .review-card { flex-basis: calc(50% - 1rem); }
  .reviews-slider[data-per-view="1"] .review-card { flex-basis: calc(100% - 1rem); }
  .reviews-slider[data-per-view="3"] .review-card { flex-basis: calc((100% / 3) - 1rem); }
  .review-card:hover {
    border-color: rgba(178, 90, 55, 0.4);
    box-shadow: 0 6px 22px rgba(21, 33, 26, 0.1);
  }

  .review-head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.9rem;
  }
  .review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    flex-shrink: 0;
  }
  .review-meta { flex: 1; min-width: 0; }
  .review-name {
    font-weight: 600;
    color: var(--green-deep);
    font-size: 0.92rem;
    line-height: 1.2;
    margin-bottom: 0.2rem;
  }
  .review-sub {
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.02em;
  }
  .review-src {
    display: inline-block;
    padding: 0.05rem 0.4rem;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-left: 0.2rem;
  }
  .review-src-gg { background: rgba(66, 133, 244, 0.12); color: #1a73e8; }
  .review-src-fb { background: rgba(24, 119, 242, 0.12); color: #1877f2; }

  .review-stars {
    color: #e8a93b;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 0.2rem;
  }
  .review-body {
    font-family: var(--sans);
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0;
    flex: 1;
  }

  .reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--paper);
    border: 1px solid var(--line);
    color: var(--green-deep);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sans);
    transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
    padding: 0 0 4px 0;
    box-shadow: 0 2px 10px rgba(21, 33, 26, 0.08);
  }
  .reviews-nav-prev { left: -20px; }
  .reviews-nav-next { right: -20px; }
  .reviews-nav:hover {
    background: var(--green-deep);
    color: var(--paper);
    border-color: var(--green-deep);
    transform: translateY(-50%) scale(1.05);
  }

  .reviews-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
  }
  .reviews-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    background: rgba(21, 33, 26, 0.18);
    border: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, width 0.3s;
  }
  .reviews-dot:hover { background: rgba(21, 33, 26, 0.35); }
  .reviews-dot.is-active {
    background: var(--rust);
    width: 24px;
    border-radius: 4px;
  }

  .reviews-cta {
    margin-top: 2.2rem;
    text-align: center;
  }

  .reviews-form {
    max-width: 640px;
    margin: 2rem auto 0;
    padding: 2rem 2rem 1.7rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(21, 33, 26, 0.08);
  }
  .reviews-form h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--green-deep);
    margin: 0 0 0.4rem;
  }
  .reviews-form-intro {
    font-size: 0.88rem;
    color: var(--ink-soft);
    margin: 0 0 1.4rem;
    line-height: 1.5;
  }
  .reviews-form label {
    display: block;
    margin-bottom: 1rem;
  }
  .reviews-form label span {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.4rem;
    font-weight: 500;
  }
  .reviews-form label em {
    color: var(--rust);
    font-style: normal;
  }
  .reviews-form input,
  .reviews-form select,
  .reviews-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 0.95rem;
    line-height: 1.4;
    transition: border-color 0.2s, background 0.2s;
  }
  .reviews-form input:focus,
  .reviews-form select:focus,
  .reviews-form textarea:focus {
    outline: 0;
    border-color: var(--rust);
    background: var(--paper);
  }
  .reviews-form textarea { resize: vertical; min-height: 110px; }
  .reviews-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
  }
  .reviews-form-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
  }
  .reviews-form-note {
    margin: 1rem 0 0;
    font-size: 0.72rem;
    color: var(--muted);
    line-height: 1.5;
  }

  @media (max-width: 720px) {
    .reviews-nav-prev { left: 0; }
    .reviews-nav-next { right: 0; }
    .reviews-nav { width: 38px; height: 38px; font-size: 1.4rem; }
    .reviews-form { padding: 1.5rem 1.3rem; }
    .reviews-form-row { grid-template-columns: 1fr; }
    .review-card article { padding: 1.2rem 1.2rem 1rem; }
  }
  @media (max-width: 500px) {
    .reviews-rating { align-items: flex-start; }
  }

  /* ==================== SOCIAL ==================== */
  .social {
    background: var(--bg-soft);
  }
  .social .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
  }
  .social-text h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    color: var(--green-deep);
    margin-bottom: 1.5rem;
  }
  .social-text h2 em { font-style: italic; color: var(--rust); }
  .social-text p {
    color: var(--ink-soft);
    margin-bottom: 2rem;
    max-width: 30rem;
  }
  .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .social-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.2rem;
    border: 1px solid var(--green-deep);
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background .25s, color .25s;
  }
  .social-pill:hover { background: var(--green-deep); color: var(--paper); }

  .social-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 100px);
    gap: 0.6rem;
  }
  .mosaic-tile {
    background: linear-gradient(135deg, #4a5a3e, #2a3a2a);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }
  /* Real photos placed inside placeholders */
  .hero-frame > img,
  .about-image > img,
  .litter-image > img,
  .dog-image > img,
  .mosaic-tile > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .litter-image .badge,
  .dog-image .role { z-index: 2; }
  .mosaic-tile:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: linear-gradient(160deg, #8a7654, #3a4a35);
  }
  .mosaic-tile:nth-child(2) {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    background: linear-gradient(135deg, #b25a37, #5a3a2a);
  }
  .mosaic-tile:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
    background: linear-gradient(180deg, #6b7a5a, #25382c);
  }
  .mosaic-tile:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    background: linear-gradient(135deg, #a08566, #4a3a2a);
  }
  .mosaic-tile:nth-child(5) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    background: linear-gradient(135deg, #5a4a3a, #2a2a1a);
  }
  .mosaic-tile:nth-child(6) {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
    background: linear-gradient(135deg, #b25a37, #6b3a2a);
  }

  /* ==================== CTA ==================== */
  .cta {
    background: var(--rust);
    color: var(--paper);
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
  }
  .cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><circle cx='30' cy='30' r='1' fill='rgba(250,244,230,0.15)'/></svg>");
    opacity: 0.5;
  }
  .cta-content { position: relative; z-index: 1; }
  .cta .eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  .cta h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.05;
    max-width: 24ch;
    margin: 0 auto 2.5rem;
    letter-spacing: -0.015em;
  }
  .cta h2 em { font-style: italic; }
  .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .cta .btn-primary { background: var(--paper); color: var(--green-deep); }
  .cta .btn-primary:hover { background: var(--green-deep); color: var(--paper); }
  .cta .btn-ghost { color: var(--paper); border-color: var(--paper); }
  .cta .btn-ghost:hover { background: var(--paper); color: var(--rust); }

  /* ==================== FOOTER ==================== */
  footer {
    background: var(--green-deep);
    color: var(--bg);
    padding: 5rem 0 2rem;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(243, 235, 217, 0.12);
  }
  .footer-brand .mark {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.8rem;
    color: var(--paper);
    margin-bottom: 0.4rem;
  }
  .footer-brand .sub {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(243, 235, 217, 0.55);
    margin-bottom: 1.5rem;
  }
  .footer-brand p {
    font-size: 0.9rem;
    color: rgba(243, 235, 217, 0.7);
    max-width: 22rem;
  }
  .footer-col h5 {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rust-soft);
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 0.7rem; }
  .footer-col a {
    font-size: 0.92rem;
    color: rgba(243, 235, 217, 0.75);
    transition: color .2s;
  }
  .footer-col a:hover { color: var(--rust-soft); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.78rem;
    color: rgba(243, 235, 217, 0.5);
  }
  .footer-bottom a {
    color: rgba(243, 235, 217, 0.7);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .2s, border-color .2s;
  }
  .footer-bottom a:hover {
    color: var(--rust-soft);
    border-bottom-color: var(--rust-soft);
  }

  /* ==================== ANIMATIONS ==================== */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ==================== SKIP TO CONTENT (a11y) ==================== */
  .skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    background: var(--green-deep);
    color: var(--paper);
    padding: 0.85rem 1.4rem;
    font-family: var(--sans);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 0 0 6px 0;
    text-decoration: none;
  }
  .skip-link:focus {
    left: 0;
    outline: 2px solid var(--rust);
    outline-offset: 2px;
  }

  /* ==================== BACK-TO-TOP ==================== */
  .back-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: var(--green-deep);
    color: var(--paper);
    border: none;
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .3s, transform .3s, background .25s;
    box-shadow: 0 10px 30px rgba(21, 33, 26, 0.25);
    z-index: 90;
  }
  .back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .back-to-top:hover {
    background: var(--rust);
    transform: translateY(-3px);
  }
  .back-to-top svg {
    width: 22px;
    height: 22px;
  }
  @media (max-width: 720px) {
    .back-to-top {
      right: 1rem;
      bottom: 1rem;
      width: 42px;
      height: 42px;
    }
  }

  /* ==================== PAIEMENT (Alma) ==================== */
  .payment {
    padding: 4rem 0;
    background: var(--bg-soft);
  }
  .payment-card {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 2.5rem 2.8rem;
    box-shadow: 0 14px 40px rgba(21, 33, 26, 0.06);
  }
  .payment-text .section-num {
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 0.9rem;
  }
  .payment-text h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    line-height: 1.1;
    color: var(--green-deep);
    letter-spacing: -0.015em;
    margin-bottom: 0.9rem;
  }
  .payment-text h2 em { font-style: italic; color: var(--rust); }
  .payment-text p {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.6;
  }
  .payment-text .payment-brand {
    color: var(--green-deep);
    font-weight: 600;
  }
  .payment-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .payment-pill {
    background: var(--green-deep);
    color: var(--paper);
    border-radius: 10px;
    padding: 1.2rem 1.4rem;
    text-align: center;
    min-width: 86px;
  }
  .payment-pill strong {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1;
    color: var(--rust-soft);
  }
  .payment-pill span {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(243, 235, 217, 0.75);
  }
  .payment-note {
    margin-top: 1.2rem;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
  }
  @media (max-width: 760px) {
    .payment { padding: 3rem 0; }
    .payment-card { grid-template-columns: 1fr; gap: 2rem; padding: 1.8rem 1.6rem; }
  }

  /* ==================== WORLD MAP (accueil) ==================== */
  .worldmap {
    padding: 5rem 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
  }
  .worldmap-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }
  .worldmap-head .section-num {
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 0.8rem;
  }
  .worldmap-head h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    color: var(--green-deep);
    letter-spacing: -0.015em;
  }
  .worldmap-head h2 em { font-style: italic; color: var(--rust); }
  .worldmap-aside {
    max-width: 26rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .worldmap-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(21, 33, 26, 0.15);
    border: 1px solid var(--line);
  }
  .worldmap-frame iframe {
    display: block;
    width: 100%;
    height: 520px;
    border: 0;
  }
  @media (max-width: 720px) {
    .worldmap { padding: 3.5rem 0; }
    .worldmap-frame iframe { height: 400px; }
  }

  /* ==================== FAQ (accueil) ==================== */
  .faq {
    padding: 5rem 0;
    background: var(--bg);
    border-top: 1px solid var(--line);
  }
  .faq-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
  }
  .faq-head .section-num {
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 1.2rem;
  }
  .faq-head h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    line-height: 1.05;
    color: var(--green-deep);
    letter-spacing: -0.015em;
  }
  .faq-head h2 em { font-style: italic; color: var(--rust); }

  .faq-list {
    max-width: 820px;
    margin: 0 auto;
  }
  .faq-item {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    margin-bottom: 0.8rem;
    transition: border-color .25s, box-shadow .25s;
  }
  .faq-item[open] {
    border-color: var(--rust);
    box-shadow: 0 8px 24px rgba(21, 33, 26, 0.06);
  }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.3rem 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--green-deep);
    font-weight: 400;
    line-height: 1.35;
    user-select: none;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary > span:first-child { flex: 1; }
  .faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--green-deep);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
    transition: transform .3s ease, background .25s, color .25s;
    font-family: var(--sans);
    font-weight: 400;
  }
  .faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: var(--rust);
    color: var(--paper);
  }
  .faq-body {
    padding: 0 1.6rem 1.5rem;
  }
  .faq-body p {
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.65;
  }
  .faq-body strong { color: var(--green-deep); font-weight: 600; }
  .faq-body a { color: var(--rust); text-decoration: underline; text-underline-offset: 2px; }

  @media (max-width: 720px) {
    .faq { padding: 3.5rem 0; }
    .faq-item summary { padding: 1.1rem 1.2rem; font-size: 1rem; }
    .faq-body { padding: 0 1.2rem 1.2rem; }
  }

  /* ==================== ACCESSIBILITÉ — reduced motion ==================== */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    .reveal {
      opacity: 1 !important;
      transform: none !important;
    }
  }

  /* ==================== RESPONSIVE ==================== */
  /* Mobile drawer menu */
  @media (max-width: 960px) {
    .nav.is-open .nav-links {
      display: flex !important;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--paper);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 1.2rem 0;
      gap: 0;
      box-shadow: 0 18px 40px rgba(21, 33, 26, 0.10);
      z-index: 99;
    }
    .nav.is-open .nav-links li {
      padding: 0;
    }
    .nav.is-open .nav-links a {
      display: block;
      padding: 0.9rem 2rem;
      font-size: 0.95rem;
      letter-spacing: 0.12em;
    }
    .nav.is-open .nav-links a::after { display: none; }
    .menu-toggle svg {
      transition: transform .25s ease;
    }
    .nav.is-open .menu-toggle svg {
      transform: rotate(90deg);
    }
  }

  @media (max-width: 960px) {
    .nav-links, .topbar { display: none; }
    .menu-toggle { display: block; }
    .hero .container,
    .about .container,
    .litters .litter-grid,
    .social .container,
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    .hero { padding: 3rem 0 5rem; }
    section { padding: 4rem 0; }
    .section-head {
      flex-direction: column;
      align-items: start;
    }
    .section-aside { text-align: left; }
    .pillars-grid { grid-template-columns: 1fr; }
    .pillar { border-right: none; border-bottom: 1px solid var(--line); }
    .pillar:last-child { border-bottom: none; }
    .dogs-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-meta { flex-wrap: wrap; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  }
  @media (max-width: 560px) {
    .dogs-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .hero-stamp { width: 100px; height: 100px; font-size: 0.7rem; }
    .hero-stamp span { font-size: 1.2rem; }
  }

  /* ==================== PAGE HEAD (secondary pages) ==================== */
  .page-head {
    padding: 5rem 0 3rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .page-head .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 1.5rem;
  }
  .page-head h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--green-deep);
    margin-bottom: 1.5rem;
  }
  .page-head h1 em {
    font-style: italic;
    color: var(--rust);
  }
  .page-head .lead {
    max-width: 620px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--ink);
    opacity: 0.85;
  }

  /* ==================== MALES PAGE ==================== */
  .males {
    padding: 4rem 0;
    background: var(--paper);
  }
  .male-detail {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 3.5rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid var(--line);
  }
  .male-detail:last-child { border-bottom: 0; }
  .male-detail:nth-child(even) .male-image { order: 2; }
  .male-detail:nth-child(even) .male-content { order: 1; }

  .male-image {
    position: relative;
    aspect-ratio: 15 / 16;
    border-radius: 4px;
    overflow: hidden;
    background: var(--green);
    box-shadow: 0 18px 50px rgba(21, 33, 26, 0.18);
  }
  .male-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 18%;
    display: block;
  }
  .male-tag {
    position: absolute;
    top: 1.2rem; left: 1.2rem;
    background: var(--rust);
    color: var(--paper);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 2;
  }

  .male-content .section-num {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.8rem;
  }
  .male-content .parents {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--rust);
    margin-bottom: 0.8rem;
  }
  .male-content h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: var(--green-deep);
    margin-bottom: 2rem;
  }
  .male-content h2 em {
    font-style: italic;
    color: var(--rust);
  }

  .male-content .stats {
    list-style: none;
    margin: 0 0 1.8rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
  }
  .male-content .stats li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .male-content .stats span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .male-content .stats strong {
    font-weight: 500;
    color: var(--green-deep);
    font-size: 1rem;
  }

  .male-content .titles {
    list-style: none;
    margin: 0 0 1.8rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .male-content .titles li {
    background: var(--green);
    color: var(--paper);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
  }

  .male-actions { margin-top: 0.5rem; }

  .male-detail.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .male-detail.reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* Responsive males page */
  @media (max-width: 900px) {
    .male-detail {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 2.5rem 0;
    }
    .male-detail:nth-child(even) .male-image { order: 0; }
    .male-detail:nth-child(even) .male-content { order: 0; }
    .male-image { aspect-ratio: 1/1; max-height: 520px; }
    .page-head { padding: 4rem 0 2rem; }
    .male-content .stats { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 540px) {
    .male-content .stats { grid-template-columns: 1fr; gap: 0.8rem; }
  }

  /* Active state for current nav link */
  .nav-links a.active {
    color: var(--rust);
  }

  /* ==================== NEWS PAGE ==================== */
  .news {
    padding: 4rem 0 5rem;
    background: var(--paper);
  }
  .news-grid {
    display: grid;
    grid-template-columns: 1fr 540px;
    gap: 4rem;
    align-items: start;
  }
  .news-side {
    position: sticky;
    top: 6rem;
  }
  .news-side-head { margin-bottom: 1.2rem; }
  .news-side-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--rust);
    margin-bottom: 0.8rem;
    letter-spacing: 0;
  }
  .news-side h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -0.015em;
    color: var(--green-deep);
    margin: 0;
  }
  .news-side h2 em { font-style: italic; color: var(--rust); }
  .news-side > p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0 0 1.5rem;
  }
  .news-side .btn-primary { margin-bottom: 2.5rem; }

  .news-channels { margin-top: 1rem; }
  .news-channels .news-side-num { margin-top: 0; }
  .news-channel-list {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
  }
  .news-channel-list a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }
  .news-channel-list a:hover {
    background: var(--bg);
    border-color: rgba(178, 90, 55, 0.35);
    transform: translateY(-1px);
  }
  .news-channel-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60% 60%;
  }
  .news-channel-ig {
    background: linear-gradient(135deg, #fdb748 0%, #e93871 50%, #b22974 100%);
    background-image:
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M12 2.16c3.2 0 3.58.01 4.85.07 1.17.05 1.8.25 2.23.41.56.22.96.48 1.38.9.42.42.68.82.9 1.38.16.42.36 1.06.41 2.23.06 1.27.07 1.65.07 4.85s-.01 3.58-.07 4.85c-.05 1.17-.25 1.8-.41 2.23-.22.56-.48.96-.9 1.38-.42.42-.82.68-1.38.9-.42.16-1.06.36-2.23.41-1.27.06-1.65.07-4.85.07s-3.58-.01-4.85-.07c-1.17-.05-1.8-.25-2.23-.41-.56-.22-.96-.48-1.38-.9-.42-.42-.68-.82-.9-1.38-.16-.42-.36-1.06-.41-2.23-.06-1.27-.07-1.65-.07-4.85s.01-3.58.07-4.85c.05-1.17.25-1.8.41-2.23.22-.56.48-.96.9-1.38.42-.42.82-.68 1.38-.9.42-.16 1.06-.36 2.23-.41 1.27-.06 1.65-.07 4.85-.07M12 0C8.74 0 8.33.01 7.05.07 5.78.13 4.9.33 4.14.63 3.35.94 2.68 1.35 2.01 2.01 1.35 2.68.94 3.35.63 4.14.33 4.9.13 5.78.07 7.05.01 8.33 0 8.74 0 12s.01 3.67.07 4.95c.06 1.27.26 2.15.56 2.91.31.79.72 1.46 1.38 2.13.67.67 1.34 1.08 2.13 1.38.76.3 1.64.5 2.91.56 1.28.06 1.69.07 4.95.07s3.67-.01 4.95-.07c1.27-.06 2.15-.26 2.91-.56.79-.31 1.46-.72 2.13-1.38.67-.67 1.08-1.34 1.38-2.13.3-.76.5-1.64.56-2.91.06-1.28.07-1.69.07-4.95s-.01-3.67-.07-4.95c-.06-1.27-.26-2.15-.56-2.91-.31-.79-.72-1.46-1.38-2.13-.67-.67-1.34-1.08-2.13-1.38-.76-.3-1.64-.5-2.91-.56C15.67.01 15.26 0 12 0zm0 5.84a6.16 6.16 0 1 0 0 12.32A6.16 6.16 0 0 0 12 5.84zm0 10.16a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm6.4-11.85a1.44 1.44 0 1 0 0 2.88 1.44 1.44 0 0 0 0-2.88z'/></svg>");
  }
  .news-channel-tt {
    background: #000;
    background-image:
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M19.59 6.69a4.83 4.83 0 0 1-3.77-4.25V2h-3.45v13.67a2.89 2.89 0 0 1-5.2 1.74 2.89 2.89 0 0 1 2.31-4.64 2.93 2.93 0 0 1 .88.13V9.4a6.84 6.84 0 0 0-1-.05A6.33 6.33 0 0 0 5.8 20.1a6.34 6.34 0 0 0 10.86-4.43V8.65a8.16 8.16 0 0 0 4.77 1.52v-3.4a4.85 4.85 0 0 1-1.84-.08z'/></svg>");
  }
  .news-channel-yt {
    background: #ff0000;
    background-image:
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M23.5 6.2a3 3 0 0 0-2.1-2.1C19.5 3.6 12 3.6 12 3.6s-7.5 0-9.4.5A3 3 0 0 0 .5 6.2C0 8.1 0 12 0 12s0 3.9.5 5.8a3 3 0 0 0 2.1 2.1c1.9.5 9.4.5 9.4.5s7.5 0 9.4-.5a3 3 0 0 0 2.1-2.1c.5-1.9.5-5.8.5-5.8s0-3.9-.5-5.8zM9.6 15.6V8.4l6.2 3.6-6.2 3.6z'/></svg>");
  }
  .news-channel-list a > span:last-child {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
  }
  .news-channel-list strong {
    font-weight: 600;
    color: var(--green-deep);
    font-size: 0.92rem;
  }
  .news-channel-list em {
    font-style: normal;
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.02em;
  }

  .news-feed-head { margin-bottom: 1.2rem; }
  .news-feed-head .news-side-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--rust);
    margin-bottom: 0.8rem;
  }
  .news-feed-head h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    line-height: 1.15;
    color: var(--green-deep);
    margin: 0;
  }
  .news-feed-head h3 em { font-style: italic; color: var(--rust); }

  .news-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  .news-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(21, 33, 26, 0.04);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }
  .news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(21, 33, 26, 0.12);
    border-color: rgba(178, 90, 55, 0.35);
  }
  .news-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
  }
  .news-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-soft);
  }
  .news-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
  }
  .news-card:hover .news-card-media img { transform: scale(1.05); }
  .news-card-media.no-image::before {
    content: "📷";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--muted);
    opacity: 0.4;
  }
  .news-card-video {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(21, 33, 26, 0.78);
    color: var(--paper);
    padding: 0.25rem 0.6rem 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 1;
  }
  .news-card-video svg { display: block; }

  .news-card-body {
    padding: 1rem 1.1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
  }
  .news-card-date {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
  }
  .news-card-text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--ink-soft);
    /* limit to ~4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .news-card-foot {
    margin-top: 0.4rem;
    padding-top: 0.7rem;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .news-card-stats {
    font-size: 0.72rem;
    color: var(--muted);
  }
  .news-card-stats strong {
    color: var(--green-deep);
    font-weight: 600;
  }
  .news-card-cta {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.2s;
  }
  .news-card-cta .arrow { transition: transform 0.25s ease; }
  .news-card:hover .news-card-cta { gap: 0.55rem; }
  .news-card:hover .news-card-cta .arrow { transform: translateX(3px); }

  .news-cards-foot {
    margin-top: 1.8rem;
    text-align: center;
  }

  @media (max-width: 720px) {
    .news-cards { grid-template-columns: 1fr; gap: 1rem; }
  }

  /* ==================== DRESSAGE PAGE ==================== */
  .dressage-intro {
    padding: 4rem 0;
    background: var(--paper);
  }
  .dressage-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
  }
  .dressage-intro .section-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--rust);
    margin-bottom: 0.8rem;
  }
  .dressage-intro .section-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    line-height: 1.08;
    color: var(--green-deep);
    letter-spacing: -0.015em;
    margin: 0;
  }
  .dressage-intro .section-title em { font-style: italic; color: var(--rust); }
  .dressage-intro-text p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink-soft);
    margin: 0 0 1.6rem;
  }
  .dressage-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .dressage-bullets li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.9rem 1.1rem;
    background: var(--bg-soft);
    border-left: 3px solid var(--rust);
    border-radius: 0 6px 6px 0;
  }
  .dressage-bullets li span {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--rust);
    flex-shrink: 0;
    width: 1.5rem;
  }
  .dressage-bullets li div {
    font-size: 0.95rem;
    color: var(--ink);
    line-height: 1.5;
  }
  .dressage-bullets li strong {
    color: var(--green-deep);
    font-weight: 600;
  }

  .dressage-formulas {
    padding: 4rem 0 5rem;
    background: var(--bg);
  }
  .formula-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .formula-card {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 2rem 1.8rem 1.8rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }
  .formula-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(21, 33, 26, 0.1);
    border-color: rgba(178, 90, 55, 0.4);
  }
  .formula-card--featured {
    background: var(--green-deep);
    color: var(--paper);
    border-color: var(--green-deep);
  }
  .formula-card--featured:hover {
    border-color: var(--rust);
  }
  .formula-badge {
    position: absolute;
    top: -0.8rem;
    right: 1.6rem;
    background: var(--rust);
    color: var(--paper);
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
  }
  .formula-head {
    margin-bottom: 1.3rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--line);
  }
  .formula-card--featured .formula-head {
    border-bottom-color: rgba(243, 235, 217, 0.18);
  }
  .formula-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--rust);
    margin-bottom: 0.6rem;
    letter-spacing: 0.03em;
  }
  .formula-card--featured .formula-num { color: var(--rust-soft); }
  .formula-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.1;
    margin: 0 0 0.35rem;
    color: var(--green-deep);
    letter-spacing: -0.01em;
  }
  .formula-card--featured .formula-title { color: var(--paper); }
  .formula-tagline {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.4;
  }
  .formula-card--featured .formula-tagline { color: rgba(243, 235, 217, 0.6); }
  .formula-points {
    list-style: none;
    margin: 0 0 1.6rem;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
  }
  .formula-points li {
    position: relative;
    padding-left: 1.3rem;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--ink-soft);
  }
  .formula-card--featured .formula-points li { color: rgba(243, 235, 217, 0.85); }
  .formula-points li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--rust);
    font-weight: 600;
  }
  .formula-card--featured .formula-points li::before { color: var(--rust-soft); }
  .formula-foot {
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .formula-card--featured .formula-foot {
    border-top-color: rgba(243, 235, 217, 0.18);
  }
  .formula-duration {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: var(--muted);
  }
  .formula-card--featured .formula-duration { color: rgba(243, 235, 217, 0.55); }
  .formula-price {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.7rem;
    color: var(--green-deep);
    line-height: 1;
    letter-spacing: -0.01em;
  }
  .formula-card--featured .formula-price { color: var(--paper); }
  .formula-price span {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    font-family: var(--sans);
    font-style: normal;
    margin-left: 0.3rem;
  }
  .formula-card--featured .formula-price span { color: var(--rust-soft); }
  .formula-price--quote {
    font-size: 1.4rem;
  }
  .formula-price--quote span {
    font-size: 1.4rem;
    margin-left: 0.4rem;
    color: var(--rust);
    font-family: var(--serif);
    font-style: italic;
    letter-spacing: 0;
    text-transform: none;
  }
  .formula-price-stack {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .formula-price-alt {
    font-size: 0.8rem;
    color: rgba(243, 235, 217, 0.75);
    letter-spacing: 0.04em;
  }
  .formula-price-alt strong {
    color: var(--rust-soft);
    font-weight: 600;
    font-size: 1rem;
    margin-right: 0.3rem;
  }

  @media (max-width: 900px) {
    .dressage-intro-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .formula-grid {
      grid-template-columns: 1fr;
      gap: 1.2rem;
    }
    .formula-badge { right: 1rem; }
  }

  /* ==================== GALERIE PAGE ==================== */
  .gallery-section { padding: 4rem 0; }
  .gallery-photos { background: var(--paper); }
  .gallery-videos { background: var(--bg); }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .gallery-card {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 6px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .gallery-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(21, 33, 26, 0.18);
  }
  .gallery-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform 0.5s ease;
  }
  .gallery-card:hover img { transform: scale(1.06); }
  .gallery-card.no-image::before {
    content: "📷";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--muted);
    opacity: 0.5;
  }
  .gallery-card-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(180deg, transparent 0%, rgba(21, 33, 26, 0.9) 75%, rgba(21, 33, 26, 0.95) 100%);
    color: var(--paper);
    z-index: 1;
  }
  .gallery-card-label strong {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1.05rem;
    color: var(--paper);
    margin-bottom: 0.2rem;
    line-height: 1.1;
  }
  .gallery-card-label span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(243, 235, 217, 0.78);
    line-height: 1.3;
  }

  .gallery-cta {
    margin-top: 2.2rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .video-wrap {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: var(--green-deep);
    box-shadow: 0 18px 50px rgba(21, 33, 26, 0.22);
  }
  .video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  @media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 720px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
    .gallery-card-label { padding: 1rem 0.7rem 0.7rem; }
    .gallery-card-label strong { font-size: 0.95rem; }
    .gallery-card-label span { font-size: 0.62rem; }
  }
  @media (max-width: 420px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
  }

  /* ==================== LIGHTBOX ==================== */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 12, 11, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  .lightbox.is-open { display: flex; }
  .lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }
  .lightbox-close,
  .lightbox-nav {
    position: absolute;
    background: rgba(243, 235, 217, 0.1);
    border: 1px solid rgba(243, 235, 217, 0.25);
    color: var(--paper);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    font-family: var(--sans);
    line-height: 1;
    padding: 0;
  }
  .lightbox-close {
    top: 1.2rem;
    right: 1.2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
  }
  .lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
  }
  .lightbox-prev { left: 1.2rem; }
  .lightbox-next { right: 1.2rem; }
  .lightbox-close:hover,
  .lightbox-nav:hover {
    background: rgba(178, 90, 55, 0.85);
    border-color: var(--rust);
  }
  .lightbox-nav:hover { transform: translateY(-50%) scale(1.08); }
  .lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--paper);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    backdrop-filter: blur(6px);
  }

  @media (max-width: 600px) {
    .lightbox { padding: 0.5rem; }
    .lightbox-nav { width: 42px; height: 42px; font-size: 1.5rem; }
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
    .lightbox-close { top: 0.5rem; right: 0.5rem; }
  }

  /* ==================== CGV PAGE ==================== */
  .cgv {
    padding: 4rem 0 5rem;
    background: var(--paper);
  }
  .cgv-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3.5rem;
    align-items: start;
  }
  .cgv-toc {
    position: sticky;
    top: 6rem;
    align-self: start;
  }
  .cgv-toc-inner {
    padding: 1.4rem 1.3rem;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 6px;
  }
  .cgv-toc-label {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--rust);
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
  }
  .cgv-toc ol {
    list-style: none;
    margin: 0 0 1.3rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .cgv-toc li {
    border-left: 2px solid transparent;
    padding-left: 0.7rem;
    transition: border-color 0.2s;
  }
  .cgv-toc li:hover { border-left-color: var(--rust); }
  .cgv-toc a {
    font-size: 0.82rem;
    color: var(--ink-soft);
    text-decoration: none;
    line-height: 1.45;
    transition: color 0.2s;
  }
  .cgv-toc a:hover { color: var(--green-deep); }
  .cgv-toc-meta {
    font-size: 0.72rem;
    line-height: 1.5;
    color: var(--muted);
    padding-top: 1rem;
    border-top: 1px solid var(--line);
  }
  .cgv-toc-meta strong {
    display: block;
    color: var(--green-deep);
    font-weight: 600;
    margin-bottom: 0.35rem;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }

  .cgv-content {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 740px;
  }
  .cgv-preamble {
    padding: 1.5rem 1.7rem;
    background: var(--bg-soft);
    border-left: 3px solid var(--rust);
    border-radius: 0 6px 6px 0;
    margin-bottom: 3rem;
  }
  .cgv-preamble p { margin: 0; font-size: 0.92rem; color: var(--ink); }
  .cgv-preamble strong { color: var(--green-deep); font-weight: 600; }
  .cgv-preamble a { color: var(--rust); text-decoration: underline; }

  .cgv-article {
    padding: 2rem 0 2.2rem;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 6rem;
  }
  .cgv-article:last-of-type { border-bottom: 0; }
  .cgv-article-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--rust);
    margin-bottom: 0.4rem;
    letter-spacing: 0.03em;
  }
  .cgv-article h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.4rem, 2.6vw, 1.8rem);
    line-height: 1.15;
    color: var(--green-deep);
    letter-spacing: -0.01em;
    margin: 0 0 1.2rem;
  }
  .cgv-article h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--green-deep);
    margin: 1.8rem 0 0.8rem;
  }
  .cgv-article p {
    margin: 0 0 1rem;
  }
  .cgv-article strong { color: var(--green-deep); font-weight: 600; }
  .cgv-article a { color: var(--rust); text-decoration: underline; }
  .cgv-article a:hover { color: var(--green-deep); }

  .cgv-contact-box {
    margin-top: 1.8rem;
    padding: 1.3rem 1.4rem;
    background: var(--green-deep);
    color: var(--paper);
    border-radius: 6px;
  }
  .cgv-contact-box strong {
    display: block;
    color: var(--paper);
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
    font-weight: 600;
  }
  .cgv-contact-box p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(243, 235, 217, 0.85);
  }
  .cgv-contact-box a {
    color: var(--rust-soft);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
  }
  .cgv-contact-box a:hover { color: var(--paper); }

  @media (max-width: 960px) {
    .cgv-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .cgv-toc { position: static; }
    .cgv-toc-meta { display: none; }
  }
  @media (max-width: 540px) {
    .cgv-preamble { padding: 1.2rem 1rem; }
    .cgv-contact-box { padding: 1.1rem 1.1rem; }
  }

  /* ==================== CHIOTS / PORTÉES PAGE ==================== */
  .litters-page {
    padding: 4rem 0;
    background: var(--paper);
  }
  .litter-detail {
    display: grid;
    grid-template-columns: 6fr 5fr;
    gap: 3.5rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid var(--line);
  }
  .litter-detail:last-child { border-bottom: 0; }
  .litter-detail:nth-child(even) .litter-detail-media { order: 2; }
  .litter-detail:nth-child(even) .litter-detail-content { order: 1; }

  .litter-detail-media {
    position: relative;
  }
  .litter-video-link {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    border-radius: 6px;
    overflow: hidden;
    background: var(--green-deep);
    box-shadow: 0 18px 50px rgba(21, 33, 26, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .litter-video-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 60px rgba(21, 33, 26, 0.25);
  }
  .litter-video-link img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  .litter-video-link:hover img { transform: scale(1.04); }
  .litter-video-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21, 33, 26, 0.25) 0%, transparent 40%, rgba(21, 33, 26, 0.55) 100%);
    z-index: 1;
  }
  .litter-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--rust);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(178, 90, 55, 0.25), 0 14px 30px rgba(21, 33, 26, 0.35);
    transition: transform 0.25s ease;
  }
  .litter-play svg { transform: translateX(2px); }
  .litter-video-link:hover .litter-play {
    transform: translate(-50%, -50%) scale(1.08);
  }
  .litter-source {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 2;
    background: rgba(21, 33, 26, 0.8);
    color: var(--paper);
    padding: 0.35rem 0.7rem;
    border-radius: 3px;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
  }

  .litter-detail-content .section-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--rust);
    margin-bottom: 0.7rem;
  }
  .litter-parents-line {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--rust);
    margin-bottom: 0.8rem;
  }
  .litter-parents-line a {
    color: var(--rust);
    text-decoration: none;
    border-bottom: 1px dashed currentColor;
    transition: border-color 0.2s, color 0.2s;
  }
  .litter-parents-line a:hover { color: var(--green-deep); }
  .litter-parents-line .x {
    margin: 0 0.5rem;
    color: var(--muted);
    font-style: normal;
  }
  .litter-detail-content h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    line-height: 1.08;
    color: var(--green-deep);
    letter-spacing: -0.015em;
    margin: 0 0 1rem;
  }
  .litter-detail-content h2 em {
    font-style: italic;
    color: var(--rust);
  }
  .litter-lead {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0 0 1.5rem;
  }
  .litter-stats {
    list-style: none;
    margin: 0 0 1.8rem;
    padding: 1.3rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
  }
  .litter-stats li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .litter-stats span {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .litter-stats strong {
    font-weight: 500;
    color: var(--green-deep);
    font-size: 0.92rem;
    line-height: 1.3;
  }

  .litter-parents-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
  }
  .litter-parent-card {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    padding: 0.7rem;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }
  .litter-parent-card:hover {
    background: var(--bg);
    border-color: rgba(178, 90, 55, 0.4);
    transform: translateY(-1px);
  }
  .litter-parent-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 25%;
    flex-shrink: 0;
    background: var(--bg-soft);
  }
  .litter-parent-card.no-image img {
    visibility: hidden;
  }
  .litter-parent-card div {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
  }
  .litter-parent-role {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 600;
  }
  .litter-parent-card strong {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1rem;
    color: var(--green-deep);
    line-height: 1.1;
  }
  .litter-parent-card span {
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.02em;
    line-height: 1.3;
  }

  .litter-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  /* Process steps */
  .litter-process {
    padding: 4rem 0 5rem;
    background: var(--bg);
  }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .process-step {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 1.6rem 1.4rem 1.4rem;
    position: relative;
  }
  .process-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--rust);
    margin-bottom: 0.7rem;
    line-height: 1;
  }
  .process-step h4 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.15rem;
    color: var(--green-deep);
    margin: 0 0 0.5rem;
    line-height: 1.2;
  }
  .process-step p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--ink-soft);
  }

  @media (max-width: 960px) {
    .litter-detail {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 2.5rem 0;
    }
    .litter-detail:nth-child(even) .litter-detail-media { order: 0; }
    .litter-detail:nth-child(even) .litter-detail-content { order: 0; }
    .litter-video-link { aspect-ratio: 4/3; max-height: 440px; }
    .process-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 540px) {
    .litter-stats { grid-template-columns: 1fr; gap: 0.8rem; }
    .litter-parents-cards { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 960px) {
    .news-grid {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    .news-side { position: static; top: auto; }
  }
  @media (max-width: 540px) {
    .news { padding: 2.5rem 0 3.5rem; }
    .news-fb-wrap { padding: 0.6rem; }
  }

  /* ==================== RESULTS (field-trial career) ==================== */
  .results {
    margin: 0 0 1.8rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .results[open] {
    padding-bottom: 0.4rem;
  }
  .results-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 1.1rem 0;
    user-select: none;
  }
  .results-summary::-webkit-details-marker { display: none; }
  .results-summary-label {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--green-deep);
    flex-shrink: 0;
  }
  .results-summary-stats {
    flex: 1;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-transform: uppercase;
  }
  .results-chevron {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--green-deep);
    color: var(--paper);
    font-size: 0.9rem;
    line-height: 22px;
    text-align: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
  }
  .results[open] .results-chevron {
    transform: rotate(45deg);
  }

  .results-body {
    padding-top: 0.5rem;
    padding-bottom: 1.4rem;
  }
  .results-year + .results-year { margin-top: 1.4rem; }
  .results-year-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.4rem 0 0.5rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 0.3rem;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .results-year-head strong {
    color: var(--green-deep);
    font-weight: 600;
  }

  .results-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.83rem;
    color: var(--ink);
  }
  .results-table th,
  .results-table td {
    text-align: left;
    padding: 0.55rem 0.6rem 0.55rem 0;
    vertical-align: top;
  }
  .results-table th {
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
  }
  .results-table tbody tr {
    border-bottom: 1px solid rgba(26, 29, 24, 0.06);
  }
  .results-table tbody tr:last-child { border-bottom: 0; }
  .results-table .lieu strong {
    font-weight: 500;
    color: var(--green-deep);
  }
  .results-table .lieu em {
    font-style: italic;
    color: var(--muted);
    font-size: 0.78rem;
    margin-left: 0.3rem;
  }
  .results-table .pts {
    text-align: right;
    font-variant-numeric: tabular-nums;
    color: var(--ink-soft);
    white-space: nowrap;
  }
  .results-table tfoot td {
    padding-top: 0.7rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    border-top: 1px solid var(--line);
  }
  .results-table tfoot .pts {
    color: var(--green-deep);
    font-weight: 600;
  }

  .qualif {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    border-radius: 4px;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
    background: rgba(26, 29, 24, 0.05);
    white-space: nowrap;
  }
  .qualif-cact {
    background: var(--rust);
    color: var(--paper);
  }
  .qualif-rcact,
  .qualif-rcacit {
    background: var(--rust-soft);
    color: var(--green-deep);
  }
  .qualif-cacit {
    background: var(--green-deep);
    color: var(--paper);
  }

  .results-grand-total {
    margin-top: 1.2rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--serif);
    font-style: italic;
    color: var(--green-deep);
  }
  .results-grand-total .num {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0;
  }

  @media (max-width: 720px) {
    .results-table { font-size: 0.78rem; }
    .results-table th,
    .results-table td { padding: 0.45rem 0.4rem 0.45rem 0; }
    .results-table .juge { display: none; }
  }
  @media (max-width: 540px) {
    .results-table .type { display: none; }
    .results-summary-stats { display: none; }
  }

  /* ==================== PEDIGREE (4-gen tree) ==================== */
  .pedigree-wrap {
    overflow-x: auto;
    margin-top: 0.4rem;
    -webkit-overflow-scrolling: touch;
  }
  .pedigree {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    table-layout: fixed;
  }
  .pedigree td {
    border: 1px solid var(--line);
    padding: 0.5rem 0.6rem;
    vertical-align: middle;
    background: var(--paper);
    transition: background 0.2s ease;
  }
  .pedigree td:hover {
    background: var(--bg-soft);
  }
  .pedigree td a {
    display: block;
    color: var(--green-deep);
    font-weight: 500;
    line-height: 1.22;
    text-decoration: none;
  }
  .pedigree td a:hover {
    color: var(--rust);
    text-decoration: underline;
  }
  .pedigree .pd-label {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 0.4rem;
    font-weight: 500;
  }
  .pedigree .pd-titles {
    display: block;
    margin-top: 0.25rem;
    font-style: italic;
    color: var(--muted);
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    line-height: 1.35;
    font-weight: 400;
  }
  .pedigree .pd-1 {
    background: linear-gradient(180deg, var(--bg-soft), var(--paper));
    text-align: center;
    width: 18%;
  }
  .pedigree .pd-1 a {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.15;
  }
  .pedigree .pd-2 {
    width: 22%;
    font-size: 0.78rem;
  }
  .pedigree .pd-4 {
    width: 26%;
    font-size: 0.72rem;
  }
  .pedigree .pd-8 {
    width: 34%;
    font-size: 0.66rem;
  }
  .pedigree .pd-8 a { font-size: 0.7rem; line-height: 1.2; }
  .pedigree .pd-8 .pd-titles { font-size: 0.56rem; }

  .pedigree-source {
    margin-top: 0.7rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: right;
  }
  .pedigree-source a {
    color: var(--rust);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
  }
