/* Badgerland Sphynx — floral / celestial / rustic-elegant палитра (по мотивам нового логотипа) */
@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&family=Marcellus&family=Playfair+Display:wght@500;600;700&family=Cormorant+Garamond:ital,wght@0,500;1,500&family=Great+Vibes&family=Lato:wght@300;400;600&display=swap');

:root {
  --charcoal: #1E1917;      /* тёмный фон логотипа */
  --charcoal-soft: #2A211E;
  --cream: #FAF3EA;         /* светлый фон разделов */
  --blush: #E7C3BE;         /* розовые пионы */
  --blush-deep: #C98A82;
  --rose-dust: #B97B76;
  --gold: #C6A15B;          /* золото надписей логотипа */
  --gold-light: #E4CE9C;
  --gold-pale: #F7EFDC;
  --sage: #8A9273;          /* листья */
  --text-dark: #2B211D;
  --text-soft: #6B584F;
  --text-light: #F5EDE3;
  --white: #FFFFFF;
  --champagne: #EDE4D4;
  --border: rgba(198,161,91,0.22);
  --border-soft: rgba(198,161,91,0.12);
  --shadow: 0 10px 28px rgba(30, 25, 23, 0.14);
  --radius: 16px;
}

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

body {
  font-family: 'Lato', 'Segoe UI', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Great Vibes', 'Brush Script MT', cursive;
  color: var(--rose-dust);
  font-weight: 400;
  letter-spacing: normal;
}

.script {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
}

.tenor {
  font-family: 'Great Vibes', 'Brush Script MT', cursive;
  font-weight: 400;
}

.stars::before {
  content: '✦';
  color: var(--gold);
  margin: 0 10px;
  font-size: 0.8em;
}

a { color: var(--rose-dust); text-decoration: none; }
a:hover { color: var(--gold); }

img { max-width: 100%; display: block; border-radius: var(--radius); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / Nav */
header {
  background: var(--cream);
  border-bottom: 1px solid var(--border, rgba(198,161,91,0.22));
  box-shadow: 0 2px 16px rgba(140,100,80,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 116px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.65rem;
  text-align: center;
  overflow: hidden;
}

.logo-mark img { width: 100%; height: 100%; object-fit: contain; }

/* Header badge — hangs from the header, left side, overlapping into the page below
   (arched medallion shape: flat-ish top, domed bottom, double gold ring — like a hanging crest) */
.header-badge {
  position: absolute;
  left: 30px;
  top: 0;
  transform: translateY(24%);
  width: 172px;
  z-index: 60;
  pointer-events: none;
}
.header-badge-inner {
  position: relative;
  pointer-events: auto;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--cream), 0 0 0 6px rgba(198,161,91,.5), 0 18px 36px rgba(140,100,80,.22);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.header-badge-inner::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(198,161,91,.55);
  border-radius: 50%;
  pointer-events: none;
}
.header-badge-icon { width: 72%; height: 72%; object-fit: contain; display: block; position: relative; z-index: 1; }
@media (max-width: 768px) {
  .header-badge { left: 16px; width: 112px; transform: translateY(54%); }
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--rose-dust);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-dark);
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
}

nav a.active,
nav a:hover { color: var(--rose-dust); border-bottom: 1px solid var(--gold); }

/* ── Hamburger (mobile trigger, hidden on desktop) ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  z-index: 210;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rose-dust);
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile slide-in nav ── */
#mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 82%;
  max-width: 340px;
  height: 100%;
  background: var(--cream);
  z-index: 205;
  transform: translateX(100%);
  transition: transform .35s ease;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 32px;
  box-shadow: -12px 0 40px rgba(140,100,80,0.18);
}
#mobile-nav.open { transform: translateX(0); }

#nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(60,48,40,0.35);
  z-index: 204;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
#nav-overlay.open { opacity: 1; pointer-events: all; }

.mnav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.mnav-close {
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
}
.mnav-close::before, .mnav-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--rose-dust);
}
.mnav-close::before { transform: rotate(45deg); }
.mnav-close::after { transform: rotate(-45deg); }

.mnav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mnav-links a {
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  padding: 13px 0;
  border-bottom: 1px solid rgba(198,161,91,0.18);
}
.mnav-links a.active,
.mnav-links a:hover { color: var(--rose-dust); }

