/* Dude's Cat Ranch — simple, fast, GoDaddy-friendly */
:root{
  --ink:#0b2230;
  --muted:#3f5866;
  --bg:#ffffff;
  --alt:#f3fbff;
  --brand:#0d4b67;
  --brand2:#f2b233;
  --accent:#ff5a64;
  --cream:#fff4dc;
  --card:#ffffff;
  --shadow: 0 10px 30px rgba(11,34,48,.10);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.5;
}

img{max-width:100%;height:auto;display:block}
a{color:inherit}
.container{width:min(1120px, 92vw); margin:0 auto}

.skip{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#000; color:#fff; border-radius:10px; z-index:9999}

.header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(11,34,48,.08);
}
.nav-wrap{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:10px 0;
}

.brand{display:flex; align-items:center; gap:12px; min-width:240px}
.brand__logo{width:76px; height:76px; object-fit:contain}
.brand__name{font-family: Fredoka, Inter, sans-serif; font-weight:700; font-size:18px}
.brand__tag{color:var(--muted); font-size:12px}

.nav__toggle{
  display:none;
  border:1px solid rgba(11,34,48,.2);
  background:var(--bg);
  padding:10px 12px;
  border-radius:12px;
}
.nav__menu{
  list-style:none; display:flex; gap:16px; margin:0; padding:0;
}
.nav__menu a{
  text-decoration:none;
  padding:10px 12px;
  border-radius:12px;
  color:var(--muted);
  font-weight:600;
}
.nav__menu a:hover{background:rgba(13,75,103,.07); color:var(--ink)}

.hero{
  position:relative;
  background: radial-gradient(1200px 500px at 20% 0%, var(--cream), #ffffff 60%);
  padding:48px 0 0;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap:28px;
  align-items:start;
}
.pill{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(13,75,103,.08);
  color:var(--brand);
  font-weight:700;
  letter-spacing:.2px;
  margin:0 0 14px;
}
h1{
  font-family: Fredoka, Inter, sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.05;
  margin:0 0 12px;
}
.accent{color:var(--accent)}
.lead{font-size:18px; color:var(--muted); margin:0 0 18px}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin:16px 0 18px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  border:1px solid transparent;
  transition:transform .05s ease, background .2s ease, border-color .2s ease;
}
.btn:active{transform: translateY(1px)}
.btn--primary{background:var(--brand); color:white}
.btn--primary:hover{background:#0b3e55}
.btn--ghost{
  background:transparent;
  border-color: rgba(11,34,48,.18);
  color:var(--ink);
}
.btn--ghost:hover{background:rgba(11,34,48,.05)}
.btn-row{display:flex; gap:10px; flex-wrap:wrap}

.stats{
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin:18px 0 0;
}
.stat{
  background:var(--card);
  border:1px solid rgba(11,34,48,.08);
  border-radius:var(--radius);
  padding:12px 14px;
  box-shadow: var(--shadow);
}
.stat__num{font-weight:900}
.stat__label{color:var(--muted); font-size:12px}

.hero__card{display:grid; gap:12px; justify-items:center}
.mark{
  width:180px; height:180px; object-fit:contain;
  filter: drop-shadow(0 12px 18px rgba(11,34,48,.18));
}
.card{
  width:100%;
  background:var(--card);
  border:1px solid rgba(11,34,48,.08);
  border-radius:var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.card h2{margin:0 0 8px; font-family: Fredoka, Inter, sans-serif}
.quick{margin:0; padding-left:18px; color:var(--muted)}
.quick a{color:var(--brand); font-weight:700; text-decoration:none}
.quick a:hover{text-decoration:underline}
.tiny{font-size:12px; color:var(--muted); margin:10px 0 0}

.wave{height:52px}

.section{padding:54px 0}
.section--alt{background:var(--alt)}
.section__head{max-width:760px}
.section__head h2{
  font-family: Fredoka, Inter, sans-serif;
  font-size:32px; margin:0 0 8px;
}
.section__head p{margin:0; color:var(--muted)}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
  margin-top:18px;
}
.tile{
  background:var(--card);
  border:1px solid rgba(11,34,48,.08);
  border-radius:var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.tile h3{margin:0 0 6px; font-family: Fredoka, Inter, sans-serif}
.tile p{margin:0; color:var(--muted)}
.bullets{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.link{display:inline-block; margin-top:10px; color:var(--brand); font-weight:900; text-decoration:none}
.link:hover{text-decoration:underline}

.cards{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.cat{
  background:var(--card);
  border:1px solid rgba(11,34,48,.08);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
}
.cat__img{height:160px}
.placeholder{
  background: linear-gradient(135deg, rgba(13,75,103,.14), rgba(242,178,51,.18));
}
.cat__body{padding:14px}
.cat__body h3{margin:0 0 4px; font-family: Fredoka, Inter, sans-serif}
.meta{margin:0 0 8px; color:var(--muted); font-weight:700; font-size:12px}

.center{display:flex; justify-content:center; margin-top:16px}

.form{display:grid; gap:10px; margin-top:10px}
label{display:grid; gap:6px; font-weight:800}
input, select, textarea{
  font: inherit;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(11,34,48,.18);
  outline:none;
}
input:focus, select:focus, textarea:focus{border-color: rgba(13,75,103,.6); box-shadow: 0 0 0 4px rgba(13,75,103,.12)}

.note{
  margin-top:14px;
  border-radius:var(--radius);
  border:1px dashed rgba(11,34,48,.25);
  padding:14px;
  background: rgba(255,255,255,.7);
}
.note h4{margin:0 0 8px; font-family: Fredoka, Inter, sans-serif}

.footer{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid rgba(11,34,48,.10);
  color:var(--muted);
  text-align:center;
}

@media (max-width: 940px){
  .hero__grid{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .nav__toggle{display:inline-flex}
  .nav__menu{
    position:absolute;
    right:4vw;
    top:70px;
    flex-direction:column;
    background:rgba(255,255,255,.98);
    border:1px solid rgba(11,34,48,.10);
    border-radius:16px;
    padding:10px;
    box-shadow: var(--shadow);
    display:none;
    min-width: 220px;
  }
  .nav__menu.is-open{display:flex}
}


/* --- Additions: header actions, social icons, QR block, pages --- */
.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.btn--sm{ padding:10px 12px; border-radius:12px; font-weight:800; }
.social{ display:flex; gap:8px; align-items:center; }
.icon{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px;
  border-radius:12px;
  border:1px solid rgba(11,34,48,.18);
  text-decoration:none;
  color:var(--ink);
  font-weight:800;
  background:rgba(255,255,255,.7);
}
.icon:hover{ background:rgba(11,34,48,.05); }

.qr{ display:flex; gap:14px; align-items:center; margin-top:12px; flex-wrap:wrap; }
.qr img{ border-radius:16px; box-shadow: var(--shadow); border:1px solid rgba(11,34,48,.10); }
.fineprint{ color:rgba(11,34,48,.65); font-size:13px; margin-top:8px; }

/* simple page hero spacing */
.page-hero{ padding:28px 0 8px; }
.page-hero h1{ margin:0 0 10px; }
.page-hero p{ margin:0; color:var(--muted); max-width:70ch; }
