:root {
  --orange: #f57c00;
  --blue: #8fd0ff;
  --green: #8ccf8a;
  --ink: #1f2937;
  --paper: #ffffff;
  --muted: #6b7280;
  --card: rgba(255,255,255,0.92);
  --shadow: 0 10px 30px rgba(0,0,0,0.12);
  --radius: 18px;
  --max: 1100px;
}

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

a { color: inherit; text-decoration: none; }
a:focus, button:focus { outline: 3px solid rgba(0,0,0,0.2); outline-offset: 2px; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.navlinks {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-weight: 650;
}
.navlinks a {
  padding: 8px 10px;
  border-radius: 12px;
}
.navlinks a:hover {
  background: rgba(0,0,0,0.05);
}

/* Mobile navigation */
.menu-toggle {
  display: none;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.8);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; align-items: center; gap: 8px; }
  .nav { align-items: flex-start; }
  .navlinks {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px 0 0 0;
  }
  .navlinks.is-open { display: flex; }
  .navlinks a { width: fit-content; }
}

.hero {
  padding: 70px 0 46px 0;
  background: var(--orange);
  color: white;
}
.hero .toplogo {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  margin: 0 auto 18px auto;
  display: block;
  background: white;
  padding: 10px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
}
.hero h1 {
  text-align: center;
  font-size: clamp(30px, 4.1vw, 54px);
  margin: 10px 0 10px 0;
  letter-spacing: -0.5px;
}
.hero p {
  text-align: center;
  margin: 0 auto;
  max-width: 60ch;
  font-size: 16px;
  opacity: 0.92;
}
.hero .cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.button {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button.primary { background: white; color: var(--ink); }
.button.secondary { background: rgba(255,255,255,0.18); color: white; box-shadow: none; border: 1px solid rgba(255,255,255,0.35); }

.button.small {
  padding: 10px 14px;
  font-size: 14px;
  box-shadow: none;
  border: 1px solid rgba(0,0,0,0.10);
}
.button.dark {
  background: rgba(0,0,0,0.16);
  color: rgba(0,0,0,0.88);
}
.button.whatsapp {
  background: #1fa855;
  color: white;
  border: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.button.ghost {
  background: rgba(255,255,255,0.65);
  color: var(--ink);
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: none;
}

.section {
  padding: 34px 0;
}
.section .panel {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}

.band {
  padding: 44px 0;
}
.band h2 {
  text-align: center;
  margin: 0;
  font-size: clamp(22px, 2.6vw, 34px);
}
.band p {
  text-align: center;
  margin: 8px auto 0 auto;
  max-width: 70ch;
  color: rgba(0,0,0,0.7);
}

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

.tile {
  border-radius: var(--radius);
  padding: 28px;
  min-height: 210px;
  color: rgba(0,0,0,0.84);
  position: relative;
  overflow: hidden;
}
.tile h3 {
  margin: 0 0 8px 0;
  font-size: 22px;
}
.tile p {
  margin: 0;
  max-width: 55ch;
}
.tile .mini {
  margin-top: 10px;
  font-weight: 650;
  color: rgba(0,0,0,0.65);
}
.tile .linkbtn {
  margin-top: 16px;
  display: inline-flex;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}
.tile .linkbtn:hover {
  background: white;
}

.tile.green { background: var(--green); }
.tile.blue { background: var(--blue); }
.tile.orange { background: #f9b15a; }

.page-hero {
  padding: 44px 0 26px 0;
  color: var(--ink);
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 44px);
}
.page-hero p {
  margin: 10px 0 0 0;
  max-width: 70ch;
  color: rgba(0,0,0,0.72);
}

.page {
  padding: 26px 0 54px 0;
}

.grid2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}
@media (max-width: 900px) {
  .grid2 { grid-template-columns: 1fr; }
}

.card {
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.card h2, .card h3 {
  margin-top: 0;
}

.list {
  padding-left: 18px;
  margin: 10px 0;
}
.tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  background: rgba(0,0,0,0.07);
  margin-right: 8px;
  margin-bottom: 8px;
}

.price {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  margin: 0;
}
.price dt { font-weight: 800; }
.price dd { margin: 0; font-weight: 800; }

footer {
  padding: 26px 0;
  background: #0b1220;
  color: rgba(255,255,255,0.9);
}
footer a { text-decoration: underline; }
.footergrid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}
@media (max-width: 900px) {
  .footergrid { grid-template-columns: 1fr; }
}
.small { font-size: 13px; opacity: 0.9; }

.bg-daycare { background: #8ccf8a; }
.bg-swim { background: #8fd0ff; }
.bg-pet { background: #f9b15a; }
.bg-about { background: #f3f4f6; }

.notice {
  border-left: 6px solid rgba(0,0,0,0.18);
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.75);
}

/* Forms (Netlify-ready) */
.form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 760px) {
  .fields { grid-template-columns: 1fr; }
}
label {
  font-weight: 750;
  display: block;
}
input, select, textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.95);
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
.help {
  font-size: 12px;
  color: rgba(0,0,0,0.65);
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 650;
  color: rgba(0,0,0,0.82);
}
.checkbox input { width: 18px; height: 18px; margin-top: 3px; }
.hidden { display: none !important; }

.btnrow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cardhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.subtle {
  color: rgba(0,0,0,0.68);
}

/* Media blocks */
.media2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
@media (max-width: 900px){
  .media2{ grid-template-columns: 1fr; }
}
.figure{
  margin:0;
}
.figure img{
  width:100%;
  height:auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.6);
}
.figure figcaption{
  margin-top:10px;
  font-size:12px;
  color: rgba(0,0,0,0.65);
}

/* Reviews */
.reviews{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
  margin-top:14px;
}
@media (max-width: 900px){
  .reviews{ grid-template-columns: 1fr; }
}
.review{
  background: rgba(255,255,255,0.85);
  border-radius: 18px;
  padding: 16px 16px 14px 16px;
  box-shadow: var(--shadow);
  border-left: 6px solid rgba(0,0,0,0.14);
}
.review .who{ font-weight: 900; }
.review .meta{ font-size: 12px; color: rgba(0,0,0,0.62); margin-top:2px; }
.review p{ margin: 10px 0 0 0; color: rgba(0,0,0,0.78); }
.review .stars{ font-weight: 900; margin-left:6px; }

/* Simple image gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
@media (max-width: 900px){
  .gallery{ grid-template-columns: 1fr; }
}
.gallery img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow);
}

/* Backwards compatibility for review layout used on Swim page */
.review-head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
