/* Rhody Haven simple site style */
:root{
  --navy:#0B3A5B;
  --navy2:#0A2F49;
  --teal:#2FA7A0;
  --sea:#E8F6F5;
  --sand:#FBF7F1;
  --ink:#13212A;
  --muted:#5A6B76;
  --card:#ffffff;
  --border:rgba(11,58,91,.12);
  --shadow: 0 10px 30px rgba(11,58,91,.10);
  --radius: 16px;
  --max: 1080px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji"; color:var(--ink); background: radial-gradient(1200px 600px at 20% 0%, var(--sea), #fff 60%); }
a{ color:var(--navy); text-decoration:none; }
a:hover{ text-decoration:underline; }
.container{ max-width:var(--max); margin:0 auto; padding: 20px; }

.topbar{
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky; top:0; z-index: 20;
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
  padding: 14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{ width:42px; height:42px; border-radius: 12px; }
.brand .title{
  line-height:1.1;
}
.brand .title strong{ display:block; font-size: 14px; letter-spacing: .06em; color:var(--navy2); text-transform:uppercase; }
.brand .title span{ display:block; font-size: 12px; color:var(--muted); }

.links{ display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.links a{ font-weight:600; font-size:14px; color:var(--navy2); padding:8px 10px; border-radius: 12px; }
.links a:hover{ background: rgba(47,167,160,.10); text-decoration:none; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy2), var(--navy));
  color:#fff !important;
  font-weight:700;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 24px rgba(11,58,91,.20);
}
.btn:hover{ filter: brightness(1.03); text-decoration:none; }
.btn.secondary{
  background: #fff;
  color: var(--navy2) !important;
  border: 1px solid var(--border);
  box-shadow: none;
}

.hero{
  padding: 26px 0 10px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
}

.hero-card{
  background: linear-gradient(135deg, rgba(11,58,91,.06), rgba(47,167,160,.08));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.kicker{
  display:inline-flex; gap:8px; align-items:center;
  font-weight:800; letter-spacing:.08em;
  text-transform: uppercase;
  color: var(--navy2);
  font-size: 12px;
}
h1{
  margin: 10px 0 10px;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  color: var(--navy2);
}
.sub{
  margin:0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}
.pills{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 14px; }
.pill{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--border);
  color: var(--navy2);
  font-weight:700;
  font-size: 13px;
}

.notice{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 8px 20px rgba(11,58,91,.08);
}
.notice strong{ color: var(--navy2); }
.notice p{ margin:0; color: var(--muted); line-height:1.5; font-size: 14px; }

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 18px 0 28px;
}
@media (max-width: 900px){ .grid{ grid-template-columns: 1fr; } }

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card h2{
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--navy2);
}
.card ul{ margin: 0 0 0 18px; padding:0; color: var(--muted); }
.card li{ margin: 6px 0; line-height: 1.45; }
.card .cta{ margin-top: 12px; display:flex; gap:10px; flex-wrap:wrap; }

.section-title{
  margin: 8px 0 10px;
  font-size: 18px;
  color: var(--navy2);
}
.simple{
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
  margin: 0;
}

.footer{
  border-top: 1px solid var(--border);
  margin-top: 26px;
  padding: 18px 0 32px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.small-links{ display:flex; gap:14px; flex-wrap:wrap; margin-top: 6px; }