.mnav-bottom {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(198,161,91,0.2);
  font-size: 0.82rem;
  color: var(--text-soft);
}

body.nav-open { overflow: hidden; }

@media (max-width: 860px) {
  .navbar nav { display: none; }
  .hamburger { display: flex; }
}

/* ── Floating "Apply" trigger (visible on every page) ── */
.apply-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 150;
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'Tenor Sans', serif;
  font-size: .82rem;
  letter-spacing: .03em;
  padding: 14px 24px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
}
.apply-fab:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(30,25,23,.2); }
@media (max-width: 480px) {
  .apply-fab { bottom: 16px; right: 16px; padding: 12px 18px; font-size: .78rem; }
}

/* ── Kitten Application popup ── */
.apply-modal-heart {
  width: 120px;
  height: 108px;
  object-fit: cover;
  flex-shrink: 0;
  clip-path: path('M60 100C60 100 12 70 12 36C12 16 28 4 44 4C52 4 60 10 60 18C60 10 68 4 76 4C92 4 108 16 108 36C108 70 60 100 60 100Z');
  box-shadow: 0 4px 14px rgba(30,25,23,.18);
}
.apply-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(60,48,40,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  padding: 24px;
}
.apply-modal-overlay.open { opacity: 1; pointer-events: all; }
.apply-modal {
  background: var(--cream);
  border-radius: var(--radius);
  max-width: 640px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 30px 70px rgba(30,25,23,.3);
  transform: translateY(16px) scale(.98);
  transition: transform .3s;
  position: relative;
  padding: 40px 36px 36px;
}
.apply-modal-overlay.open .apply-modal { transform: translateY(0) scale(1); }
.apply-modal form { max-width: none; }
.apply-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.apply-modal-close:hover { border-color: var(--gold); color: var(--rose-dust); }

@media (max-width: 640px) {
  .apply-modal-overlay { align-items: flex-end; padding: 0; }
  .apply-modal {
    max-width: 100%;
    width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px 22px 28px;
  }
}

/* ═══════════════════════════════════════════════════════
   HOME PAGE — editorial layout (hero / traits / feature /
   socialization / cats preview / breeder / health / pricing / cta)
   ═══════════════════════════════════════════════════════ */

/* HERO */
.hero-lux {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 24px 90px;
  background: linear-gradient(160deg, var(--blush), var(--cream) 55%, var(--cream));
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: .8;
}
.hero-bg-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(250,246,239,.96) 0%, rgba(250,246,239,.82) 42%, rgba(250,246,239,.4) 75%, rgba(250,246,239,.12) 100%);
}
.hero-lux-content { max-width: 620px; position: relative; z-index: 2; }

.hero-logo-badge {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--blush);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  margin: 0 0 32px 2px;
}
.hero-logo-badge img { width: 100%; height: 100%; object-fit: contain; display: block; }
@media (max-width: 768px) {
  .hero-logo-badge { width: 68px; height: 68px; margin-bottom: 24px; }
}
@media (max-width: 768px) {
  .hero-bg-veil { background: linear-gradient(180deg, rgba(250,246,239,.05) 0%, rgba(250,246,239,.15) 50%, rgba(250,246,239,.6) 80%, rgba(250,246,239,.95) 100%); }
  .hero-bg-img { object-position: 15% 50%; }
}
.hero-eyebrow-lux { font-size: .68rem; letter-spacing: .5em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
.hero-title-lux { font-family: 'Great Vibes', 'Brush Script MT', cursive; font-weight: 400; font-size: clamp(38px,6vw,72px); line-height: 1.14; color: var(--rose-dust); margin-bottom: 24px; }
.hero-title-lux em { font-style: italic; color: var(--gold); }
.hero-wordmark { max-width: 460px; width: 100%; height: auto; display: block; margin: 0 0 20px -8px; }
@media (max-width: 768px) { .hero-wordmark { max-width: 320px; } }

.section-wordmark { max-width: 420px; width: 100%; height: auto; display: block; margin: 0 auto; }
@media (max-width: 768px) { .section-wordmark { max-width: 280px; } }
.section-wordmark-sm { max-width: 200px; margin: 0 !important; }
@media (max-width: 768px) { .section-wordmark-sm { max-width: 160px; } }
.hero-sub-lux { font-size: 1rem; font-weight: 300; color: var(--text-soft); line-height: 1.85; margin-bottom: 36px; max-width: 460px; }
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-badges-lux { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 32px; }
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}
.hero-badge-lux { display: flex; align-items: center; gap: 7px; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-soft); }
.hero-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(198,161,91,.25); }
.hero-badge-tica-icon { width: 18px; height: auto; display: block; flex-shrink: 0; opacity: .82; border-radius: 0; }

