/* Whisker & Bean — Landing Page Styles */
:root{
  --cream:#fdf3e7;
  --cream-deep:#f7e8d4;
  --brown-dark:#4a2c1d;
  --brown-mid:#7a4a2f;
  --brown-soft:#a97a55;
  --pink:#f6a6b2;
  --orange:#f0975a;
  --white:#fffaf3;
  --radius:18px;
  --shadow:0 8px 24px rgba(74,44,29,0.12);
  font-size:16px;
}

*{box-sizing:border-box;}

body{
  margin:0;
  font-family:'Nunito', sans-serif;
  background:var(--cream);
  color:var(--brown-dark);
  line-height:1.6;
}

h1,h2,h3{
  font-family:'Fredoka', sans-serif;
  color:var(--brown-dark);
  margin:0 0 0.4em;
  line-height:1.15;
}

p{margin:0 0 1em;}

.container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

section{padding:64px 0;}

.section-sub{
  max-width:640px;
  color:var(--brown-mid);
  font-size:1.05rem;
  margin-bottom:2rem;
}

/* Buttons */
.btn{
  display:inline-block;
  text-decoration:none;
  font-family:'Fredoka', sans-serif;
  font-weight:600;
  border-radius:999px;
  padding:14px 30px;
  transition:transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor:pointer;
  border:2px solid transparent;
}
.btn-primary{
  background:linear-gradient(135deg, var(--orange), var(--pink));
  color:var(--white);
  box-shadow:0 6px 18px rgba(240,151,90,0.35);
}
.btn-primary:hover{transform:translateY(-2px); box-shadow:0 10px 22px rgba(240,151,90,0.45);}
.btn-outline{
  background:transparent;
  color:var(--brown-dark);
  border-color:var(--brown-dark);
}
.btn-outline:hover{background:var(--brown-dark); color:var(--white);}
.btn-large{padding:18px 40px; font-size:1.1rem;}
.btn-small{padding:10px 20px; font-size:0.9rem;}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(253,243,231,0.92);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--cream-deep);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 20px;
  gap:16px;
}
.logo{
  font-family:'Fredoka', sans-serif;
  font-weight:700;
  font-size:1.25rem;
  color:var(--brown-dark);
  text-decoration:none;
  white-space:nowrap;
}
.main-nav{
  display:none;
  gap:22px;
}
.main-nav a{
  color:var(--brown-mid);
  text-decoration:none;
  font-weight:600;
  font-size:0.95rem;
}
.main-nav a:hover{color:var(--orange);}

@media(min-width:840px){
  .main-nav{display:flex;}
}

/* Hero */
.hero{padding-top:56px;}
.hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:36px;
  align-items:center;
}
@media(min-width:900px){
  .hero-grid{grid-template-columns:1.1fr 1fr;}
}
.hero-copy h1{
  font-size:2.6rem;
  margin-bottom:0.5rem;
}
@media(min-width:600px){
  .hero-copy h1{font-size:3.4rem;}
}
.hero-sub{
  font-size:1.1rem;
  color:var(--brown-mid);
  max-width:520px;
}
.badge-row{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding:0;
  margin:24px 0 0;
}
.badge{
  background:var(--white);
  border:1px solid var(--cream-deep);
  border-radius:999px;
  padding:8px 16px;
  font-size:0.85rem;
  font-weight:700;
  color:var(--brown-mid);
  box-shadow:var(--shadow);
}

