/* ═══════════════════════════════════════════════════
   GagPetCalculator — Shared Stylesheet
   Used by all pages
═══════════════════════════════════════════════════ */


 :root {
      --ink:        #1a1a2e;
      --ink-soft:   #4a4a6a;
      --ink-muted:  #8888aa;
      --surface:    #ffffff;
      --surface-2:  #f7f7fc;
      --surface-3:  #eff0f8;
      --accent:     #3b5bdb;
      --accent-2:   #4dabf7;
      --border:     #e0e0f0;
      --green:      #2f9e44;
      --green-bg:   #ebfbee;
      --blue-bg:    #e7f5ff;
      --warn-bg:    #fff9db;
      --warn-border:#ffd43b;
      --red-bg:     #fff5f5;
      --red-border: #ff6b6b;
      --orange-bg:  #fff4e6;
      --orange:     #e8590c;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--surface); color: var(--ink);
      line-height: 1.75; -webkit-font-smoothing: antialiased;
    }

    

    

    /* ── LAYOUT ── */
    .page-wrap { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: flex; gap: 3rem; }

    /* ── SIDEBAR ── */
    .toc-sidebar {
      width: 240px; flex-shrink: 0;
      position: sticky; top: 80px; align-self: flex-start;
      padding: 1.5rem 0; max-height: calc(100vh - 100px); overflow-y: auto;
    }
    .toc-sidebar h4 {
      font-size: 0.7rem; font-weight: 600; letter-spacing: .1em;
      text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.75rem;
    }
    .toc-list { list-style: none; }
    .toc-list li { margin-bottom: 0.1rem; }
    .toc-list a {
      font-size: 0.82rem; color: var(--ink-soft); text-decoration: none;
      display: block; padding: 0.3rem 0.5rem; border-radius: 5px;
      border-left: 2px solid transparent; transition: all .18s; line-height: 1.4;
    }
    .toc-list a:hover, .toc-list a.active {
      color: var(--accent); background: var(--blue-bg); border-left-color: var(--accent);
    }
    .toc-list .sub { padding-left: 1.2rem; font-size: 0.78rem; }

    /* ── MAIN ── */
    .content { flex: 1; padding: 3rem 0 5rem; min-width: 0; }

    .policy-section {
      margin-bottom: 3.5rem;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp .5s ease forwards;
    }
    @keyframes fadeUp { to { opacity:1; transform:translateY(0); } }
    .policy-section:nth-child(1)  { animation-delay:.05s }
    .policy-section:nth-child(2)  { animation-delay:.10s }
    .policy-section:nth-child(3)  { animation-delay:.15s }
    .policy-section:nth-child(4)  { animation-delay:.20s }
    .policy-section:nth-child(5)  { animation-delay:.25s }
    .policy-section:nth-child(6)  { animation-delay:.30s }
    .policy-section:nth-child(7)  { animation-delay:.35s }
    .policy-section:nth-child(8)  { animation-delay:.40s }
    .policy-section:nth-child(9)  { animation-delay:.45s }
    .policy-section:nth-child(10) { animation-delay:.50s }

    .section-number {
      display: inline-block; font-size: 0.72rem; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase; color: var(--orange);
      margin-bottom: 0.45rem;
    }
    .policy-section h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 1.65rem; color: var(--ink);
      margin-bottom: 1rem; line-height: 1.25;
      padding-bottom: 0.6rem; border-bottom: 2px solid var(--surface-3);
    }
    .policy-section h3 { font-size: 1.05rem; font-weight: 600; color: var(--ink); margin: 1.75rem 0 0.65rem; }
    .policy-section p  { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 1rem; line-height: 1.8; }
    .policy-section p strong { color: var(--ink); }
    .policy-section ul, .policy-section ol { padding-left: 1.4rem; margin-bottom: 1rem; }
    .policy-section li { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 0.45rem; line-height: 1.75; }
    .policy-section li strong { color: var(--ink); }
    a { color: var(--accent); text-decoration: none; }
    a:hover { text-decoration: underline; }

    /* ── CALLOUTS ── */
    .callout {
      border-radius: 10px; padding: 1rem 1.25rem; margin: 1.25rem 0;
      font-size: 0.9rem; display: flex; gap: 0.75rem; align-items: flex-start;
    }
    .callout-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.05rem; }
    .callout-body { color: var(--ink-soft); line-height: 1.7; }
    .callout-body strong { color: var(--ink); }
    .callout-body a { color: var(--accent); }
    .callout.blue   { background: var(--blue-bg);   border-left: 3px solid var(--accent-2); }
    .callout.green  { background: var(--green-bg);  border-left: 3px solid var(--green); }
    .callout.warn   { background: var(--warn-bg);   border-left: 3px solid var(--warn-border); }
    .callout.red    { background: var(--red-bg);    border-left: 3px solid var(--red-border); }
    .callout.orange { background: var(--orange-bg); border-left: 3px solid var(--orange); }

    /* ── HERO BANNER ── */
    .highlight-banner {
      background: linear-gradient(135deg, #1a1a2e, #16213e);
      color: #white; border-radius: 14px; padding: 1.75rem 2rem; margin: 1.5rem 0;
    }
    .highlight-banner p { color: #fff; }
    .highlight-banner strong { color: #fff; }
    .highlight-banner .banner-title { font-family: 'DM Serif Display', serif; font-size: 1.25rem; color: #ffd59e; margin-bottom: 0.3rem; }

    /* ── DO / DON'T GRID ── */
    .do-dont { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.25rem 0; }
    .do-card, .dont-card {
      border-radius: 10px; padding: 1.25rem;
    }
    .do-card   { background: var(--green-bg); border: 1px solid #b2f2bb; }
    .dont-card { background: var(--red-bg);   border: 1px solid #ffc9c9; }
    .do-card h4   { color: var(--green); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 0.75rem; }
    .dont-card h4 { color: #c92a2a;     font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 0.75rem; }
    .do-card ul, .dont-card ul { padding-left: 1.2rem; }
    .do-card li, .dont-card li { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 0.35rem; line-height: 1.6; }

    /* ── SCOPE TABLE ── */
    .table-wrap { overflow-x: auto; margin: 1.25rem 0; border-radius: 10px; border: 1px solid var(--border); }
    table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
    thead tr { background: var(--ink); }
    thead th { color: #fff; font-weight: 600; text-align: left; padding: 0.75rem 1rem; font-size: 0.78rem; letter-spacing: .05em; text-transform: uppercase; }
    tbody tr { border-bottom: 1px solid var(--border); }
    tbody tr:nth-child(even) { background: var(--surface-2); }
    tbody tr:last-child { border-bottom: none; }
    tbody td { padding: 0.75rem 1rem; color: var(--ink-soft); vertical-align: top; line-height: 1.65; }
    tbody td:first-child { font-weight: 600; color: var(--ink); }
    .tag {
      display: inline-block; font-size: 0.72rem; font-weight: 600; padding: 0.15rem 0.5rem;
      border-radius: 100px; text-transform: uppercase; letter-spacing: .04em;
    }
    .tag-yes { background: var(--green-bg); color: var(--green); }
    .tag-no  { background: var(--red-bg);   color: #c92a2a; }
    .tag-vet { background: var(--warn-bg);  color: #b35c00; }

    /* ── VET SIGNALS ── */
    .vet-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin: 1.25rem 0; }
    .vet-card {
      background: var(--red-bg); border: 1px solid #ffc9c9;
      border-radius: 10px; padding: 1.1rem; text-align: center;
    }
    .vet-card .vet-icon { font-size: 1.5rem; margin-bottom: 0.4rem; }
    .vet-card h4 { font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 0.25rem; }
    .vet-card p  { font-size: 0.78rem; color: var(--ink-muted); margin: 0; line-height: 1.5; }

    /* ── AFFILIATE ── */
    .affiliate-row { display: flex; gap: 1rem; margin: 1.25rem 0; flex-wrap: wrap; }
    .affi-pill {
      display: inline-flex; align-items: center; gap: 0.35rem;
      font-size: 0.8rem; font-weight: 500; color: var(--ink-soft);
      background: var(--surface-2); border: 1px solid var(--border);
      padding: 0.35rem 0.85rem; border-radius: 100px;
    }

    /* ── FAQ ── */
    .faq-list { margin: 1.25rem 0; }
    details {
      border: 1px solid var(--border); border-radius: 10px;
      margin-bottom: 0.6rem; overflow: hidden;
      transition: box-shadow .2s;
    }
    details[open] { box-shadow: 0 4px 16px rgba(59,91,219,.08); border-color: var(--accent); }
    summary {
      font-size: 0.95rem; font-weight: 600; color: var(--ink);
      padding: 1rem 1.25rem; cursor: pointer; list-style: none;
      display: flex; justify-content: space-between; align-items: center;
      user-select: none;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: '+'; font-size: 1.2rem; color: var(--accent);
      font-weight: 300; flex-shrink: 0; margin-left: 1rem;
    }
    details[open] summary::after { content: '−'; }
    .faq-body {
      padding: 0 1.25rem 1.1rem;
      font-size: 0.9rem; color: var(--ink-soft); line-height: 1.8;
    }
    .faq-body a { color: var(--accent); }
    .faq-body p { margin-bottom: 0.6rem; }
    .faq-body p:last-child { margin-bottom: 0; }

    /* ── CONTACT ── */
    .contact-block {
      background: linear-gradient(135deg, #f7f7fc, #eff0f8);
      border: 1px solid var(--border); border-radius: 14px;
      padding: 2rem; text-align: center; margin-top: 1rem;
    }
    .contact-block h3 { font-family: 'DM Serif Display', serif; font-size: 1.4rem; margin-bottom: 0.5rem; }
    .contact-block p { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 1rem; }
    .btn-row { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 0.4rem;
      background: var(--accent); color: #fff; font-weight: 600; font-size: 0.9rem;
      padding: 0.65rem 1.5rem; border-radius: 8px; text-decoration: none;
      transition: opacity .2s;
    }
    .btn-primary:hover { opacity: 0.88; text-decoration: none; }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 0.4rem;
      background: #fff; color: var(--accent); font-weight: 600; font-size: 0.9rem;
      padding: 0.65rem 1.5rem; border-radius: 8px; text-decoration: none;
      border: 1.5px solid var(--accent); transition: background .2s;
    }
    .btn-secondary:hover { background: var(--blue-bg); text-decoration: none; }


    @media (max-width: 860px) {
      .toc-sidebar { display: none; }
      .do-dont { grid-template-columns: 1fr; }
      .vet-grid { grid-template-columns: 1fr 1fr; }
      .nav-links { display: none; }
    }
    @media (max-width: 520px) {
      .vet-grid { grid-template-columns: 1fr; }
      .hero { padding: 3rem 1.25rem 2.5rem; }
      .page-wrap { padding: 0 1.25rem; }
    }

:root {
      --ink:        #1a1a2e;
      --ink-soft:   #4a4a6a;
      --ink-muted:  #8888aa;
      --surface:    #ffffff;
      --surface-2:  #f7f7fc;
      --surface-3:  #eff0f8;
      --accent:     #3b5bdb;
      --accent-2:   #4dabf7;
      --accent-warm:#f76707;
      --border:     #e0e0f0;
      --border-dark:#c4c4e0;
      --green:      #2f9e44;
      --green-bg:   #ebfbee;
      --blue-bg:    #e7f5ff;
      --warn-bg:    #fff9db;
      --warn-border:#ffd43b;
    }

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

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

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--surface);
      color: var(--ink);
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
    }

    /* ── NAV ── */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 0 2rem;
    }
    .nav-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      height: 60px;
    }
    .nav-logo {
      font-family: 'DM Serif Display', serif;
      font-size: 1.2rem; color: var(--ink); text-decoration: none;
      display: flex; align-items: center; gap: 0.4rem;
    }
    .nav-links { display: flex; gap: 1.5rem; list-style: none; }
    .nav-links a {
      font-size: 0.875rem; font-weight: 500; color: var(--ink-soft);
      text-decoration: none; transition: color .2s;
    }
    .nav-links a:hover { color: var(--accent); }
    .nav-cta {
      background: var(--accent); color: #fff !important;
      padding: 0.4rem 1rem; border-radius: 6px; font-weight: 600 !important;
      transition: opacity .2s !important;
    }
    .nav-cta:hover { opacity: 0.88; }

    
    /* ── LAYOUT ── */
    .page-wrap { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: flex; gap: 3rem; }

    /* ── SIDEBAR TOC ── */
    .toc-sidebar {
      width: 240px; flex-shrink: 0;
      position: sticky; top: 80px; align-self: flex-start;
      padding: 1.5rem 0; max-height: calc(100vh - 100px); overflow-y: auto;
    }
    .toc-sidebar h4 {
      font-size: 0.7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
      color: var(--ink-muted); margin-bottom: 0.75rem;
    }
    .toc-list { list-style: none; }
    .toc-list li { margin-bottom: 0.1rem; }
    .toc-list a {
      font-size: 0.82rem; color: var(--ink-soft); text-decoration: none;
      display: block; padding: 0.3rem 0.5rem; border-radius: 5px;
      border-left: 2px solid transparent; transition: all .18s; line-height: 1.4;
    }
    .toc-list a:hover, .toc-list a.active {
      color: var(--accent); background: var(--blue-bg);
      border-left-color: var(--accent);
    }
    .toc-list .sub { padding-left: 1.2rem; font-size: 0.78rem; }

    /* ── MAIN CONTENT ── */
    .content { flex: 1; padding: 3rem 0 5rem; min-width: 0; }

    /* ── SECTION BLOCKS ── */
    .policy-section {
      margin-bottom: 3.5rem;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp .5s ease forwards;
    }
    @keyframes fadeUp { to { opacity:1; transform:translateY(0); } }

    .section-number {
      display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem;
    }
    .policy-section h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 1.65rem; color: var(--ink);
      margin-bottom: 1rem; line-height: 1.25;
      padding-bottom: 0.6rem;
      border-bottom: 2px solid var(--surface-3);
    }
    .policy-section h3 {
      font-size: 1.05rem; font-weight: 600; color: var(--ink);
      margin: 1.75rem 0 0.65rem;
    }
    .policy-section h4 {
      font-size: 0.9rem; font-weight: 600; color: var(--accent);
      margin: 1.25rem 0 0.5rem; text-transform: uppercase; letter-spacing: .04em;
    }
    .policy-section p {
      font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 1rem; line-height: 1.8;
    }
    .policy-section p strong { color: var(--ink); }
    .policy-section ul, .policy-section ol {
      padding-left: 1.4rem; margin-bottom: 1rem;
    }
    .policy-section li {
      font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 0.45rem; line-height: 1.7;
    }
    .policy-section li strong { color: var(--ink); }
    a { color: var(--accent); text-decoration: none; }
    a:hover { text-decoration: underline; }

    /* ── CALLOUT BOXES ── */
    .callout {
      border-radius: 10px; padding: 1rem 1.25rem;
      margin: 1.25rem 0; font-size: 0.9rem;
      display: flex; gap: 0.75rem; align-items: flex-start;
    }
    .callout-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.05rem; }
    .callout-body { color: var(--ink-soft); line-height: 1.7; }
    .callout-body strong { color: var(--ink); }
    .callout-body a { color: var(--accent); }
    .callout.blue { background: var(--blue-bg); border-left: 3px solid var(--accent-2); }
    .callout.green { background: var(--green-bg); border-left: 3px solid var(--green); }
    .callout.warn { background: var(--warn-bg); border-left: 3px solid var(--warn-border); }

    /* ── HIGHLIGHT BANNER ── */
    .highlight-banner {
      background: linear-gradient(135deg, #1a1a2e, #16213e);
      color: #fff; border-radius: 12px; padding: 1.5rem 1.75rem;
      margin: 1.5rem 0;
    }
    .highlight-banner p { color: rgba(255,255,255,.8); margin: 0; font-size: 0.95rem; }
    .highlight-banner strong { color: #fff; }

    /* ── TABLES ── */
    .table-wrap { overflow-x: auto; margin: 1.25rem 0; border-radius: 10px; border: 1px solid var(--border); }
    table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
    thead tr { background: var(--ink); }
    thead th {
      color: #fff; font-weight: 600; text-align: left;
      padding: 0.75rem 1rem; font-size: 0.8rem; letter-spacing: .04em;
      text-transform: uppercase;
    }
    tbody tr { border-bottom: 1px solid var(--border); }
    tbody tr:nth-child(even) { background: var(--surface-2); }
    tbody tr:last-child { border-bottom: none; }
    tbody td { padding: 0.75rem 1rem; color: var(--ink-soft); vertical-align: top; line-height: 1.6; }
    tbody td:first-child { font-family: 'DM Mono', monospace; color: var(--ink); font-weight: 500; font-size: 0.82rem; }
    tbody td code {
      background: var(--surface-3); padding: 0.15rem 0.4rem; border-radius: 4px;
      font-size: 0.8rem; color: var(--accent); font-family: monospace;
    }

    /* ── OPT-OUT CARDS ── */
    .optout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.25rem 0; }
    .optout-card {
      background: var(--surface-2); border: 1px solid var(--border);
      border-radius: 10px; padding: 1.1rem 1.25rem;
      transition: border-color .2s, box-shadow .2s;
    }
    .optout-card:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(59,91,219,.1); }
    .optout-card .card-num {
      font-size: 0.7rem; font-weight: 700; letter-spacing: .1em; color: var(--accent);
      text-transform: uppercase; margin-bottom: 0.4rem;
    }
    .optout-card h4 { font-size: 0.9rem; color: var(--ink); margin-bottom: 0.4rem; }
    .optout-card p { font-size: 0.82rem; color: var(--ink-soft); margin: 0; line-height: 1.6; }
    .optout-card a { color: var(--accent); font-weight: 500; }

    /* ── BROWSER LINKS ── */
    .browser-links { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0.75rem 0 1rem; }
    .browser-link {
      display: inline-flex; align-items: center; gap: 0.35rem;
      font-size: 0.8rem; font-weight: 500; color: var(--accent);
      background: var(--blue-bg); border: 1px solid rgba(59,91,219,.2);
      padding: 0.3rem 0.75rem; border-radius: 100px; text-decoration: none;
      transition: background .18s;
    }
    .browser-link:hover { background: #d0e8ff; text-decoration: none; }

    /* ── RIGHTS GRID ── */
    .rights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.25rem 0; }
    .right-card {
      background: var(--surface-2); border: 1px solid var(--border);
      border-radius: 10px; padding: 1.1rem; text-align: center;
    }
    .right-card .right-icon { font-size: 1.6rem; margin-bottom: 0.4rem; }
    .right-card h4 { font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 0.3rem; }
    .right-card p { font-size: 0.78rem; color: var(--ink-muted); margin: 0; line-height: 1.5; }

    /* ── CONTACT BLOCK ── */
    .contact-block {
      background: linear-gradient(135deg, #f7f7fc, #eff0f8);
      border: 1px solid var(--border); border-radius: 14px;
      padding: 2rem; text-align: center; margin-top: 1rem;
    }
    .contact-block h3 { font-family: 'DM Serif Display', serif; font-size: 1.4rem; margin-bottom: 0.5rem; }
    .contact-block p { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 1rem; }
    .contact-block a.email-btn {
      display: inline-flex; align-items: center; gap: 0.4rem;
      background: var(--accent); color: #fff; font-weight: 600; font-size: 0.9rem;
      padding: 0.65rem 1.5rem; border-radius: 8px; text-decoration: none;
      transition: opacity .2s;
    }
    .contact-block a.email-btn:hover { opacity: 0.88; }

    /* ── FOOTER ── */
    footer {
      background: var(--ink);
      color: rgba(255,255,255,.55); padding: 3rem 2rem;
    }
    .footer-inner { max-width: 1100px; margin: 0 auto; }
    .footer-top {
      display: flex; justify-content: space-between; align-items: flex-start;
      flex-wrap: wrap; gap: 2rem; padding-bottom: 2rem;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .footer-brand { color: #fff; font-family: 'DM Serif Display', serif; font-size: 1.2rem; margin-bottom: 0.4rem; }
    .footer-tagline { font-size: 0.8rem; }
    .footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
    .footer-col h5 { color: rgba(255,255,255,.7); font-size: 0.72rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 0.75rem; }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 0.35rem; }
    .footer-col a { color: rgba(255,255,255,.45); font-size: 0.82rem; text-decoration: none; transition: color .2s; }
    .footer-col a:hover { color: #fff; }
    .footer-bottom { padding-top: 1.5rem; font-size: 0.78rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }

    /* ── ANIMATIONS stagger ── */
    .policy-section:nth-child(1)  { animation-delay: .05s }
    .policy-section:nth-child(2)  { animation-delay: .1s }
    .policy-section:nth-child(3)  { animation-delay: .15s }
    .policy-section:nth-child(4)  { animation-delay: .2s }
    .policy-section:nth-child(5)  { animation-delay: .25s }
    .policy-section:nth-child(6)  { animation-delay: .3s }
    .policy-section:nth-child(7)  { animation-delay: .35s }
    .policy-section:nth-child(8)  { animation-delay: .4s }
    .policy-section:nth-child(9)  { animation-delay: .45s }
    .policy-section:nth-child(10) { animation-delay: .5s }
    .policy-section:nth-child(11) { animation-delay: .55s }

    @media (max-width: 860px) {
      .toc-sidebar { display: none; }
      .optout-grid { grid-template-columns: 1fr; }
      .rights-grid { grid-template-columns: 1fr 1fr; }
      .nav-links { display: none; }
    }
    @media (max-width: 520px) {
      .rights-grid { grid-template-columns: 1fr; }
      .hero { padding: 3rem 1.25rem 2.5rem; }
      .page-wrap { padding: 0 1.25rem; }
    }
    

.seo-content-block {
    max-width: 820px;
    margin: 3rem auto 0;
    padding: 0 1.25rem;
    font-family: inherit;
    color: inherit;
  }
  .seo-content-block h2 {
    font-size: 1.45rem;
    font-weight: 600;
    color: inherit;
    margin: 2.5rem 0 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  .seo-content-block h2:first-child { border-top: none; margin-top: 0; }
  .seo-content-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.4rem;
    color: inherit;
  }
  .seo-content-block p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: inherit;
  }
  .seo-content-block strong { font-weight: 600; }
  .seo-content-block em { font-style: italic; }
  .seo-content-block a { color: #4a90e2; text-decoration: underline; }
  .seo-content-block a:hover { color: #2563eb; }
  .seo-content-block ul, .seo-content-block ol {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
  }
  .seo-content-block li {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 0.3rem;
  }
  /* Age / data table */
  .seo-table-wrap { overflow-x: auto; margin: 1.25rem 0 1.5rem; border-radius: 10px; border: 1px solid rgba(0,0,0,0.1); }
  .seo-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 460px;
  }
  .seo-table th {
    background: #f0f4ff;
    padding: 0.65rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.82rem;
    color: #374151;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  .seo-table td {
    padding: 0.6rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    color: inherit;
  }
  .seo-table tr:last-child td { border-bottom: none; }
  .seo-table tr:nth-child(even) td { background: rgba(0,0,0,0.02); }
  /* Breed size score cards */
  .seo-score-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 0.75rem;
    margin: 1rem 0 1.5rem;
  }
  .seo-score-card {
    background: #f8f9ff;
    border: 1px solid rgba(74,144,226,0.2);
    border-radius: 10px;
    padding: 0.9rem 1rem;
  }
  .seo-score-card .card-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
    margin-bottom: 0.3rem;
  }
  .seo-score-card .card-body { font-size: 0.9rem; line-height: 1.55; color: #374151; }
  /* FAQ accordion */
  .seo-faq { margin: 1.5rem 0 0; }
  .seo-faq-item {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-bottom: 0.6rem;
    overflow: hidden;
  }
  .seo-faq-q {
    width: 100%;
    background: #f8f9ff;
    border: none;
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.97rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: #1a1a2e;
  }
  .seo-faq-q:hover { background: #eef2ff; }
  .seo-faq-q .faq-icon { font-size: 1.1rem; flex-shrink: 0; transition: transform 0.2s; }
  .seo-faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
  .seo-faq-a {
    display: none;
    padding: 0.9rem 1.25rem 1rem;
    font-size: 0.95rem;
    line-height: 1.75;
    color: #374151;
    background: #fff;
  }
  .seo-faq-a.open { display: block; }
  .seo-faq-a a { color: #4a90e2; }
  /* Highlight blockquote / tip box */
  .seo-tip {
    background: #f0f7ff;
    border-left: 4px solid #4a90e2;
    border-radius: 0 8px 8px 0;
    padding: 0.9rem 1.2rem;
    margin: 1.25rem 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #1e3a5f;
  }
  /* ── END PASTE ── */

  /* Preview wrapper (not needed on live site) */
  .preview-wrap {
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    padding: 2rem 1.5rem 3rem;
    border: 1px solid #e5e7eb;
    border-top: none;
  }
  
  
:root{--sage:#4a7c59;--sage-light:#6a9e78;--sage-pale:#e8f3eb;--sky:#3d7eb5;--sky-pale:#e5f0f8;--cream:#faf8f3;--white:#ffffff;--charcoal:#1e2a1f;--mid:#4a5568;--muted:#718096;--border:#e2e8f0;--card:#ffffff;--nav-bg:rgba(255,255,255,0.93);--shadow:0 4px 24px rgba(30,42,31,0.08);--shadow-lg:0 16px 48px rgba(30,42,31,0.13);--radius:16px;--radius-sm:10px}
[data-theme="dark"]{--cream:#111815;--white:#1a2420;--charcoal:#e8f3eb;--mid:#b0c4ba;--muted:#7a9e88;--border:#2a3d30;--card:#1e2d25;--nav-bg:rgba(17,24,21,0.96);--shadow:0 4px 24px rgba(0,0,0,0.3);--shadow-lg:0 16px 48px rgba(0,0,0,0.4);--sage-pale:#1a2d20;--sky-pale:#152030}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'DM Sans',sans-serif;background:var(--cream);color:var(--charcoal);line-height:1.65;transition:background .3s,color .3s}
h1,h2,h3,h4{font-family:'Fraunces',serif;font-weight:600;line-height:1.2}
img{max-width:100%}

/* ── NAV ─────────────────────────────────────────── */
nav{position:fixed;top:0;left:0;right:0;z-index:200;background:var(--nav-bg);backdrop-filter:blur(14px);border-bottom:1px solid var(--border)}
.nav-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:0 24px;height:68px}
.logo{display:flex;align-items:center;gap:10px;font-family:'Fraunces',serif;font-size:1.4rem;font-weight:700;color:var(--sage);text-decoration:none;cursor:pointer;border:none;background:none}
.logo-icon{width:38px;height:38px;background:linear-gradient(135deg,var(--sage),var(--sage-light));border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:1.2rem}
.nav-links{display:flex;gap:4px;list-style:none}
.nav-links a{padding:8px 14px;border-radius:8px;font-size:.9rem;font-weight:500;color:var(--mid);text-decoration:none;transition:all .2s;cursor:pointer}
.nav-links a:hover,.nav-links a.active{background:var(--sage-pale);color:var(--sage)}
.nav-right{display:flex;align-items:center;gap:12px}
.theme-toggle{width:44px;height:44px;border-radius:50%;border:1px solid var(--border);background:var(--card);cursor:pointer;font-size:1.1rem;display:flex;align-items:center;justify-content:center;transition:all .2s}
.theme-toggle:hover{background:var(--sage-pale)}
.btn-nav{padding:9px 20px;border-radius:10px;background:var(--sage);color:white;font-size:.88rem;font-weight:600;border:none;cursor:pointer;transition:all .2s;font-family:'DM Sans',sans-serif}
.btn-nav:hover{background:var(--sage-light);transform:translateY(-1px)}
.hamburger{display:none;background:none;border:none;cursor:pointer;padding:8px;color:var(--charcoal)}
.mobile-menu{display:none;position:fixed;top:68px;left:0;right:0;background:var(--nav-bg);backdrop-filter:blur(14px);border-bottom:1px solid var(--border);padding:16px 24px;z-index:199}
.mobile-menu.open{display:block}
.mobile-menu a{display:block;padding:12px 16px;border-radius:10px;font-size:.95rem;font-weight:500;color:var(--mid);text-decoration:none;cursor:pointer;transition:all .2s}
.mobile-menu a:hover{background:var(--sage-pale);color:var(--sage)}

/* ── NOTIFICATION ────────────────────────────────── */
.notif{position:fixed;bottom:24px;right:24px;z-index:999;background:var(--charcoal);color:white;padding:14px 20px;border-radius:12px;font-size:.9rem;font-weight:500;transform:translateY(100px);opacity:0;transition:all .3s;max-width:320px}
.notif.show{transform:translateY(0);opacity:1}
.notif.success{background:var(--sage)}
.notif.error{background:#ef4444}

/* ── SECTIONS ────────────────────────────────────── */
.section{padding:80px 24px}
.container{max-width:1200px;margin:0 auto}
.section-tag{display:inline-block;background:var(--sage-pale);color:var(--sage);font-size:.8rem;font-weight:600;padding:5px 12px;border-radius:100px;text-transform:uppercase;letter-spacing:.08em;margin-bottom:12px}
.section-title{font-size:clamp(1.8rem,4vw,2.6rem);margin-bottom:14px}
.section-sub{font-size:1.05rem;color:var(--mid);max-width:540px}

/* ── BUTTONS ─────────────────────────────────────── */
.btn-primary{padding:14px 28px;border-radius:12px;background:linear-gradient(135deg,var(--sage),var(--sage-light));color:white;font-size:1rem;font-weight:600;border:none;cursor:pointer;box-shadow:0 8px 24px rgba(74,124,89,.3);transition:all .2s;font-family:'DM Sans',sans-serif}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 12px 32px rgba(74,124,89,.4)}
.btn-secondary{padding:14px 28px;border-radius:12px;background:var(--white);color:var(--charcoal);font-size:1rem;font-weight:600;border:1px solid var(--border);cursor:pointer;transition:all .2s;font-family:'DM Sans',sans-serif}
.btn-secondary:hover{background:var(--sage-pale);border-color:var(--sage)}

/* ── FOOTER ──────────────────────────────────────── */
footer{background:var(--charcoal);color:rgba(255,255,255,.7);padding:52px 24px 28px}
[data-theme="dark"] footer{background:#0d1510}
.footer-inner{max-width:1200px;margin:0 auto}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;margin-bottom:44px}
.footer-brand p{font-size:.88rem;max-width:260px;line-height:1.7;margin-top:14px}
.footer-col h4{color:white;font-size:.88rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;margin-bottom:16px}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:10px}
.footer-col a{font-size:.88rem;color:rgba(255,255,255,.6);text-decoration:none;cursor:pointer;transition:color .2s}
.footer-col a:hover{color:var(--sage-light)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:24px;display:flex;justify-content:space-between;align-items:center;font-size:.82rem}

/* ── NEWSLETTER ──────────────────────────────────── */
.newsletter-section{background:linear-gradient(135deg,var(--sage),var(--sky));padding:60px 24px}
.newsletter-inner{max-width:600px;margin:0 auto;text-align:center}
.newsletter-section h2{color:white;font-size:2rem;margin-bottom:10px}
.newsletter-section p{color:rgba(255,255,255,.85);margin-bottom:28px}
.newsletter-form{display:flex;gap:12px;max-width:440px;margin:0 auto}
.newsletter-form input{flex:1;padding:13px 18px;border-radius:10px;border:none;font-size:.95rem;font-family:'DM Sans',sans-serif}
.btn-subscribe{padding:13px 24px;border-radius:10px;background:white;color:var(--sage);font-weight:700;font-size:.95rem;border:none;cursor:pointer;transition:all .2s;white-space:nowrap;font-family:'DM Sans',sans-serif}
.btn-subscribe:hover{background:var(--cream)}

/* ── TOOLS HUB ───────────────────────────────────── */
.tools-hub-page{padding:100px 24px 60px;min-height:100vh}
.tools-hub-hero{text-align:center;max-width:700px;margin:0 auto 52px}
.tools-hub-hero h1{font-size:clamp(2rem,4vw,2.8rem);margin-bottom:12px}
.tools-hub-hero p{font-size:1.05rem;color:var(--mid)}
.tools-hub-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:20px;max-width:1100px;margin:0 auto}
.tool-hub-card{background:var(--card);border-radius:var(--radius);border:1px solid var(--border);padding:28px 24px;cursor:pointer;transition:all .3s;box-shadow:var(--shadow);display:flex;flex-direction:column;gap:0}
.tool-hub-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);border-color:var(--sage)}
.tool-hub-icon{width:56px;height:56px;border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:1.7rem;margin-bottom:16px}
.tool-hub-icon.green{background:var(--sage-pale)}
.tool-hub-icon.blue{background:var(--sky-pale)}
.tool-hub-icon.orange{background:#fff3ed}
.tool-hub-icon.purple{background:#f3edff}
.tool-hub-card h3{font-size:1.05rem;margin-bottom:8px}
.tool-hub-card p{font-size:.85rem;color:var(--mid);flex:1;margin-bottom:16px}
.tool-hub-badge{display:inline-flex;align-items:center;gap:6px;background:var(--sage-pale);color:var(--sage);font-size:.75rem;font-weight:600;padding:4px 10px;border-radius:100px}
.tool-hub-card .arrow{color:var(--sage);font-weight:700;font-size:.88rem;margin-top:12px;display:flex;align-items:center;gap:4px;transition:gap .2s}
.tool-hub-card:hover .arrow{gap:8px}

/* ── TOOL PAGE SHARED LAYOUT ─────────────────────── */
.tool-page{padding:90px 24px 60px;min-height:100vh}
.tool-page-inner{max-width:860px;margin:0 auto}
.tool-page-back{display:inline-flex;align-items:center;gap:8px;color:var(--sage);font-weight:600;font-size:.9rem;cursor:pointer;margin-bottom:28px;background:none;border:none;padding:0;font-family:'DM Sans',sans-serif;transition:gap .2s}
.tool-page-back:hover{gap:12px}
.tool-page-header{text-align:center;margin-bottom:36px}
.tool-page-header h1{font-size:clamp(1.8rem,3.5vw,2.4rem);margin-bottom:10px}
.tool-page-header p{font-size:1rem;color:var(--mid);max-width:560px;margin:0 auto}
.tool-trust{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-top:14px}
.tool-trust-badge{display:inline-flex;align-items:center;gap:5px;background:var(--white);border:1px solid var(--border);color:var(--sage);font-size:.75rem;font-weight:600;padding:4px 12px;border-radius:100px}
.tool-card{background:var(--card);border-radius:20px;border:1px solid var(--border);box-shadow:var(--shadow);overflow:hidden;margin-bottom:24px}
.tool-card-body{display:grid;grid-template-columns:1fr 1fr;gap:0}
@media(max-width:680px){.tool-card-body{grid-template-columns:1fr}}
.tool-card-inputs{padding:28px 30px;border-right:1px solid var(--border)}
@media(max-width:680px){.tool-card-inputs{border-right:none;border-bottom:1px solid var(--border)}}
.tool-card-result{padding:28px 30px;background:linear-gradient(155deg,var(--sage-pale) 0%,var(--white) 100%);display:flex;flex-direction:column;justify-content:center}

/* ── TOOL FORM ELEMENTS ──────────────────────────── */
.tf-group{margin-bottom:16px}
.tf-group label{display:block;font-size:.78rem;font-weight:600;color:var(--mid);margin-bottom:6px;text-transform:uppercase;letter-spacing:.05em}
.tf-group input,.tf-group select{width:100%;padding:12px 15px;border-radius:10px;border:1.5px solid var(--border);background:var(--white);color:var(--charcoal);font-family:'DM Sans',sans-serif;font-size:.95rem;outline:none;transition:border-color .2s;-webkit-appearance:none}
.tf-group input:focus,.tf-group select:focus{border-color:var(--sage)}
.tf-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.tf-btn-row{display:flex;gap:10px;margin-top:20px}
.tf-calc-btn{flex:2;padding:13px;border-radius:12px;background:linear-gradient(135deg,var(--sage),var(--sage-light));color:white;font-size:.95rem;font-weight:700;border:none;cursor:pointer;font-family:'DM Sans',sans-serif;box-shadow:0 6px 18px rgba(74,124,89,.3);transition:all .2s}
.tf-calc-btn:hover{transform:translateY(-2px);box-shadow:0 10px 24px rgba(74,124,89,.4)}
.tf-reset-btn{flex:1;padding:13px;border-radius:12px;border:1.5px solid var(--border);background:transparent;color:var(--muted);font-size:.88rem;font-weight:600;cursor:pointer;font-family:'DM Sans',sans-serif;transition:all .2s}
.tf-reset-btn:hover{border-color:var(--sage);color:var(--sage)}

/* ── RESULT BOX ──────────────────────────────────── */
.tr-empty{text-align:center;padding:24px 12px;color:var(--muted)}
.tr-empty-icon{font-size:2.8rem;display:block;margin-bottom:10px}
.tr-empty p{font-size:.88rem}
.tr-result{display:none}
.tr-result.visible{display:block}
.tr-main{background:var(--white);border-radius:var(--radius-sm);border:1px solid var(--border);padding:20px;text-align:center;margin-bottom:14px;box-shadow:0 2px 10px rgba(30,42,31,.06)}
.tr-main-val{font-family:'Fraunces',serif;font-size:2.4rem;font-weight:700;color:var(--sage);line-height:1}
.tr-main-label{font-size:.78rem;color:var(--muted);margin-top:5px}
.tr-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:14px}
.tr-item{background:var(--white);border:1px solid var(--border);border-radius:10px;padding:13px;text-align:center}
.tr-item-val{font-family:'Fraunces',serif;font-size:1.2rem;font-weight:700;color:var(--charcoal)}
.tr-item-label{font-size:.72rem;color:var(--muted);margin-top:3px}
.tr-note{font-size:.78rem;color:var(--mid);background:var(--sage-pale);border-radius:8px;padding:10px 14px;line-height:1.55;margin-bottom:12px}
.tr-save-btn{width:100%;padding:10px;border-radius:10px;background:transparent;border:1.5px solid var(--border);color:var(--mid);font-size:.85rem;font-weight:600;cursor:pointer;font-family:'DM Sans',sans-serif;transition:all .2s}
.tr-save-btn:hover{background:var(--sage);border-color:var(--sage);color:white}
.tr-pdf-btn{width:100%;padding:10px;border-radius:10px;background:linear-gradient(135deg,var(--sage),var(--sage-light));color:white;border:none;font-size:.85rem;font-weight:700;cursor:pointer;font-family:'DM Sans',sans-serif;transition:all .2s;margin-top:8px}
.tr-pdf-btn:hover{transform:translateY(-1px);box-shadow:0 6px 16px rgba(74,124,89,.35)}

/* ── NAME CHIPS ──────────────────────────────────── */
.name-chips-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-bottom:12px}
@media(max-width:400px){.name-chips-grid{grid-template-columns:repeat(2,1fr)}}
.name-chip{background:var(--white);border:1.5px solid var(--border);border-radius:9px;padding:10px 6px;text-align:center;font-weight:700;font-size:.85rem;color:var(--charcoal);cursor:pointer;transition:all .2s}
.name-chip:hover{border-color:var(--sage);background:var(--sage-pale);color:var(--sage)}

/* ── TOOL FAQ ────────────────────────────────── */
.tool-faq{background:var(--card);border-radius:var(--radius);border:1px solid var(--border);padding:28px 32px;margin-top:16px}
.tool-faq h3{font-size:1.15rem;margin-bottom:20px;color:var(--charcoal)}
.tool-faq-item{border-bottom:1px solid var(--border);padding:14px 0}
.tool-faq-item:last-child{border-bottom:none;padding-bottom:0}
.tool-faq-q{font-weight:700;font-size:.9rem;color:var(--charcoal);cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:10px;transition:color .2s}
.tool-faq-q:hover{color:var(--sage)}
.tool-faq-q::after{content:'+';font-size:1.2rem;color:var(--sage);flex-shrink:0;transition:transform .2s}
.tool-faq-item.open .tool-faq-q::after{transform:rotate(45deg)}
.tool-faq-a{font-size:.86rem;color:var(--mid);line-height:1.75;display:none;padding-top:10px}
.tool-faq-item.open .tool-faq-a{display:block}

/* ── TOOL SEO ARTICLE ────────────────────────── */
.tool-article{background:var(--card);border-radius:var(--radius);border:1px solid var(--border);padding:32px;margin-top:16px}
.tool-article h2{font-size:1.4rem;margin-bottom:10px}
.tool-article h3{font-size:1.1rem;margin:22px 0 8px;color:var(--charcoal)}
.tool-article p{font-size:.9rem;color:var(--mid);line-height:1.8;margin-bottom:12px}
.tool-article ul,.tool-article ol{padding-left:20px;margin-bottom:14px}
.tool-article li{font-size:.88rem;color:var(--mid);line-height:1.7;margin-bottom:6px}
.tool-article strong{color:var(--charcoal)}
.tool-article-tag{display:inline-block;background:var(--sage-pale);color:var(--sage);font-size:.75rem;font-weight:700;padding:4px 12px;border-radius:100px;text-transform:uppercase;letter-spacing:.07em;margin-bottom:14px}
.tool-article blockquote{border-left:3px solid var(--sage);padding:12px 18px;background:var(--sage-pale);border-radius:0 10px 10px 0;margin:16px 0;font-style:italic;font-size:.88rem;color:var(--mid)}

/* ── ABOUT / CONTACT / PRIVACY ───────────────────── */
.about-page{padding:100px 24px 60px}
.about-hero{max-width:900px;margin:0 auto;text-align:center;margin-bottom:60px}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;max-width:1000px;margin:0 auto 60px}
.value-card{background:var(--card);border-radius:var(--radius);padding:28px;border:1px solid var(--border);text-align:center}
.value-icon{font-size:2.4rem;display:block;margin-bottom:16px}
.value-card h3{font-size:1.05rem;margin-bottom:8px}
.value-card p{font-size:.88rem;color:var(--mid)}
.team-section{max-width:800px;margin:0 auto;text-align:center}
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:36px}
.team-avatar{width:80px;height:80px;border-radius:50%;background:linear-gradient(135deg,var(--sage-pale),var(--sky-pale));display:flex;align-items:center;justify-content:center;font-size:2rem;margin:0 auto 14px}
.team-name{font-weight:700;margin-bottom:4px}
.team-role{font-size:.85rem;color:var(--muted)}
.contact-page{padding:100px 24px 60px}
.contact-layout{display:grid;grid-template-columns:1fr 1.2fr;gap:48px;max-width:1000px;margin:0 auto}
.contact-info h1{font-size:clamp(1.8rem,3.5vw,2.4rem);margin-bottom:14px}
.contact-info > p{color:var(--mid);margin-bottom:32px}
.contact-item{display:flex;gap:14px;align-items:flex-start;margin-bottom:24px}
.contact-icon{width:44px;height:44px;border-radius:11px;background:var(--sage-pale);display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex-shrink:0}
.contact-item h4{font-size:.9rem;font-weight:700;margin-bottom:4px}
.contact-item p{font-size:.88rem;color:var(--muted);margin:0}
.contact-form{background:var(--card);border-radius:var(--radius);border:1px solid var(--border);padding:36px}
.contact-form h2{font-size:1.4rem;margin-bottom:24px}
.cform-group{margin-bottom:18px}
.cform-group label{display:block;font-size:.85rem;font-weight:600;color:var(--mid);margin-bottom:7px}
.cform-group input,.cform-group select,.cform-group textarea{width:100%;padding:12px 16px;border-radius:10px;border:1.5px solid var(--border);background:var(--white);color:var(--charcoal);font-family:'DM Sans',sans-serif;font-size:.95rem;outline:none;transition:border-color .2s}
.cform-group input:focus,.cform-group select:focus,.cform-group textarea:focus{border-color:var(--sage)}
.cform-group textarea{resize:vertical;min-height:120px}
.policy-page{padding:100px 24px 60px;max-width:800px;margin:0 auto}
.policy-page h1{margin-bottom:8px}
.policy-date{color:var(--muted);font-size:.88rem;margin-bottom:36px}
.policy-page h2{font-size:1.3rem;margin:28px 0 10px}
.policy-page p,.policy-page li{font-size:.95rem;color:var(--mid);margin-bottom:10px}
.policy-page ul{padding-left:20px}

/* ── BLOG ────────────────────────────────────────── */
.blog-page{padding:100px 24px 60px;min-height:100vh}
.blog-hero{text-align:center;margin-bottom:52px}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;max-width:1100px;margin:0 auto}
.blog-card{background:var(--card);border-radius:var(--radius);border:1px solid var(--border);overflow:hidden;transition:all .3s;cursor:pointer}
.blog-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.blog-img{height:190px;display:flex;align-items:center;justify-content:center;font-size:4rem}
.blog-img.green{background:linear-gradient(135deg,var(--sage-pale),#d4edda)}
.blog-img.blue{background:linear-gradient(135deg,var(--sky-pale),#d4e8f5)}
.blog-img.orange{background:linear-gradient(135deg,#fff3ed,#fde8d8)}
.blog-body{padding:24px}
.blog-tag{display:inline-block;background:var(--sage-pale);color:var(--sage);font-size:.72rem;font-weight:700;padding:3px 10px;border-radius:100px;text-transform:uppercase;letter-spacing:.06em;margin-bottom:10px}
.blog-card h3{font-size:1.1rem;margin-bottom:10px}
.blog-card p{font-size:.88rem;color:var(--mid);margin-bottom:16px}
.blog-meta{display:flex;justify-content:space-between;font-size:.78rem;color:var(--muted)}

/* ── ARTICLE READER ──────────────────────────────── */
.article-page{padding:100px 24px 60px;min-height:100vh}
.article-inner{max-width:760px;margin:0 auto}
.article-back{display:inline-flex;align-items:center;gap:8px;color:var(--sage);font-weight:600;font-size:.9rem;cursor:pointer;margin-bottom:28px;background:none;border:none;padding:0;font-family:'DM Sans',sans-serif}
.article-tag{display:inline-block;background:var(--sage-pale);color:var(--sage);font-size:.75rem;font-weight:700;padding:4px 12px;border-radius:100px;text-transform:uppercase;letter-spacing:.06em;margin-bottom:14px}
.article-title{font-size:clamp(1.8rem,4vw,2.6rem);margin-bottom:16px}
.article-meta{display:flex;align-items:center;gap:16px;margin-bottom:32px;padding-bottom:24px;border-bottom:1px solid var(--border);flex-wrap:wrap}
.article-avatar{width:44px;height:44px;border-radius:50%;background:linear-gradient(135deg,var(--sage-pale),var(--sky-pale));display:flex;align-items:center;justify-content:center;font-size:1.3rem;flex-shrink:0}
.article-author-name{font-weight:700;font-size:.92rem}
.article-date{font-size:.8rem;color:var(--muted)}
.article-read-time{font-size:.8rem;color:var(--muted);margin-left:auto}
.article-content{font-size:1rem;line-height:1.85;color:var(--mid)}
.article-content h2{font-size:1.5rem;color:var(--charcoal);margin:36px 0 14px;padding-top:8px;border-top:2px solid var(--sage-pale)}
.article-content h3{font-size:1.15rem;color:var(--charcoal);margin:24px 0 10px}
.article-content p{margin-bottom:18px}
.article-content ul,.article-content ol{padding-left:24px;margin-bottom:18px}
.article-content li{margin-bottom:8px}
.article-content strong{color:var(--charcoal);font-weight:700}
.article-content blockquote{border-left:4px solid var(--sage);padding:14px 22px;background:var(--sage-pale);border-radius:0 12px 12px 0;margin:24px 0;font-style:italic;color:var(--charcoal)}
.article-content .callout{background:var(--sky-pale);border:1px solid rgba(61,126,181,.2);border-radius:12px;padding:18px 22px;margin:24px 0}
.article-content .callout strong{color:var(--sky)}
.article-cta{background:linear-gradient(135deg,var(--sage-pale),var(--sky-pale));border-radius:16px;padding:28px;text-align:center;margin-top:48px;border:1px solid var(--border)}
.article-cta h3{font-size:1.3rem;margin-bottom:8px}
.article-cta p{color:var(--mid);font-size:.92rem;margin-bottom:18px}

/* ── BREED PAGE ──────────────────────────────────── */
.breed-page{padding:100px 24px 60px;min-height:100vh}
.breed-search{max-width:600px;margin:0 auto 36px;text-align:center}
.breed-search h1{margin-bottom:10px}
.breed-search p{color:var(--mid);margin-bottom:24px}
.search-box{display:flex;gap:10px;max-width:460px;margin:0 auto}
.search-box input{flex:1;padding:12px 16px;border-radius:10px;border:1.5px solid var(--border);background:var(--white);color:var(--charcoal);font-family:'DM Sans',sans-serif;font-size:.95rem;outline:none;transition:border-color .2s}
.search-box input:focus{border-color:var(--sage)}
.btn-search{padding:12px 20px;border-radius:10px;background:var(--sage);color:white;border:none;cursor:pointer;font-weight:600;font-family:'DM Sans',sans-serif;transition:all .2s}
.btn-search:hover{background:var(--sage-light)}
.breed-filter-tabs{display:flex;justify-content:center;gap:8px;margin-bottom:32px;flex-wrap:wrap}
.filter-tab{padding:7px 18px;border-radius:100px;border:1.5px solid var(--border);background:var(--card);color:var(--mid);font-size:.85rem;font-weight:600;cursor:pointer;transition:all .2s;font-family:'DM Sans',sans-serif}
.filter-tab.active{background:var(--sage);border-color:var(--sage);color:white}
.breed-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;max-width:1100px;margin:0 auto;contain:layout style}
.breed-card{background:var(--card);border-radius:var(--radius);border:1px solid var(--border);padding:24px 20px;text-align:center;transition:all .3s;cursor:pointer;contain:layout style paint}
.breed-card:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:var(--sage)}
.breed-emoji{font-size:2.4rem;display:block;margin-bottom:12px}
.breed-card h3{font-size:1rem;margin-bottom:6px}
.breed-card p{font-size:.8rem;color:var(--muted)}
.breed-portion{font-size:.82rem;color:var(--sage);font-weight:600;margin-top:8px}

/* ── AFFILIATE ───────────────────────────────────── */
.affiliate-section{padding:80px 24px}
.affiliate-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:44px}
.aff-card{background:var(--card);border-radius:var(--radius);border:1px solid var(--border);padding:24px;text-align:center;transition:all .3s}
.aff-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.aff-badge{display:inline-block;background:var(--sage-pale);color:var(--sage);font-size:.72rem;font-weight:700;padding:3px 10px;border-radius:100px;margin-bottom:14px}
.aff-emoji{font-size:2.4rem;display:block;margin-bottom:12px}
.aff-card h3{font-size:.98rem;margin-bottom:6px}
.aff-card p{font-size:.82rem;color:var(--muted);margin-bottom:14px}
.btn-aff{padding:9px 18px;border-radius:9px;border:1.5px solid var(--border);background:transparent;color:var(--mid);font-size:.82rem;font-weight:600;cursor:pointer;transition:all .2s;font-family:'DM Sans',sans-serif}
.btn-aff:hover{background:var(--sage-pale);border-color:var(--sage);color:var(--sage)}

/* ── HOME TOOLS STRIP ────────────────────────────── */
.home-tools-section{padding:72px 24px}
.home-tools-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:16px;margin-top:44px;max-width:1200px;margin-left:auto;margin-right:auto}
.home-tool-card{background:var(--card);border-radius:var(--radius);border:1px solid var(--border);padding:24px 20px;cursor:pointer;transition:all .3s;display:flex;align-items:center;gap:16px}
.home-tool-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg);border-color:var(--sage)}
.home-tool-icon{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.4rem;flex-shrink:0}
.home-tool-text h4{font-size:.95rem;margin-bottom:4px}
.home-tool-text p{font-size:.78rem;color:var(--muted)}
.feat-icon.green{background:var(--sage-pale)}.feat-icon.blue{background:var(--sky-pale)}.feat-icon.orange{background:#fff3ed}.feat-icon.purple{background:#f3edff}

/* ── FAQ SECTION ─────────────────────────────────── */
.faq-section{padding:80px 24px;background:var(--sage-pale)}
.faq-container{max-width:800px;margin:0 auto}
.faq-item{background:var(--card);border-radius:var(--radius-sm);border:1px solid var(--border);margin-bottom:12px;overflow:hidden}
.faq-q{padding:18px 24px;font-weight:700;font-size:.95rem;color:var(--charcoal);cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:12px;transition:color .2s}
.faq-q:hover{color:var(--sage)}
.faq-q::after{content:'+';font-size:1.3rem;color:var(--sage);flex-shrink:0;transition:transform .2s}
.faq-item.open .faq-q::after{transform:rotate(45deg)}
.faq-a{font-size:.9rem;color:var(--mid);line-height:1.75;display:none;padding:0 24px 18px}
.faq-item.open .faq-a{display:block}

/* ── HOW GRID ────────────────────────────────────── */
.how-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin-top:52px}
.how-card{background:var(--card);border-radius:var(--radius);padding:32px 28px;border:1px solid var(--border);transition:all .3s}
.how-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--sage)}
.how-num{width:48px;height:48px;border-radius:12px;background:linear-gradient(135deg,var(--sage-pale),var(--sky-pale));display:flex;align-items:center;justify-content:center;font-family:'Fraunces',serif;font-size:1.4rem;font-weight:700;color:var(--sage);margin-bottom:20px}
.how-card h3{font-size:1.15rem;margin-bottom:10px}
.how-card p{font-size:.92rem;color:var(--mid)}
.features-bg{background:var(--sage-pale)}
.features-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin-top:52px}
.feat-card{background:var(--card);border-radius:var(--radius);padding:28px;border:1px solid var(--border);display:flex;gap:18px;align-items:flex-start}
.feat-icon{width:48px;height:48px;border-radius:12px;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:1.4rem}
.feat-card h3{font-size:1.05rem;margin-bottom:6px}
.feat-card p{font-size:.88rem;color:var(--mid)}

