@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Jost:wght@400;500;600;700&display=swap');
:root{
  --maroon:#7A2420; --maroon-dark:#5C1F1C; --terracotta:#E8735F; --terracotta-text:#BB321B;
  --blush:#F7D9D1; --blush-light:#FCEEEA; --cream:#FFFFFF; --cream-alt:#F8F2EA;
  --ink:#2A211F; --ink-soft:#4A3B37; --muted:#7D6059; --border:#EDE1D8;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{font-family:'Jost',sans-serif; color:var(--ink); background:var(--cream); font-size:16px; line-height:1.6; opacity:0; transition:opacity .35s ease;}
body.mp-ready{opacity:1;}
h1,h2,h3{font-family:'Playfair Display',serif; color:var(--maroon);}
img{max-width:100%; display:block;}
a{color:inherit;}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

.demo-note{background:var(--maroon); color:#fff; text-align:center; font-size:13px; padding:10px 16px;}
.demo-note b{color:var(--blush-light);}

/* HEADER */
.header-wrap{position:sticky; top:0; z-index:200; display:flex; justify-content:center; padding:16px 20px 0;}
.glass-header{
  position:relative; width:100%; max-width:1180px; display:flex; align-items:center; justify-content:space-between;
  padding:10px 20px; border-radius:999px; background:rgba(255,255,255,0.68);
  backdrop-filter:blur(18px) saturate(160%); -webkit-backdrop-filter:blur(18px) saturate(160%);
  border:1px solid rgba(255,255,255,0.6); box-shadow:0 8px 32px rgba(122,36,32,0.10);
  transition:all 0.4s cubic-bezier(.22,1,.36,1);
}
.glass-header.scrolled{padding:6px 18px; background:rgba(255,255,255,0.88); box-shadow:0 10px 40px rgba(122,36,32,0.16);}
.logo-group{display:flex; align-items:center; gap:10px; text-decoration:none;}
.logo-chip{width:42px; height:42px; border-radius:50%; background:#fff; display:flex; align-items:center; justify-content:center; box-shadow:0 0 0 2px var(--blush); overflow:hidden; transition:all .4s ease;}
.glass-header.scrolled .logo-chip{width:34px; height:34px;}
.logo-chip img{width:78%; height:78%; object-fit:contain;}
.logo-text{display:flex; flex-direction:column; line-height:1.1;}
.logo-text b{font-size:14px; color:var(--maroon); letter-spacing:0.5px;}
.logo-text span{font-size:9px; color:var(--muted); letter-spacing:1.5px; font-weight:500;}
nav{display:flex; gap:4px;}
nav a{position:relative; text-decoration:none; color:var(--ink-soft); font-size:14px; font-weight:500; padding:9px 14px; border-radius:999px; transition:all .25s ease;}
nav a:hover{background:rgba(122,36,32,0.06); color:var(--maroon);}
nav a.active{color:var(--maroon); font-weight:600;}
nav a.active::after{content:''; position:absolute; left:14px; right:14px; bottom:3px; height:2px; background:var(--terracotta); border-radius:2px;}

.nav-toggle{display:none; flex-direction:column; justify-content:center; gap:5px; width:38px; height:38px; padding:0; background:none; border:none; cursor:pointer; flex-shrink:0;}
.nav-toggle span{display:block; width:100%; height:2px; background:var(--maroon); border-radius:2px; transition:transform .25s ease, opacity .25s ease;}
.nav-toggle.active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle.active span:nth-child(2){opacity:0;}
.nav-toggle.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
.inquire-btn{display:none;}

section{padding:80px 24px; max-width:1180px; margin:0 auto;}
.eyebrow{color:var(--terracotta-text); font-weight:600; font-size:12px; letter-spacing:2px; text-transform:uppercase;}
.section-head{text-align:center; max-width:660px; margin:0 auto 48px;}
.section-head h1, .section-head h2{font-size:34px; margin:12px 0 12px;}
.section-head p{color:var(--ink-soft); font-size:15px;}
.reveal{opacity:0; transform:translateY(30px); transition:opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);}
.reveal.in-view{opacity:1; transform:translateY(0);}

.hero{text-align:center; padding:100px 24px 30px; max-width:820px; margin:0 auto;}
.hero h1{font-size:46px; margin:16px 0 18px; line-height:1.15;}
.hero p{color:var(--ink-soft); font-size:17px;}
.hero-ctas{display:flex; gap:14px; justify-content:center; margin-top:32px; flex-wrap:wrap;}
.btn-primary{background:var(--maroon); color:#fff; border:none; padding:15px 28px; border-radius:999px; font-weight:600; font-size:14px; cursor:pointer; box-shadow:0 6px 20px rgba(122,36,32,0.28); text-decoration:none; display:inline-block; transition:transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease;}
.btn-primary:hover{transform:translateY(-3px); box-shadow:0 12px 28px rgba(122,36,32,0.36);}
.btn-primary:active{transform:translateY(-1px) scale(.98);}
.btn-outline{background:#fff; color:var(--maroon); border:1.5px solid var(--maroon); padding:15px 28px; border-radius:999px; font-weight:600; font-size:14px; cursor:pointer; text-decoration:none; display:inline-block; transition:transform .25s cubic-bezier(.22,1,.36,1), background .25s ease, color .25s ease;}
.btn-outline:hover{transform:translateY(-3px); background:var(--maroon); color:#fff;}
.btn-outline:active{transform:translateY(-1px) scale(.98);}

.glance-strip{background:var(--blush-light); border-radius:24px; padding:40px; margin:50px auto 0; max-width:1000px; display:grid; grid-template-columns:repeat(4,1fr); gap:20px; text-align:center;}
.glance-strip div b{display:block; font-family:'Playfair Display',serif; font-size:26px; color:var(--maroon);}
.glance-strip div span{font-size:12px; color:var(--muted);}

.ship-strip{display:flex; align-items:center; justify-content:center; gap:10px; margin:34px auto 0; max-width:640px; background:var(--cream-alt); border:1px solid var(--border); border-radius:999px; padding:12px 24px; text-align:center; font-size:13px; color:var(--ink-soft); font-weight:500;}
.ship-strip b{color:var(--maroon);}

.news-feed{background:var(--cream-alt); border-radius:20px; padding:36px; border:1px solid var(--border);}
.news-feed-head{display:flex; justify-content:space-between; align-items:center; margin-bottom:22px; flex-wrap:wrap; gap:10px;}
.live-badge{display:inline-flex; align-items:center; gap:6px; font-size:11px; font-weight:600; color:var(--terracotta-text); background:var(--blush-light); padding:5px 12px; border-radius:999px;}
.live-dot{width:7px; height:7px; border-radius:50%; background:var(--terracotta); animation:pulse 1.6s infinite;}
@keyframes pulse{0%,100%{opacity:1;} 50%{opacity:0.3;}}
@keyframes cardIn{from{opacity:0; transform:translateY(18px) scale(.97);} to{opacity:1; transform:none;}}
.card-in{animation:cardIn .55s cubic-bezier(.22,1,.36,1) both;}
.tz-chip{font-size:11px; color:var(--muted); font-weight:600; background:var(--blush-light); padding:5px 12px; border-radius:999px;}
.news-item{padding:16px 0; border-bottom:1px solid var(--border);}
.news-item:last-child{border-bottom:none;}
.news-item .news-date{display:inline-block; margin-right:10px; font-size:12px; color:var(--muted); font-weight:600;}
.news-item h4{display:inline; font-size:15px; color:var(--maroon); font-family:'Jost',sans-serif; font-weight:600;}
.news-item p{font-size:13px; color:var(--ink-soft); margin-top:4px;}
.tag-badge{display:inline-block; font-size:9px; font-weight:700; letter-spacing:0.5px; text-transform:uppercase; padding:3px 8px; border-radius:6px; margin-bottom:8px;}
.tag-usa{background:var(--maroon); color:#fff;}
.tag-cattery{background:var(--blush); color:var(--maroon-dark);}
.tag-show{background:#E6F1E6; color:#2E5C2E;}
.tag-rule{background:#FDEBD0; color:#8A5A0A;}
.tag-cfa{background:#E6ECF7; color:#2E4A7A;}
.tag-continent{background:#F0E6F7; color:#5A2E7A;}
.continent-label{font-size:10px; color:var(--muted); font-weight:600; margin-left:8px;}

.champ-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:18px;}
.cats-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.edu-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
.royal-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:24px;}
.empty-state{grid-column:1/-1; text-align:center; color:var(--muted); font-size:14px; padding:30px 10px;}

.champ-card{background:var(--cream-alt); border:1px solid var(--border); border-radius:16px; padding:22px; text-align:center;}
.champ-badge{width:52px; height:52px; border-radius:50%; background:var(--blush-light); display:flex; align-items:center; justify-content:center; margin:0 auto 12px; font-weight:700; color:var(--maroon); font-size:13px;}
.champ-card h4{font-size:15px; color:var(--maroon); margin-bottom:4px;}
.champ-card span{font-size:12px; color:var(--muted);}

.cert-block{display:flex; gap:40px; align-items:center; margin-top:60px; flex-wrap:wrap;}
.cert-img{flex:1; min-width:320px; border-radius:16px; overflow:hidden; box-shadow:0 20px 50px rgba(122,36,32,0.15); border:1px solid var(--border);}
.cert-text{flex:1; min-width:280px;}
.cert-text h3{font-size:24px; margin-bottom:14px;}
.cert-text p{color:var(--ink-soft); font-size:14px; margin-bottom:10px;}
.cert-note{font-size:12px; color:var(--muted); font-style:italic;}

.social-row{display:flex; gap:22px; flex-wrap:wrap; justify-content:center; margin-top:34px;}
.social-pill{display:flex; flex-direction:column; align-items:center; gap:10px; background:var(--cream-alt); border:1px solid var(--border); padding:20px 26px; border-radius:20px; font-size:13px; font-weight:600; color:var(--ink-soft); cursor:pointer; transition:all .25s cubic-bezier(.22,1,.36,1); text-decoration:none; min-width:110px;}
.social-pill:hover{border-color:var(--terracotta); color:var(--maroon); transform:translateY(-4px); box-shadow:0 14px 28px rgba(122,36,32,0.14);}
.social-icon{width:44px; height:44px; border-radius:50%; background:var(--blush); display:flex; align-items:center; justify-content:center; font-size:18px; font-weight:700; color:var(--maroon);}

.tab-buttons{display:flex; justify-content:center; gap:10px; margin-bottom:36px; flex-wrap:wrap;}
.tab-btn{background:var(--cream-alt); border:1px solid var(--border); color:var(--ink-soft); padding:11px 22px; border-radius:999px; font-weight:600; font-size:13px; cursor:pointer; transition:all .25s ease;}
.tab-btn:hover{border-color:var(--terracotta); color:var(--maroon);}
.tab-btn.active{background:var(--maroon); color:#fff; border-color:var(--maroon);}
.cat-card{background:var(--cream-alt); border:1px solid var(--border); border-radius:16px; overflow:hidden; opacity:0; transform:scale(0.92); transition:opacity .4s cubic-bezier(.22,1,.36,1), transform .4s cubic-bezier(.22,1,.36,1); text-decoration:none; color:inherit; cursor:pointer;}
.cat-card.show{opacity:1; transform:scale(1); display:block;}
.cat-card.hide{display:none;}
.cat-card.draft{opacity:0.6; border-style:dashed;}
.draft-flag{position:absolute; top:10px; right:10px; background:var(--ink); color:#fff; font-size:9px; font-weight:700; padding:4px 10px; border-radius:6px; letter-spacing:0.4px; text-transform:uppercase;}
.cat-photo{height:220px; background:var(--blush); display:flex; align-items:center; justify-content:center; color:var(--maroon); font-size:13px; font-weight:500; position:relative; overflow:hidden;}
.cat-photo img{transition:transform .5s cubic-bezier(.22,1,.36,1);}
.cat-card:hover .cat-photo img, .royal-photo:hover img{transform:scale(1.08);}
.cat-body{padding:20px;}
.cat-body h4{font-size:18px; color:var(--maroon); margin-bottom:4px;}
.cat-body p{font-size:12px; color:var(--ink-soft); margin-bottom:12px;}
.status-pill{display:inline-block; background:var(--blush); color:var(--maroon); font-size:10px; font-weight:600; padding:6px 14px; border-radius:999px;}
.stars{color:var(--terracotta-text); font-size:14px; margin-bottom:6px;}
.review-quote{font-size:12px; color:var(--ink-soft); font-style:italic; border-left:2px solid var(--terracotta); padding-left:10px; margin-top:10px;}
.review-author{font-size:11px; color:var(--muted); margin-top:6px; font-weight:600;}

.edu-card{background:var(--cream-alt); border:1px solid var(--border); border-radius:16px; padding:24px; cursor:pointer; transition:all .3s cubic-bezier(.22,1,.36,1); position:relative; overflow:hidden; text-decoration:none; display:block;}
.edu-card:hover{transform:translateY(-6px); box-shadow:0 16px 32px rgba(122,36,32,0.14); border-color:var(--terracotta);}
.edu-part{font-size:10px; font-weight:700; color:var(--terracotta-text); letter-spacing:1px; text-transform:uppercase; margin-bottom:8px;}
.edu-card h4{font-size:16px; color:var(--maroon); margin-bottom:10px;}

/* Education guide article pages */
.guide-back{display:inline-flex; align-items:center; gap:6px; font-size:13px; font-weight:600; color:var(--terracotta-text); text-decoration:none; margin-bottom:24px;}
.guide-back:hover{color:var(--maroon);}
.guide-head{max-width:720px; margin:0 auto 44px;}
.guide-head h1{font-size:32px; margin:10px 0 12px; line-height:1.2;}
.guide-head p{color:var(--ink-soft); font-size:15px;}
.guide-article{max-width:720px; margin:0 auto; color:var(--ink-soft); font-size:15.5px; line-height:1.85;}
.guide-article h2{font-size:22px; color:var(--maroon); margin:44px 0 16px;}
.guide-article p{margin-bottom:18px;}
.guide-article ul{margin:0 0 18px 20px;}
.guide-article li{margin-bottom:10px;}
.guide-article li::marker{color:var(--maroon); font-weight:700;}
.guide-article ol{margin:0 0 18px 20px;}
.guide-article ol li::marker{font-family:'Playfair Display',serif; font-weight:700; color:var(--maroon);}
.guide-article strong{color:var(--ink);}
.guide-article a{color:var(--terracotta-text); font-weight:600; text-decoration:underline;}
.guide-table-wrap{overflow-x:auto; margin:24px 0;}
.guide-article table{width:100%; border-collapse:collapse; font-size:14px; background:var(--cream-alt); border-radius:12px; overflow:hidden;}
.guide-article th, .guide-article td{text-align:left; padding:12px 16px; border-bottom:1px solid var(--border);}
.guide-article th{background:var(--blush-light); color:var(--maroon); font-weight:700; font-size:12px; text-transform:uppercase; letter-spacing:0.4px;}
.guide-article tr:last-child td{border-bottom:none;}
.guide-callout{background:var(--blush-light); border-left:3px solid var(--terracotta); border-radius:0 12px 12px 0; padding:20px 24px; margin:28px 0;}
.guide-callout strong{display:block; color:var(--maroon); font-size:13px; text-transform:uppercase; letter-spacing:0.5px; margin-bottom:8px;}
.guide-callout p{margin-bottom:0; font-size:14px;}
.guide-callout p + p{margin-top:10px;}
.guide-source-note{font-size:12.5px; color:var(--muted); font-style:italic; margin-top:-8px;}
.guide-nav{max-width:720px; margin:60px auto 0; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; padding-top:28px; border-top:1px solid var(--border);}
.guide-nav a{font-size:13px; font-weight:600; color:var(--maroon); text-decoration:none; background:var(--cream-alt); border:1px solid var(--border); padding:12px 20px; border-radius:999px; transition:all .2s ease;}
.guide-nav a:hover{border-color:var(--terracotta); color:var(--terracotta-text);}
.guide-nav a.next{margin-left:auto;}
.edu-card .read-link{font-size:12px; color:var(--terracotta-text); font-weight:600;}

.faq-item{border-bottom:1px solid var(--border);}
.faq-q{display:flex; justify-content:space-between; align-items:center; gap:16px; padding:20px 4px; cursor:pointer; font-weight:600; color:var(--maroon); font-size:15px;}
.faq-num{color:var(--terracotta-text); font-weight:700; margin-right:8px;}
.faq-q .plus{transition:transform .3s ease; font-size:20px; color:var(--terracotta-text); flex-shrink:0;}
.faq-item.open .plus{transform:rotate(45deg);}
.faq-a{max-height:0; overflow:hidden; transition:max-height .35s ease; font-size:14px; color:var(--ink-soft); padding:0 4px;}
.faq-item.open .faq-a{max-height:200px; padding-bottom:18px;}

.royal-card{display:flex; gap:20px; background:var(--cream-alt); border:1px solid var(--border); border-radius:16px; padding:22px; align-items:center; text-decoration:none; color:inherit; cursor:pointer;}
.royal-photo{width:90px; height:90px; border-radius:50%; background:var(--blush); flex-shrink:0; display:flex; align-items:center; justify-content:center; color:var(--maroon); font-size:11px; font-weight:600;}
.royal-card h4{font-size:17px; color:var(--maroon); margin-bottom:4px;}
.royal-card .crown{font-size:11px; color:var(--terracotta-text); font-weight:700; letter-spacing:0.5px; text-transform:uppercase; margin-bottom:6px;}
.royal-card p{font-size:12px; color:var(--ink-soft);}

.ship-block{display:flex; gap:24px; flex-wrap:wrap; margin-top:20px;}
.ship-card{flex:1; min-width:260px; background:var(--cream-alt); border:1px solid var(--border); border-radius:16px; padding:26px;}
.ship-card h4{font-size:17px; color:var(--maroon); margin-bottom:10px;}
.ship-card p{font-size:13px; color:var(--ink-soft); line-height:1.7;}
.ship-card .step-num{display:inline-flex; align-items:center; justify-content:center; width:22px; height:22px; border-radius:50%; background:var(--blush); color:var(--maroon); font-size:11px; font-weight:700; margin-right:8px;}

.form-card{background:var(--cream-alt); border:1px solid var(--border); border-radius:16px; padding:36px;}
.form-card label{display:block; font-size:12px; font-weight:600; color:var(--muted); margin-bottom:8px; margin-top:20px;}
.form-card label:first-child{margin-top:0;}
.form-card input, .form-card select, .form-card textarea{width:100%; padding:13px 16px; border-radius:8px; border:1px solid var(--border); font-family:'Jost',sans-serif; font-size:14px; background:#fff;}
.form-card textarea{resize:vertical; min-height:110px;}
.form-card button{margin-top:24px; background:var(--maroon); color:#fff; border:none; padding:15px 28px; border-radius:999px; font-weight:600; font-size:14px; cursor:pointer;}

.tilt-3d{transform-style:preserve-3d; transition:transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease;}
.tilt-3d:hover{box-shadow:0 24px 48px rgba(122,36,32,0.18);}

.sticky-inquire{position:fixed; bottom:26px; right:26px; z-index:150;}
.sticky-inquire a{
  position:relative; overflow:hidden; isolation:isolate;
  background:linear-gradient(180deg, rgba(154,58,52,0.55), rgba(92,31,28,0.62));
  backdrop-filter:blur(18px) saturate(180%); -webkit-backdrop-filter:blur(18px) saturate(180%);
  color:#fff; border:1px solid rgba(255,255,255,0.35);
  padding:16px 26px; border-radius:999px; font-weight:600; font-size:14px; cursor:pointer;
  box-shadow:0 8px 32px rgba(90,30,25,0.30), inset 0 1px 0 rgba(255,255,255,0.45), inset 0 -1px 6px rgba(92,31,28,0.25);
  display:flex; align-items:center; gap:8px; transition:all .3s cubic-bezier(.22,1,.36,1); text-decoration:none;
}
.sticky-inquire a::before{
  content:''; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(120deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 35%);
  opacity:0.8; pointer-events:none;
}
.sticky-inquire a:hover{transform:translateY(-3px) scale(1.03); box-shadow:0 12px 38px rgba(90,30,25,0.38), inset 0 1px 0 rgba(255,255,255,0.55), inset 0 -1px 6px rgba(92,31,28,0.3);}

/* Floating Instagram widget */
.ig-float{position:fixed; bottom:26px; left:26px; z-index:150; width:220px; background:#fff; border-radius:18px; box-shadow:0 16px 40px rgba(122,36,32,0.20); border:1px solid var(--border); overflow:hidden; transition:transform .3s ease;}
.ig-float.collapsed{width:auto;}
.ig-float-head{display:flex; align-items:center; gap:8px; padding:12px 14px; background:var(--cream-alt); cursor:pointer;}
.ig-float-head .ig-dot{width:8px; height:8px; border-radius:50%; background:var(--terracotta); animation:pulse 1.6s infinite;}
.ig-float-head span{font-size:12px; font-weight:600; color:var(--maroon);}
.ig-float-body{padding:10px;}
.ig-post{display:flex; gap:10px; align-items:center; padding:8px; border-radius:10px; transition:background .2s ease;}
.ig-post:hover{background:var(--cream-alt);}
.ig-post-thumb{width:44px; height:44px; border-radius:8px; background:var(--blush); flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:9px; color:var(--maroon); font-weight:600;}
.ig-post-cap{font-size:11px; color:var(--ink-soft); line-height:1.3;}
.ig-follow{display:block; text-align:center; font-size:11px; font-weight:700; color:var(--terracotta-text); padding:10px; text-decoration:none; border-top:1px solid var(--border);}

footer{background:var(--cream-alt); border-top:1px solid var(--border); padding:60px 24px 30px; text-align:center; color:var(--muted); font-size:12px;}
footer h3{font-size:16px; margin-bottom:8px; color:var(--maroon); font-family:'Playfair Display',serif;}
footer a{text-decoration:none;}
.newsletter-signup{max-width:420px; margin:28px auto 0; padding-top:24px; border-top:1px solid var(--border);}
.newsletter-signup h4{font-size:14px; color:var(--maroon); font-weight:600; margin-bottom:4px;}
.newsletter-signup p.newsletter-sub{font-size:12px; color:var(--muted); margin-bottom:14px;}
.newsletter-form{display:flex; gap:8px; flex-wrap:wrap; justify-content:center;}
.newsletter-form input{flex:1; min-width:180px; padding:11px 16px; border-radius:999px; border:1px solid var(--border); font-family:'Jost',sans-serif; font-size:13px; background:#fff;}
.newsletter-form button{background:var(--maroon); color:#fff; border:none; padding:11px 22px; border-radius:999px; font-weight:600; font-size:13px; cursor:pointer; white-space:nowrap;}
.newsletter-status{font-size:12px; margin-top:10px; color:var(--muted);}

@media(max-width:900px){
  .nav-toggle{display:flex;}
  nav{
    display:flex; flex-direction:column; gap:2px; position:absolute; top:calc(100% + 10px); left:0; right:0;
    background:#fff; border:1px solid var(--border); border-radius:20px; padding:10px;
    box-shadow:0 20px 44px rgba(122,36,32,0.18);
    opacity:0; visibility:hidden; transform:translateY(-8px);
    transition:opacity .22s ease, transform .22s ease, visibility .22s;
  }
  nav.nav-open{opacity:1; visibility:visible; transform:translateY(0);}
  nav a{padding:13px 16px; border-radius:12px; width:100%;}
  nav a.active::after{display:none;}
  nav a.active{background:var(--blush-light);}
  .champ-grid, .cats-grid, .edu-grid, .royal-grid, .glance-strip{grid-template-columns:repeat(2,1fr);}
  .ig-float{display:none;}
}

@media(max-width:600px){
  .hero h1{font-size:34px;}
  .hero p{font-size:15px;}
  .section-head h1, .section-head h2{font-size:26px;}
  .champ-grid, .cats-grid, .edu-grid, .royal-grid, .glance-strip{grid-template-columns:1fr;}
  section{padding:56px 18px;}
  .logo-text span{display:none;}
  .cert-block{margin-top:36px;}
  .guide-head h1{font-size:26px;}
  .guide-nav{flex-direction:column;}
  footer{padding-bottom:100px;}
  .sticky-inquire{bottom:18px; right:18px;}
  .sticky-inquire a{padding:14px 20px; font-size:13px;}
  .guide-nav a.next{margin-left:0;}
}

/* Public cat/kitten profile page */
.profile-back{display:inline-flex; align-items:center; gap:6px; font-size:13px; font-weight:600; color:var(--terracotta-text); text-decoration:none; margin-bottom:28px;}
.profile-back:hover{color:var(--maroon);}
.profile-hero{display:flex; gap:44px; align-items:flex-start; flex-wrap:wrap; margin-bottom:60px;}
.profile-photo{flex:1; min-width:280px; max-width:420px; aspect-ratio:1; border-radius:20px; overflow:hidden; background:var(--blush); display:flex; align-items:center; justify-content:center; color:var(--maroon); font-weight:500;}
.profile-photo img{width:100%; height:100%; object-fit:cover;}
.profile-info{flex:1.2; min-width:280px;}
.profile-info .eyebrow{margin-bottom:8px;}
.profile-info h1{font-size:32px; margin-bottom:14px;}
.profile-badges{display:flex; gap:8px; flex-wrap:wrap; margin-bottom:24px;}
.profile-detail-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:18px 24px; margin-top:10px; padding-top:20px; border-top:1px solid var(--border);}
.profile-detail-grid div span{display:block; font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:0.5px; font-weight:600; margin-bottom:4px;}
.profile-detail-grid div b{font-size:15px; color:var(--ink); font-weight:600;}
.profile-section{margin-top:20px;}
.profile-section h3{font-size:20px; margin-bottom:16px;}

.guide-figure{margin:28px 0; border-radius:16px; overflow:hidden; border:1px solid var(--border);}
.guide-figure img, .guide-figure svg{width:100%; display:block;}
.guide-figure figcaption{background:var(--cream-alt); padding:12px 18px; font-size:12.5px; color:var(--muted); text-align:center;}
.photo-pair{display:grid; grid-template-columns:1fr 1fr; gap:2px; background:var(--border);}
.photo-pair-item{position:relative;}
.photo-pair-item img{width:100%; height:100%; object-fit:cover; aspect-ratio:4/3; display:block;}
.photo-pair-label{position:absolute; left:10px; bottom:10px; background:rgba(42,33,31,0.72); color:#fff; font-family:'Jost', sans-serif; font-size:12px; font-weight:600; letter-spacing:0.3px; padding:4px 12px; border-radius:999px;}
@media (max-width:560px){.photo-pair{grid-template-columns:1fr;}}
.guide-article strong.term{color:var(--maroon);}
