
:root{
  --wrap: 1120px;
  --pad: 20px;
  --text: #111;
  --muted: #555;
  --border: #e6e6e6;
  --bg: #fff;
  --bg-soft: #fafafa;
  --accent: #0a58ca;
  --shadow: 0 6px 18px rgba(0,0,0,0.08);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}
a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.site-header{
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}
.brand-logo{
  display: block;
  height: 46px;
  width: auto;
}
.brand-text{
  display: grid;
  line-height: 1.1;
}
.brand-name{
  font-weight: 700;
  font-size: 16px;
}
.brand-tagline{
  font-size: 12px;
  color: var(--muted);
}

.site-nav .menu{
  list-style: none;
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
}
.site-nav .menu a{
  display: inline-block;
  padding: 8px 10px;
  border-radius: 8px;
}
.site-nav .menu a:hover{
  background: var(--bg-soft);
  text-decoration: none;
}

.header-cta{
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Theme buttons are namespaced to avoid colliding with plugin buttons */
.ps-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-weight: 700;
}
.ps-btn-solid{
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.ps-btn-outline{
  background: transparent;
}

.site-main{
  padding: 18px 0 44px;
}

.hero{
  padding: 34px 0 10px;
}
.hero-inner{
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.hero-title{
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.1;
}
.hero-subtitle{
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 72ch;
}
.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 12px;
}
.hero-disclaimer{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.section{
  padding: 34px 0 10px;
  scroll-margin-top: 90px;
}
.section-header h2{
  margin: 0 0 6px;
  font-size: 26px;
}
.section-header p{
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 80ch;
}

.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.card h3{
  margin: 0 0 8px;
}
.card p{
  margin: 0;
  color: var(--muted);
}

.two-col{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
  align-items: start;
}
.checklist{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}
.callout{
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.callout h3{ margin: 0 0 8px; }
.callout p{ margin: 0; color: var(--muted); }

.booking-embed{margin-top:14px}

.site-footer{
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 28px 0 18px;
  margin-top: 18px;
}
.footer-inner{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
}
.footer-logo{
  height: 42px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}
.footer-title{
  font-size: 14px;
  margin: 6px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  color: var(--muted);
}
.footer-blurb{
  margin: 0 0 10px;
  color: var(--muted);
}
.footer-note{
  margin: 0;
  color: var(--muted);
}

.footer-bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 960px){
  .header-inner{
    flex-wrap: wrap;
    justify-content: center;
  }
  .site-nav .menu{
    flex-wrap: wrap;
    justify-content: center;
  }
  .cards{
    grid-template-columns: 1fr;
  }
  .two-col{
    grid-template-columns: 1fr;
  }
  .hero-title{
    font-size: 28px;
  }
  .footer-inner{
    grid-template-columns: 1fr;
  }
}