/* ── HERO ────────────────────────────────────────── */
.hero{min-height:100vh;background:linear-gradient(160deg,var(--sage-pale) 0%,var(--cream) 45%,var(--sky-pale) 100%);display:flex;align-items:center;padding:100px 24px 60px;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:-80px;right:-80px;width:500px;height:500px;background:radial-gradient(circle,rgba(74,124,89,.09) 0%,transparent 70%);pointer-events:none}
.hero-inner{max-width:1200px;margin:0 auto;width:100%;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:var(--white);border:1px solid var(--border);padding:6px 14px;border-radius:100px;font-size:.82rem;font-weight:500;color:var(--sage);margin-bottom:20px}
.hero h1{font-size:clamp(2.4rem,5vw,3.6rem);margin-bottom:20px}
.hero h1 em{color:var(--sage);font-style:italic}
.hero p{font-size:1.1rem;color:var(--mid);margin-bottom:36px;max-width:480px}
.hero-btns{display:flex;gap:14px;flex-wrap:wrap}
.hero-stats{display:flex;gap:28px;margin-top:40px}
.stat-num{font-family:'Fraunces',serif;font-size:1.8rem;font-weight:700;color:var(--sage)}
.stat-label{font-size:.82rem;color:var(--muted)}
.hero-visual{display:flex;justify-content:center;align-items:center}
.hero-card-stack{position:relative;width:320px;height:360px}
.floating-card{position:absolute;background:var(--card);border-radius:var(--radius);padding:20px;box-shadow:var(--shadow-lg);border:1px solid var(--border);animation:float 4s ease-in-out infinite}
.floating-card:nth-child(1){top:0;left:20px;right:20px;animation-delay:0s}
.floating-card:nth-child(2){bottom:30px;left:0;right:40px;animation-delay:1.5s;background:var(--sage);color:white}
.floating-card:nth-child(3){bottom:0;right:0;width:140px;animation-delay:.8s}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
.floating-card:nth-child(2) .card-label{color:rgba(255,255,255,.7)}
.card-label{font-size:.75rem;font-weight:600;color:var(--muted);text-transform:uppercase;letter-spacing:.08em;margin-bottom:8px}
.card-value{font-family:'Fraunces',serif;font-size:1.6rem;font-weight:700}
.floating-card:nth-child(2) .card-value,.floating-card:nth-child(2) .card-sub{color:rgba(255,255,255,.9)}
.card-sub{font-size:.82rem;color:var(--muted);margin-top:4px}

/* ── RESPONSIVE ──────────────────────────────────── */
@media(max-width:900px){
  .nav-links,.btn-nav{display:none}
  .hamburger{display:flex}
  .hero-inner{grid-template-columns:1fr}
  .hero-visual{display:none}
  .how-grid,.features-grid{grid-template-columns:1fr}
  .blog-grid{grid-template-columns:repeat(2,1fr)}
  .breed-grid{grid-template-columns:repeat(2,1fr)}
  .affiliate-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr;gap:28px}
  .contact-layout{grid-template-columns:1fr}
  .values-grid{grid-template-columns:1fr}
  .team-grid{grid-template-columns:1fr}
}
@media(max-width:600px){
  .blog-grid{grid-template-columns:1fr}
  .breed-grid{grid-template-columns:1fr 1fr}
  .affiliate-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .hero-stats{flex-wrap:wrap;gap:16px}
  .newsletter-form{flex-direction:column}
}
@media(max-width:768px){
  .breed-card:hover{transform:none}
}