/* Placeholders */
.placeholder{
  background:repeating-linear-gradient(45deg, var(--cream-deep), var(--cream-deep) 10px, #f0dfc5 10px, #f0dfc5 20px);
  border:2px dashed var(--brown-soft);
  border-radius:var(--radius);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:var(--brown-mid);
  padding:16px;
}
.placeholder-label{font-weight:700; font-family:'Fredoka', sans-serif; margin-bottom:4px;}
.placeholder-sub{font-size:0.8rem; color:var(--brown-soft);}
.placeholder-hero{width:100%; aspect-ratio:4/3; min-height:280px;}
.placeholder-icon{width:64px; height:64px; margin:0 auto 12px; border-radius:50%; padding:6px;}
.placeholder-icon .placeholder-label{font-size:0.65rem;}
.placeholder-icon .placeholder-sub{display:none;}
.placeholder-square{width:100%; aspect-ratio:1/1;}
.placeholder-portrait{width:100%; aspect-ratio:3/4; min-height:260px;}
.placeholder-wide{width:100%; aspect-ratio:16/9; min-height:220px;}

/* How it works */
.steps-grid{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
}
@media(min-width:700px){
  .steps-grid{grid-template-columns:repeat(2,1fr);}
}
@media(min-width:1000px){
  .steps-grid{grid-template-columns:repeat(4,1fr);}
}
.step-card{
  background:var(--white);
  border-radius:var(--radius);
  padding:24px 20px;
  text-align:center;
  box-shadow:var(--shadow);
  position:relative;
}
.step-number{
  display:inline-block;
  background:var(--pink);
  color:var(--white);
  font-family:'Fredoka', sans-serif;
  font-weight:700;
  border-radius:50%;
  width:28px;
  height:28px;
  line-height:28px;
  margin-bottom:10px;
}
.section-cta{text-align:center; margin-top:36px;}

/* Cats grid */
.cats-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
@media(min-width:700px){
  .cats-grid{grid-template-columns:repeat(3,1fr);}
}
.cat-card{
  background:var(--white);
  border-radius:var(--radius);
  padding:14px;
  box-shadow:var(--shadow);
  text-align:center;
}
.cat-card h3{margin-top:12px; font-size:1.1rem;}
.cat-card p{font-size:0.9rem; color:var(--brown-mid); margin-bottom:0;}

/* Menu */
.menu-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}
@media(min-width:700px){
  .menu-grid{grid-template-columns:repeat(2,1fr);}
}
@media(min-width:1000px){
  .menu-grid{grid-template-columns:repeat(4,1fr);}
}
.menu-card{
  background:linear-gradient(160deg, var(--white), var(--cream-deep));
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
  border-top:4px solid var(--orange);
}
.menu-card h3{font-size:1.05rem;}
.menu-card p{font-size:0.9rem; color:var(--brown-mid); margin-bottom:0;}

/* Why us */
.why-us{background:var(--cream-deep);}
.benefits-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
}
@media(min-width:700px){
  .benefits-grid{grid-template-columns:repeat(2,1fr);}
}
.benefit{
  background:var(--white);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
}
.benefit h3{font-size:1.1rem;}
.benefit p{margin-bottom:0; color:var(--brown-mid);}

/* Social proof */
.social-proof-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
  align-items:center;
}
@media(min-width:900px){
  .social-proof-grid{grid-template-columns:1.4fr 1fr;}
}
.quote-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  margin-top:8px;
}
@media(min-width:600px){
  .quote-grid{grid-template-columns:repeat(3,1fr);}
}
.quote-card{
  background:var(--white);
  border-radius:var(--radius);
  padding:20px;
  box-shadow:var(--shadow);
  margin:0;
  font-style:italic;
}
.quote-card p{margin-bottom:10px; font-size:0.92rem; color:var(--brown-mid);}
.quote-card footer{font-style:normal; font-weight:700; color:var(--brown-dark); font-size:0.85rem;}

/* Adoption banner */
.adoption-banner{background:linear-gradient(135deg, #fbe4d8, #fddce6);}
.adoption-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
  align-items:center;
}
@media(min-width:900px){
  .adoption-grid{grid-template-columns:1fr 1fr;}
}
.adoption-copy h2{font-size:1.8rem;}

/* Final CTA */
.final-cta{
  background:linear-gradient(135deg, var(--brown-dark), var(--brown-mid));
  color:var(--white);
  text-align:center;
}
.final-cta h2{color:var(--white); font-size:2rem;}
.final-cta p{color:#f4e3d3;}
.fine-print{font-size:0.85rem; color:#e6c9ad; margin-top:18px; margin-bottom:0;}

/* Footer */
.site-footer{
  background:var(--brown-dark);
  color:#f4e3d3;
  padding:36px 0;
}
.footer-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  text-align:center;
}
.footer-brand{font-family:'Fredoka', sans-serif; font-weight:700; margin:0;}
.footer-social{display:flex; gap:16px;}
.footer-social a{color:#f4e3d3; text-decoration:none; font-size:0.9rem;}
.footer-social a:hover{color:var(--orange);}
.footer-copy{font-size:0.8rem; color:#cbb097; margin:0;}
