/* ============================================
   The Inner Listener — shared site styles
   Palette pulled from The Mindful Pattern cover
   ============================================ */

:root {
  --cream:        #FFFDF7;
  --ink:          #241D17;
  --ink-soft:     #5B5148;
  --rose:         #A6396B;
  --rose-dark:    #7E2A51;
  --mustard:      #F6DC8C;
  --mustard-deep: #E8C468;
  --mint:         #ECF9ED;
  --sky:          #EAF5FF;
  --blush:        #FFEFEF;
  --white:        #FFFFFF;
  --border:       #EDE6D8;
  --shadow:       0 20px 45px -25px rgba(36, 29, 23, 0.35);
  --radius-lg:    28px;
  --radius-md:    18px;
  --radius-sm:    12px;
  --max-width:    1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Nunito Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Baloo 2', 'Nunito Sans', system-ui, sans-serif;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

a { color: var(--rose); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section--tight { padding: 48px 0; }

.eyebrow {
  display: inline-block;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--rose);
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn--primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn--primary:hover { background: var(--rose-dark); }

.btn--secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--secondary:hover { background: var(--ink); color: var(--white); }

.btn--mustard {
  background: var(--mustard-deep);
  color: var(--ink);
}
.btn--mustard:hover { background: #dcb955; }

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand img { width: 30px; height: 30px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
}

.nav-links a {
  color: var(--ink);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--rose);
}

.nav-cta {
  background: var(--rose);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--rose-dark); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; width: 100%; }
  .nav-cta { border-radius: 0; text-align: center; }
}

/* ---------- Decorative clouds ---------- */
.cloud-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.cloud {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
}
.cloud--blush { background: var(--blush); }
.cloud--mint  { background: var(--mint); }
.cloud--sky   { background: var(--sky); }

.hero {
  position: relative;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 1; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 720px) {
  .card-grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--mustard);
  color: var(--ink);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* ---------- Checklist ---------- */
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.checklist li::before {
  content: "\2713";
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ---------- Disclaimer box ---------- */
.notice {
  border-radius: var(--radius-md);
  padding: 26px 28px;
  border: 1px solid var(--border);
}
.notice--rose {
  background: var(--blush);
  border-color: #f6d7d7;
}
.notice h3 { margin-bottom: 10px; }
.notice p:last-child { margin-bottom: 0; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-card--highlight {
  border-color: var(--rose);
  box-shadow: var(--shadow);
}
.price-amount {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--rose);
}
.price-length { color: var(--ink-soft); font-weight: 600; }

/* ---------- Forms ---------- */
.form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
input[type="email"],
input[type="text"],
textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 14px 18px;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--ink);
  flex: 1 1 240px;
}
textarea {
  border-radius: var(--radius-md);
  width: 100%;
  min-height: 120px;
  resize: vertical;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--rose);
}
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 10px; }

/* ---------- Placeholder markers for the user ---------- */
.todo-flag {
  display: block;
  background: #FFF7DA;
  border: 1px dashed #C9A227;
  color: #6b5306;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-top: 12px;
}
.todo-flag strong { color: #4a3c05; }

/* ---------- Booking embed ---------- */
.booking-embed {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-height: 620px;
  display: flex;
  flex-direction: column;
}
.booking-embed iframe {
  border: none;
  flex: 1;
  min-height: 580px;
  border-radius: var(--radius-md);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #F3ECDE;
  padding: 48px 0 28px;
}
.site-footer a { color: #F3ECDE; }
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.footer-brand {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}
.footer-links {
  list-style: none;
  display: flex;
  gap: 22px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.footer-fine {
  border-top: 1px solid rgba(243,236,222,0.15);
  padding-top: 18px;
  font-size: 0.85rem;
  color: #C9BFA9;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack-lg > * + * { margin-top: 28px; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; }
}
.muted { color: var(--ink-soft); }
