/* ============================================================
   Breed Right — Design System
   Palette: Trust Navy + Gold on Off-White
   ============================================================ */

:root {
  /* Colours */
  --navy:        #1B2A41;
  --navy-700:    #24385a;
  --navy-600:    #2f4a73;
  --gold:        #C9A24B;
  --gold-dark:   #b08a36;
  --gold-soft:   #eaddbf;
  --cream:       #F7F5F1;
  --paper:       #ffffff;
  --ink:         #1B2A41;
  --muted:       #5d6b80;
  --line:        #e6e2da;
  --success:     #3f7d62;
  --danger:      #b5503f;

  /* Typography */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing / shape */
  --radius:      14px;
  --radius-sm:   10px;
  --radius-lg:   24px;
  --shadow-sm:   0 1px 2px rgba(27,42,65,.06), 0 2px 6px rgba(27,42,65,.05);
  --shadow:      0 6px 24px rgba(27,42,65,.10);
  --shadow-lg:   0 18px 50px rgba(27,42,65,.18);
  --container:   1180px;
  --ease:        cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.12; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--muted); }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section--tight { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.center { text-align: center; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: .75rem;
}
.lead { font-size: 1.12rem; color: var(--muted); max-width: 56ch; }
.section-head { max-width: 60ch; margin-bottom: 2.5rem; }
.section-head.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; font-size: .95rem;
  padding: .8rem 1.4rem; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold); color: var(--navy); box-shadow: 0 6px 18px rgba(201,162,75,.35); }
.btn--gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201,162,75,.45); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--outline:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn--ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost-light:hover { background: rgba(255,255,255,.22); }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 1rem 1.7rem; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247,245,241,.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 1.5rem; height: 74px; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-weight: 800; font-size: 1.35rem; color: var(--navy); }
.brand .mark {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--navy); color: var(--gold); font-size: 1.25rem; box-shadow: var(--shadow-sm);
}
.brand .mark svg { width: 22px; height: 22px; }
.nav-links { display: flex; align-items: center; gap: 1.4rem; margin-left: 1rem; }
.nav-links a { font-weight: 500; font-size: .95rem; color: var(--navy); position: relative; padding: .25rem 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--gold);
  transition: width .25s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: .8rem; margin-left: auto; }
.nav-actions .login { font-weight: 600; font-size: .95rem; }
.icon-btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper); display: grid; place-items: center; color: var(--navy); }
.icon-btn:hover { border-color: var(--navy); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
.nav-toggle span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: .25s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(27,42,65,.92) 0%, rgba(27,42,65,.74) 45%, rgba(27,42,65,.35) 100%); }
.hero__inner { position: relative; z-index: 2; padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem,7vw,5.5rem); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 50ch; margin-top: 1.1rem; }
.hero__stats { display: flex; gap: 2.5rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero__stats .num { font-family: var(--serif); font-size: 1.8rem; color: var(--gold); }
.hero__stats .lbl { font-size: .85rem; color: rgba(255,255,255,.75); }

/* Search bar */
.searchbar {
  margin-top: 2.4rem; background: var(--paper); border-radius: var(--radius-lg);
  padding: .7rem; display: grid; grid-template-columns: 1.3fr 1fr auto; gap: .5rem;
  box-shadow: var(--shadow-lg); max-width: 760px;
}
.searchbar .field { display: flex; flex-direction: column; padding: .35rem .9rem; border-radius: var(--radius-sm); }
.searchbar .field + .field { border-left: 1px solid var(--line); }
.searchbar label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.searchbar select, .searchbar input { border: 0; background: transparent; font-size: 1rem; color: var(--ink); padding: .15rem 0; outline: none; font-family: inherit; }
.searchbar .btn { align-self: stretch; }

/* ---------- Feature cards ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.feature-card .ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--navy); color: var(--gold); margin-bottom: 1.1rem; }
.feature-card .ic svg { width: 28px; height: 28px; }
.feature-card h3 { margin-bottom: .5rem; }
.feature-card a.more { color: var(--gold-dark); font-weight: 600; font-size: .9rem; display: inline-flex; gap: .35rem; margin-top: 1rem; }
.feature-card a.more:hover { gap: .6rem; }

/* ---------- Breed grid ---------- */
.cards { display: grid; gap: 1.5rem; }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }

.breed-card {
  position: relative; border-radius: var(--radius); overflow: hidden; background: var(--navy);
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  aspect-ratio: 4/5;
}
.breed-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.breed-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.breed-card:hover img { transform: scale(1.06); }
.breed-card .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,42,65,.9) 8%, rgba(27,42,65,.05) 60%); }
.breed-card .meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.1rem; color: #fff; }
.breed-card .meta h3 { color: #fff; font-size: 1.15rem; }
.breed-card .meta .sub { font-size: .82rem; color: rgba(255,255,255,.8); }
.breed-card .group-tag { position: absolute; top: .8rem; left: .8rem; background: rgba(255,255,255,.92); color: var(--navy); font-size: .7rem; font-weight: 700; padding: .25rem .6rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; }

/* ---------- Puppy / listing card ---------- */
.puppy-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex; flex-direction: column;
}
.puppy-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.puppy-card__img { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.puppy-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.puppy-card:hover .puppy-card__img img { transform: scale(1.05); }
.puppy-card__fav { position: absolute; top: .7rem; right: .7rem; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; color: var(--navy); border: 0; }
.puppy-card__fav:hover { color: var(--danger); }
.puppy-card__badges { position: absolute; top: .7rem; left: .7rem; display: flex; gap: .35rem; flex-wrap: wrap; }
.puppy-card__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.puppy-card__row { display: flex; justify-content: space-between; align-items: baseline; gap: .5rem; }
.puppy-card__title { font-family: var(--serif); font-size: 1.15rem; color: var(--navy); }
.puppy-card__price { font-weight: 700; color: var(--navy); font-size: 1.1rem; white-space: nowrap; }
.puppy-card__loc { font-size: .88rem; color: var(--muted); display: flex; align-items: center; gap: .35rem; }
.puppy-card__meta { display: flex; gap: 1rem; font-size: .82rem; color: var(--muted); margin-top: .2rem; }
.puppy-card__foot { margin-top: auto; padding-top: .9rem; border-top: 1px solid var(--line); display: flex; align-items: center; gap: .6rem; }
.avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-weight: 700; font-size: .8rem; flex: none; }
.avatar--lg { width: 64px; height: 64px; font-size: 1.3rem; }

/* ---------- Badges & chips ---------- */
.badge { font-size: .68rem; font-weight: 700; padding: .28rem .55rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; background: var(--paper); color: var(--navy); box-shadow: var(--shadow-sm); }
.badge--gold { background: var(--gold); color: var(--navy); }
.badge--green { background: #e2efe8; color: var(--success); }
.badge--navy { background: var(--navy); color: #fff; }
.chip { display: inline-flex; align-items: center; gap: .4rem; padding: .5rem .95rem; border-radius: 999px; border: 1px solid var(--line); background: var(--paper); font-size: .88rem; font-weight: 500; color: var(--navy); transition: .2s var(--ease); cursor: pointer; }
.chip:hover { border-color: var(--navy); }
.chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.chip-row { display: flex; gap: .6rem; flex-wrap: wrap; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; counter-reset: step; }
.step { text-align: center; }
.step .n { width: 60px; height: 60px; margin: 0 auto 1rem; border-radius: 50%; background: var(--cream); border: 2px solid var(--gold); color: var(--navy); display: grid; place-items: center; font-family: var(--serif); font-size: 1.5rem; }
.step h3 { margin-bottom: .4rem; }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.quote { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.quote .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: .8rem; }
.quote p { color: var(--ink); font-size: 1.02rem; }
.quote .who { display: flex; align-items: center; gap: .7rem; margin-top: 1.2rem; }
.quote .who b { color: var(--navy); display: block; font-size: .92rem; }
.quote .who span { font-size: .82rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.5rem,5vw,4rem); }
.cta-band::before { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(201,162,75,.35), transparent 70%); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.8); position: relative; margin-top: .6rem; }
.cta-band .actions { position: relative; margin-top: 1.6rem; display: flex; gap: .8rem; flex-wrap: wrap; }