/* TRAITS */
.traits-lux { background: var(--cream); text-align: center; padding: 76px 0; }
.traits-grid-lux { display: grid; grid-template-columns: repeat(6,1fr); gap: 8px; max-width: 1080px; margin: 40px auto 0; }
.trait-card-lux { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 22px 10px; transition: transform .4s; }
.trait-card-lux:hover { transform: translateY(-6px); }
.trait-icon-lux { width: 38px; height: 38px; color: var(--gold); opacity: .85; }
.trait-label-lux { font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: var(--text-soft); }

/* FEATURE SPLIT */
.feature-wrap-lux { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.feature-img-lux { position: relative; overflow: hidden; background: linear-gradient(140deg, var(--blush), var(--gold-light)); }
.feature-body-lux { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; background: var(--cream); }
.f-eyebrow-lux { font-size: .64rem; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.f-title-lux { font-family: 'Great Vibes', 'Brush Script MT', cursive; font-weight: 400; font-size: clamp(24px,3vw,40px); color: var(--text-dark); line-height: 1.28; margin-bottom: 20px; }
.f-title-lux em { font-style: italic; color: var(--rose-dust); }
.f-text-lux { font-size: .92rem; font-weight: 300; line-height: 1.9; color: var(--text-soft); margin-bottom: 16px; max-width: 440px; }
.f-quote-lux { border-left: 2px solid var(--gold); padding-left: 18px; font-size: .98rem; font-style: italic; color: var(--text-soft); line-height: 1.8; margin: 18px 0 22px; }

/* SOCIALIZATION */
.socio-wrap-lux { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.socio-photo-lux { border-radius: 20px; overflow: hidden; height: 440px; padding: 10px; background: linear-gradient(145deg, var(--blush), var(--gold) 50%, var(--blush-deep)); box-shadow: var(--shadow); }
.socio-photo-lux .img-placeholder { height: 100%; border-radius: 12px; }
.socio-feat-lux { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.socio-feat-icon-lux { width: 42px; height: 42px; border-radius: 10px; background: var(--blush); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--rose-dust); }
.socio-feat-lux h4 { font-family: 'Great Vibes', 'Brush Script MT', cursive; font-size: 1.5rem; font-weight: 400; color: var(--text-dark); margin-bottom: 5px; }
.socio-feat-lux p { font-size: .85rem; font-weight: 300; color: var(--text-soft); line-height: 1.7; }

/* CATS PREVIEW */
.hcat-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.hcat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.hcat-card { position: relative; border-radius: 12px; overflow: hidden; height: 420px; box-shadow: var(--shadow); transition: transform .4s, box-shadow .4s; cursor: pointer; }
.hcat-card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(30,25,23,.22); }
.hcat-bg { position: absolute; inset: 0; background: linear-gradient(160deg, var(--blush), var(--cream)); display: flex; align-items: center; justify-content: center; color: var(--text-soft); font-size: .8rem; text-align: center; padding: 20px; }
.hcat-bg img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; display: block; }
.hcat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,25,23,.78) 0%, rgba(30,25,23,.1) 55%, transparent 100%); }
.hcat-foot { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 22px; }
.hcat-tag { display: inline-block; font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; }
.hcat-title { font-family: 'Great Vibes', 'Brush Script MT', cursive; font-weight: 400; font-size: 2rem; color: #fff; margin-bottom: 5px; }
.hcat-desc { font-size: .76rem; color: rgba(255,255,255,.75); line-height: 1.6; margin-bottom: 10px; }
.hcat-link { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.65); }

/* KINGS & QUEENS — full grid (same full-bleed photo style as homepage preview) */
.kq-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.kq-card { position: relative; border-radius: 12px; overflow: hidden; height: 480px; box-shadow: var(--shadow); transition: transform .4s, box-shadow .4s; cursor: pointer; }
.kq-card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(30,25,23,.22); }
.kq-bg { position: absolute; inset: 0; background: linear-gradient(160deg, var(--blush), var(--cream)); display: flex; align-items: center; justify-content: center; color: var(--text-soft); font-size: .8rem; text-align: center; padding: 20px; }
.kq-bg img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; display: block; }
.kq-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,25,23,.9) 0%, rgba(30,25,23,.42) 48%, transparent 78%); }
.kq-foot { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 22px; }
.kq-tag { display: inline-block; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; }
.kq-title { font-family: 'Great Vibes', 'Brush Script MT', cursive; font-weight: 400; font-size: 2rem; color: #fff; margin-bottom: 8px; }
.kq-traits { list-style: none; font-size: .7rem; color: rgba(255,255,255,.82); line-height: 1.6; }
.kq-traits li { padding: 1px 0; }
@media (max-width: 1024px) { .kq-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .kq-grid { grid-template-columns: 1fr; } .kq-card { height: 440px; } }

/* CAT DETAIL MODAL — opened by clicking any .hcat-card / .kq-card (see js/cat-modal.js) */
.cat-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(60,48,40,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  padding: 24px;
}
.cat-modal-overlay.open { opacity: 1; pointer-events: all; }
.cat-modal {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius);
  max-width: 460px;
  width: 100%;
  max-height: 88vh;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(30,25,23,.32);
  transform: translateY(16px) scale(.98);
  transition: transform .3s;
}
.cat-modal-scroll {
  max-height: 88vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.cat-modal-overlay.open .cat-modal { transform: translateY(0) scale(1); }
.cat-modal-photo { width: 100%; aspect-ratio: 4/5; background: linear-gradient(160deg, var(--blush), var(--cream)); }
.cat-modal-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-modal-body { padding: 22px 26px 28px; }
.cat-modal-tag { display: inline-block; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.cat-modal-title { font-family: 'Great Vibes', 'Brush Script MT', cursive; font-weight: 400; font-size: 2.4rem; color: var(--rose-dust); margin-bottom: 10px; }
.cat-modal-traits { list-style: none; font-size: .88rem; color: var(--text-soft); line-height: 1.9; }
.cat-modal-traits li { padding: 2px 0; padding-left: 16px; position: relative; }
.cat-modal-traits li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: .68rem; }
.cat-modal-desc { font-size: .9rem; color: var(--text-soft); line-height: 1.7; }
.cat-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 19px;
  line-height: 1;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
  z-index: 2;
}
.cat-modal-close:hover { border-color: var(--gold); color: var(--rose-dust); }

@media (max-width: 640px) {
  .cat-modal-overlay { align-items: flex-end; padding: 0; }
  .cat-modal {
    max-width: 100%;
    width: 100%;
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
  }
  .cat-modal-scroll { max-height: 92vh; }
  .cat-modal-photo { aspect-ratio: 5/4; }
}

/* BREEDER PROFILE */
.breeder-wrap-lux { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.breeder-photo-lux { position: relative; border-radius: 20px 20px 20px 50px; overflow: hidden; height: 460px; background: linear-gradient(145deg, var(--blush), var(--gold)); box-shadow: var(--shadow); }
.breeder-photo-lux .img-placeholder { height: 100%; border-radius: 0; }
.breeder-credential-lux { position: absolute; bottom: 20px; right: -14px; background: var(--gold); color: var(--charcoal); border-radius: 8px; padding: 10px 16px; font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; box-shadow: var(--shadow); display: flex; align-items: center; gap: 9px; }
.credential-tica-icon { width: 26px; height: auto; display: block; flex-shrink: 0; border-radius: 0; }
.breeder-quote-lux { font-family: 'Tenor Sans', serif; font-size: 1.12rem; font-style: italic; color: var(--text-soft); line-height: 1.75; margin-bottom: 18px; }
.breeder-name-lux { font-family: 'Great Vibes', 'Brush Script MT', cursive; font-weight: 400; font-size: 1.9rem; color: var(--text-dark); margin-bottom: 4px; }
.breeder-title-lux { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.breeder-val { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; font-weight: 300; color: var(--text-soft); margin-bottom: 10px; line-height: 1.6; }
.breeder-val::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 7px; }

/* HEALTH PILLARS */
.pillars-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin: 44px 0; }
.pillar { background: var(--white); border: 1px solid var(--border); border-top: 2px solid var(--gold); border-radius: 6px; padding: 32px 22px; text-align: center; box-shadow: var(--shadow); transition: transform .3s, background .3s; }
.pillar:hover { transform: translateY(-4px); background: var(--gold-pale, var(--blush)); }
.pillar-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--blush); border: 1px solid rgba(198,161,91,.4); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: var(--gold); }
.pillar h3 { font-family: 'Great Vibes', 'Brush Script MT', cursive; font-size: 1.5rem; color: var(--text-dark); margin-bottom: 10px; font-weight: 400; }
.pillar p { font-size: .78rem; color: var(--text-soft); line-height: 1.7; }