/* ---------- Page banner (inner pages) ---------- */
.page-banner { background: var(--navy); color: #fff; padding: clamp(2.5rem,5vw,3.5rem) 0; }
.page-banner h1 { color: #fff; }
.page-banner p { color: rgba(255,255,255,.8); margin-top: .5rem; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.65); margin-bottom: .8rem; display: flex; gap: .5rem; }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Layout: filters + results ---------- */
.layout { display: grid; grid-template-columns: 280px 1fr; gap: 2.2rem; align-items: start; }
.filters { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; position: sticky; top: 92px; }
.filters h4 { font-family: var(--sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin: 1.2rem 0 .6rem; }
.filters h4:first-child { margin-top: 0; }
.filter-opt { display: flex; align-items: center; gap: .6rem; padding: .35rem 0; font-size: .92rem; color: var(--navy); cursor: pointer; }
.filter-opt input { accent-color: var(--navy); width: 16px; height: 16px; }
.results-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.3rem; flex-wrap: wrap; gap: .8rem; }
.results-head .count { color: var(--muted); font-size: .92rem; }
.select-inline { border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1rem; background: var(--paper); font-family: inherit; font-size: .9rem; color: var(--navy); }
.field-input { width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .6rem .8rem; font-family: inherit; font-size: .92rem; background: var(--cream); }

/* ---------- Single listing / detail ---------- */
.detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2.5rem; align-items: start; }
.gallery__main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/11; box-shadow: var(--shadow-sm); }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: .7rem; margin-top: .7rem; }
.gallery__thumbs img { border-radius: var(--radius-sm); aspect-ratio: 1; object-fit: cover; cursor: pointer; opacity: .7; transition: opacity .2s, outline .2s; outline: 2px solid transparent; }
.gallery__thumbs img:hover, .gallery__thumbs img.active { opacity: 1; outline-color: var(--gold); }
.sticky-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); position: sticky; top: 92px; }
.price-tag { font-family: var(--serif); font-size: 2rem; color: var(--navy); }
.spec-list { display: grid; grid-template-columns: repeat(2,1fr); gap: .9rem 1rem; margin: 1.4rem 0; }
.spec { background: var(--cream); border-radius: var(--radius-sm); padding: .8rem .9rem; }
.spec .k { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.spec .v { font-weight: 600; color: var(--navy); }
.divider { height: 1px; background: var(--line); margin: 1.4rem 0; }

.prose p { margin-bottom: 1rem; color: var(--ink); }
.prose h2, .prose h3 { margin: 1.6rem 0 .6rem; }

/* ---------- Pricing (join page) ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: stretch; }
.price-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.price-card.featured { border: 2px solid var(--gold); box-shadow: var(--shadow); transform: translateY(-8px); position: relative; }
.price-card.featured .tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-weight: 700; font-size: .72rem; padding: .3rem .9rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; }
.price-card .amt { font-family: var(--serif); font-size: 2.6rem; color: var(--navy); }
.price-card .amt span { font-size: 1rem; color: var(--muted); font-family: var(--sans); }
.price-card ul.feats { margin: 1.3rem 0; display: grid; gap: .7rem; }
.price-card ul.feats li { display: flex; gap: .6rem; font-size: .94rem; color: var(--ink); }
.price-card ul.feats li svg { color: var(--success); flex: none; margin-top: 3px; }
.price-card .btn { margin-top: auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 3.5rem 0 1.5rem; margin-top: 1rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer h5 { color: #fff; font-family: var(--sans); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.site-footer a { color: rgba(255,255,255,.72); font-size: .92rem; display: inline-block; padding: .25rem 0; }
.site-footer a:hover { color: var(--gold); }
.footer-news { display: flex; gap: .5rem; margin-top: .8rem; }
.footer-news input { flex: 1; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; border-radius: 999px; padding: .6rem 1rem; font-family: inherit; }
.footer-news input::placeholder { color: rgba(255,255,255,.5); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; }
.trust-row { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; color: rgba(255,255,255,.6); font-size: .82rem; }
.trust-row b { color: var(--gold); }

/* ---------- Verification & stud components ---------- */
:root { --amber: #c98a2b; --amber-soft: #f6ecd8; }

/* KC Verified badge (card) */
.badge--verify { background: var(--navy); color: var(--gold); display: inline-flex; align-items: center; gap: .3rem; }
.badge--verify svg { width: 12px; height: 12px; }
.badge--pending { background: var(--amber-soft); color: var(--amber); display: inline-flex; align-items: center; gap: .3rem; }

/* Large verification pill (profiles) */
.verify-pill { display: inline-flex; align-items: center; gap: .6rem; background: var(--navy); color: #fff; border-radius: 999px; padding: .55rem 1rem .55rem .7rem; font-size: .9rem; font-weight: 600; }
.verify-pill .tick { width: 26px; height: 26px; border-radius: 50%; background: var(--gold); color: var(--navy); display: grid; place-items: center; flex: none; }
.verify-pill .tick svg { width: 15px; height: 15px; }
.verify-pill small { display: block; font-weight: 400; color: rgba(255,255,255,.7); font-size: .76rem; }

/* Health-result chips (cards) */
.hchips { display: flex; flex-wrap: wrap; gap: .35rem; }
.hchip { font-size: .7rem; font-weight: 600; color: var(--navy); background: var(--cream); border: 1px solid var(--line); border-radius: 7px; padding: .2rem .5rem; display: inline-flex; align-items: center; gap: .25rem; }
.hchip svg { width: 11px; height: 11px; color: var(--success); }

/* Health results table (profile) */
.health-table { width: 100%; border-collapse: collapse; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.health-table th, .health-table td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--line); font-size: .92rem; }
.health-table thead th { font-family: var(--sans); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); background: var(--cream); }
.health-table tbody tr:last-child td { border-bottom: 0; }
.health-table .test { font-weight: 600; color: var(--navy); }
.health-table .src { display: inline-flex; align-items: center; gap: .35rem; color: var(--success); font-weight: 600; font-size: .82rem; }
.health-table .src svg { width: 14px; height: 14px; }

/* Stud fee caption under price */
.fee-cap { font-size: .72rem; color: var(--muted); text-align: right; }

/* Trust strip (under hero) */
.trust-strip { background: var(--navy); color: #fff; }
.trust-strip .row { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; padding: 1.1rem 0; }
.trust-strip .item { display: flex; align-items: center; gap: .55rem; font-size: .92rem; font-weight: 500; }
.trust-strip .item svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

/* Pedigree mini (sire/dam) */
.pedigree { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pedigree .par { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem; }
.pedigree .par .k { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.pedigree .par .v { font-family: var(--serif); font-size: 1.05rem; color: var(--navy); }
.pedigree .par .s { font-size: .82rem; color: var(--muted); }

@media (max-width: 760px) { .trust-strip .row { gap: 1.2rem; } }

/* ---------- Auth pages (login / register / forgot / reset) ---------- */
.auth-wrap { padding: clamp(2rem,5vw,4.5rem) 0; }
.auth-card {
  max-width: 940px; margin-inline: auto; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 1fr 1fr;
}
.auth-card__panel {
  position: relative; color: #fff; padding: clamp(1.8rem,3.5vw,2.8rem);
  display: flex; flex-direction: column; justify-content: center; min-height: 520px;
}
.auth-card__panel .bg { position: absolute; inset: 0; z-index: 0; }
.auth-card__panel .bg img { width: 100%; height: 100%; object-fit: cover; }
.auth-card__panel .bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(27,42,65,.94) 10%, rgba(27,42,65,.80) 100%); }
.auth-card__panel > * { position: relative; z-index: 1; }
.auth-card__panel .brand { color: #fff; margin-bottom: 1.4rem; }
.auth-card__panel h2 { color: #fff; font-size: clamp(1.5rem,2.4vw,2rem); }
.auth-card__panel p { color: rgba(255,255,255,.82); margin-top: .6rem; }
.auth-card__panel .pts { margin-top: 1.6rem; display: grid; gap: .8rem; }
.auth-card__panel .pts li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; color: rgba(255,255,255,.92); }
.auth-card__panel .pts svg { color: var(--gold); flex: none; margin-top: 2px; width: 18px; height: 18px; }
.auth-card__form { padding: clamp(1.8rem,3.5vw,2.8rem); display: flex; flex-direction: column; justify-content: center; }
.auth-card__form h1 { font-size: clamp(1.5rem,3vw,2rem); margin-bottom: .3rem; }
.auth-card__form .sub { color: var(--muted); margin-bottom: 1.5rem; }

.form-field { display: block; margin-bottom: 1rem; }
.form-field > span { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .03em; color: var(--navy); margin-bottom: .35rem; }
.form-field .field-input { width: 100%; }
.form-err { color: var(--danger); font-size: .82rem; margin: -.55rem 0 .9rem; }
.form-note { font-size: .9rem; color: var(--muted); margin-top: 1.1rem; }
.form-note a { color: var(--gold-dark); font-weight: 600; }
.form-check { display: flex; gap: .5rem; align-items: center; font-size: .92rem; color: var(--navy); margin: .2rem 0 .4rem; }
.form-check input { accent-color: var(--navy); width: 16px; height: 16px; }
.alert { padding: .75rem 1rem; border-radius: var(--radius-sm); font-size: .92rem; margin-bottom: 1.1rem; }
.alert--ok { background: #e2efe8; color: var(--success); }
.alert--err { background: #f6e7e3; color: var(--danger); }

@media (max-width: 760px) {
  .auth-card { grid-template-columns: 1fr; }
  .auth-card__panel { min-height: auto; padding-block: 2rem; order: -1; }
  .auth-card__panel .pts { display: none; }
}

/* ---------- Under-construction banner ---------- */
.construction-bar {
  background: repeating-linear-gradient(45deg, var(--gold) 0 22px, var(--gold-dark) 22px 44px);
  color: var(--navy);
}
.construction-bar__inner {
  display: flex; align-items: center; gap: .8rem; justify-content: center;
  padding: .6rem 2.6rem .6rem 1rem; position: relative; text-align: center; flex-wrap: wrap;
}
.construction-bar__tag {
  background: var(--navy); color: var(--gold); font-weight: 700; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .06em; padding: .25rem .6rem; border-radius: 999px; white-space: nowrap;
}
.construction-bar__msg { font-weight: 600; font-size: .92rem; color: var(--navy); }
.construction-bar__close {
  position: absolute; right: .8rem; top: 50%; transform: translateY(-50%);
  background: rgba(27,42,65,.12); color: var(--navy); border: 0; width: 26px; height: 26px;
  border-radius: 50%; font-size: 1.1rem; line-height: 1; display: grid; place-items: center;
}
.construction-bar__close:hover { background: rgba(27,42,65,.25); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Mobile nav drawer ---------- */
.nav-drawer { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .feature-grid, .steps, .quote-grid, .price-grid { grid-template-columns: 1fr; }
  .cards--4 { grid-template-columns: repeat(2,1fr); }
  .cards--3 { grid-template-columns: repeat(2,1fr); }
  .detail-grid { grid-template-columns: 1fr; }
  .layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .price-card.featured { transform: none; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-actions .login, .nav-actions .icon-btn { display: none; }
  .nav-toggle { display: flex; }
  .searchbar { grid-template-columns: 1fr; }
  .searchbar .field + .field { border-left: 0; border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-drawer.open { display: block; position: fixed; inset: 74px 0 0; background: var(--cream); z-index: 55; padding: 1.5rem; }
  .nav-drawer .nav-links { display: flex; flex-direction: column; gap: .3rem; margin: 0; }
  .nav-drawer .nav-links a { font-size: 1.15rem; padding: .7rem 0; border-bottom: 1px solid var(--line); }
  .nav-drawer .btn { margin-top: 1rem; width: 100%; justify-content: center; }
}
@media (max-width: 520px) {
  .cards--4, .cards--3, .cards--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