.pkg-title { text-align: center; font-family: 'Great Vibes', 'Brush Script MT', cursive; font-weight: 400; font-size: clamp(22px,2.8vw,32px); color: var(--text-dark); margin-bottom: 8px; }
.pkg-title em { color: var(--gold); font-style: italic; }
.pkg-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 32px; }
.pkg-item { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 12px 14px; display: flex; align-items: center; gap: 9px; font-size: .74rem; color: var(--text-dark); font-family: 'Tenor Sans', serif; }
.pkg-check { color: var(--gold); flex-shrink: 0; }

/* PRICING STRIP */
.pricing-strip { background: var(--blush); border-top: 1px solid rgba(198,161,91,.3); border-bottom: 1px solid rgba(198,161,91,.3); }
.pstrip-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.pstrip-item { padding: 36px 28px; border-right: 1px solid rgba(198,161,91,.25); display: flex; gap: 14px; align-items: flex-start; }
.pstrip-item:last-child { border-right: none; }
.pstrip-icon { color: var(--rose-dust); flex-shrink: 0; margin-top: 2px; }
.pstrip-cat { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 5px; }
.pstrip-val { font-family: 'Tenor Sans', serif; font-size: 1rem; color: var(--text-dark); margin-bottom: 3px; }
.pstrip-note { font-size: .72rem; color: var(--text-soft); }

/* FINAL CTA */
.cta-title-lux { font-family: 'Great Vibes', 'Brush Script MT', cursive; font-weight: 400; font-size: clamp(26px,4vw,46px); color: var(--text-dark); line-height: 1.22; margin-bottom: 18px; }
.cta-title-lux em { font-style: italic; color: var(--gold); }
.cta-sub-lux { font-size: .92rem; font-weight: 300; color: var(--text-soft); line-height: 1.85; margin-bottom: 40px; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-btns-lux { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* RESPONSIVE — home */
@media (max-width: 1024px) {
  .traits-grid-lux { grid-template-columns: repeat(3,1fr); }
  .pillars-grid { grid-template-columns: repeat(2,1fr); }
  .pkg-grid { grid-template-columns: repeat(2,1fr); }
  .hcat-grid { grid-template-columns: 1fr 1fr; }
  .pstrip-grid { grid-template-columns: 1fr 1fr; }
  .pstrip-item:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
  .hero-lux { padding: 120px 20px 70px; min-height: 680px; }
  .traits-grid-lux { grid-template-columns: repeat(2,1fr); }
  .feature-wrap-lux { grid-template-columns: 1fr; }
  .feature-img-lux { min-height: 260px; }
  .feature-body-lux { padding: 44px 24px; }
  .socio-wrap-lux { grid-template-columns: 1fr; gap: 36px; }
  .socio-photo-lux { height: 280px; }
  .hcat-grid { grid-template-columns: 1fr; }
  .breeder-wrap-lux { grid-template-columns: 1fr; gap: 32px; }
  .breeder-photo-lux { height: 300px; }
  .breeder-credential-lux { right: 0; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .pstrip-grid { grid-template-columns: 1fr 1fr; }
  .pstrip-item { padding: 24px 18px; border-right: none !important; }
  .cta-btns-lux { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .traits-grid-lux { grid-template-columns: repeat(2,1fr); }
  .pillars-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .pstrip-grid { grid-template-columns: 1fr; }
}

/* Hero */
.hero {
  background:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(198,161,91,0.5) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 70% 20%, rgba(198,161,91,0.4) 50%, transparent 51%),
    radial-gradient(1px 1px at 85% 60%, rgba(198,161,91,0.4) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 40% 75%, rgba(198,161,91,0.3) 50%, transparent 51%),
    radial-gradient(1px 1px at 55% 45%, rgba(198,161,91,0.3) 50%, transparent 51%),
    linear-gradient(160deg, var(--blush), var(--cream) 60%, var(--gold-pale, var(--cream)));
  padding: 90px 0 80px;
  text-align: center;
  color: var(--text-dark);
}

.hero .script {
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  color: var(--rose-dust);
}

.hero p {
  max-width: 680px;
  margin: 0 auto 12px;
  color: var(--text-soft);
  font-size: 1.05rem;
}

/* Sections */
section {
  padding: 68px 0;
}

section.alt { background: var(--blush); }
section.dark {
  background: linear-gradient(160deg, var(--champagne, var(--blush)), var(--cream));
  color: var(--text-dark);
}
section.dark h2, section.dark h3 { color: var(--rose-dust); }
section.dark p { color: var(--text-soft); }

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto 40px;
}

section.dark .section-sub { color: #C9B9AE; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  border: 1px solid rgba(198,161,91,0.18);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

/* Pricing table */
.pricing-list {
  list-style: none;
  max-width: 480px;
  margin: 24px auto 0;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--gold);
}

.price {
  color: var(--rose-dust);
  font-weight: 700;
}

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.step-number {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold-light);
  text-align: center;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

/* Cat cards */
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  padding-bottom: 18px;
  border: 1px solid rgba(198,161,91,0.18);
}

.cat-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--blush), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 0.9rem;
  border-radius: 0;
}

.cat-role {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 14px;
}

.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--rose-dust);
  margin-bottom: 8px;
}

.cat-traits {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-soft);
  text-align: left;
  padding: 0 20px;
}

.cat-traits li { padding: 2px 0; }

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
  margin: 0 auto;
}

label { font-weight: 600; color: var(--text-dark); margin-bottom: 6px; display: block; }

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gold);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
}

textarea { min-height: 110px; resize: vertical; }

fieldset {
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 14px 18px;
}

fieldset legend { padding: 0 8px; font-weight: 600; color: var(--text-dark); }

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}

.checkbox-grid label {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--charcoal);
  border: 1px solid transparent;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.4px;
  cursor: pointer;
  align-self: center;
  box-shadow: var(--shadow);
  transition: background 0.2s, border-color 0.2s;
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
}

.btn:hover { background: var(--gold-light); }

/* Owner */
.owner {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
}

.owner-photo {
  width: 220px;
  height: 270px;
  background: linear-gradient(160deg, var(--blush), var(--cream));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  flex-shrink: 0;
}

/* Footer */
footer {
  background: linear-gradient(160deg, var(--blush), var(--champagne, var(--cream)));
  color: var(--text-dark);
  text-align: center;
  padding: 52px 24px 26px;
  border-top: 1px solid rgba(198,161,91,0.3);
}

footer h3 { color: var(--rose-dust); margin-bottom: 8px; }
footer a { color: var(--text-dark); font-weight: 600; }
footer a:hover { color: var(--rose-dust); }

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 18px 0;
}

.social-links a {
  background: var(--white);
  border: 1px solid rgba(198,161,91,0.4);
  padding: 10px 18px;
  border-radius: 20px;
}

.disclaimer {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 24px;
  opacity: 0.9;
}

/* Placeholder image box */
.img-placeholder {
  background: linear-gradient(160deg, var(--blush), var(--cream));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 0.85rem;
  min-height: 260px;
  text-align: center;
  padding: 20px;
  border: 1px solid rgba(198,161,91,0.25);
}

/* Divider with star */
.divider {
  text-align: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin: 8px 0 32px;
  letter-spacing: 12px;
}

/* Notice / alert box */
.notice {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 16px 20px;
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 0.92rem;
  color: var(--text-soft);
  box-shadow: var(--shadow);
}
