/* Divinely Guided Reiki — "Dusk & Candlelight"
   Type: Lora (display) + Poppins (body) — matches Kathy's printed flyers */

:root {
  --ink: #322843;        /* deep dusk plum — text */
  --ink-soft: #5c5170;
  --base: #FAF7F2;       /* warm ivory */
  --tint: #EFEAF2;       /* pale lavender-gray */
  --deep: #43335A;       /* deep plum panels */
  --gold: #B98A45;       /* candlelight gold */
  --gold-soft: #E3CFA9;
  --white: #FFFDF9;
  --radius: 14px;
  --max: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--base);
  line-height: 1.7;
  font-size: 1.02rem;
}

h1, h2, h3 { font-family: 'Lora', Georgia, serif; line-height: 1.25; font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); margin-bottom: 1rem; }
h3 { font-size: 1.18rem; margin-bottom: .4rem; }
p + p { margin-top: 1em; }
a { color: var(--gold); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
img { max-width: 100%; display: block; }

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

.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e6dfd3;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1.4rem; max-width: var(--max); margin: 0 auto;
}
.brand { font-family: 'Lora', serif; font-size: 1.15rem; font-weight: 600; color: var(--ink); text-decoration: none; }
.brand span { color: var(--gold); }
.nav ul { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.nav ul a { color: var(--ink); text-decoration: none; font-size: .9rem; font-weight: 400; }
.nav ul a:hover { color: var(--gold); }
.nav .cta {
  background: var(--deep); color: var(--white); padding: .55rem 1.2rem;
  border-radius: 99px; font-weight: 500;
}
.nav .cta:hover { background: var(--gold); color: var(--white); }
.nav-toggle { display: none; }

@media (max-width: 760px) {
  .nav ul { display: none; }
  .nav ul.open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--base);
    padding: 1.2rem 1.4rem 1.6rem; gap: 1rem;
    border-bottom: 1px solid #e6dfd3;
  }
  .nav-toggle {
    display: block; background: none; border: none; cursor: pointer;
    font-size: 1.6rem; color: var(--ink); line-height: 1;
  }
}

/* ---------- Hero with radiating energy signature ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(170deg, var(--deep) 0%, #2e2340 100%);
  color: var(--white);
  text-align: center;
  padding: 6.5rem 1.4rem 6rem;
}
.hero .rays {
  position: absolute; inset: -40% -20% auto; margin: auto;
  width: 140%; aspect-ratio: 1; pointer-events: none; opacity: .5;
  animation: breathe 9s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: .5; }
  50% { transform: scale(1.04); opacity: .65; }
}
.hero-inner { position: relative; max-width: 720px; margin: 0 auto; }
.hero h1 { font-size: clamp(2.3rem, 5.5vw, 3.4rem); font-weight: 500; }
.hero .tag {
  font-family: 'Lora', serif; font-style: italic;
  color: var(--gold-soft); font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  margin: 1rem 0 1.4rem;
}
.hero .meta { font-size: .92rem; opacity: .85; margin-bottom: 2.2rem; }
.btn {
  display: inline-block; background: var(--gold); color: var(--white);
  text-decoration: none; font-weight: 500; font-size: .98rem;
  padding: .85rem 2rem; border-radius: 99px; border: none; cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { background: #a97a37; transform: translateY(-1px); }
.btn.ghost { background: transparent; border: 1.5px solid var(--gold-soft); color: var(--gold-soft); margin-left: .8rem; }
.btn.ghost:hover { background: rgba(255,255,255,.08); }

/* ---------- Sections ---------- */
section { padding: 4.5rem 0; }
section.tint { background: var(--tint); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }

/* Services */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; margin-top: 2rem; }
.card {
  background: var(--white); border: 1px solid #e9e2d6;
  border-radius: var(--radius); padding: 1.6rem;
}
.card h3 { color: var(--deep); }
.card.feature { background: var(--deep); color: var(--white); border: none; }
.card.feature h3 { color: var(--gold-soft); }

/* Deep panel (grief & hospice) */
.panel {
  background: var(--deep); color: var(--white);
  border-radius: var(--radius); padding: 3rem clamp(1.5rem, 4vw, 3.5rem);
}
.panel .eyebrow { color: var(--gold-soft); }
.panel h2 { color: var(--white); }

/* Steps — What to Expect (a true sequence) */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.4rem; margin-top: 2rem; }
.step { background: var(--white); border-radius: var(--radius); padding: 1.5rem; border: 1px solid #e9e2d6; }
.panel .step { color: var(--ink); }
.step .num {
  font-family: 'Lora', serif; font-size: 1.6rem; color: var(--gold);
  border-bottom: 2px solid var(--gold-soft); display: inline-block;
  padding-bottom: .2rem; margin-bottom: .7rem;
}

/* About */
.portrait {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 18px 40px rgba(50, 40, 67, .18);
  aspect-ratio: 4 / 5; background: var(--tint);
  display: flex; align-items: center; justify-content: center;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait .placeholder { text-align: center; color: var(--ink-soft); padding: 2rem; font-size: .9rem; }
.credentials { list-style: none; margin-top: 1.2rem; }
.credentials li { padding: .3rem 0 .3rem 1.6rem; position: relative; }
.credentials li::before { content: "◆"; color: var(--gold); position: absolute; left: 0; font-size: .7rem; top: .65rem; }

/* Details table */
.details { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; margin-top: 2rem; }
.detail { background: var(--white); border: 1px solid #e9e2d6; border-radius: var(--radius); padding: 1.1rem 1.3rem; }
.detail dt { font-weight: 500; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.detail dd { margin-top: .2rem; }

/* Checklist */
.check { list-style: none; columns: 2; gap: 2.5rem; margin-top: 1.4rem; }
.check li { padding: .35rem 0 .35rem 1.7rem; position: relative; break-inside: avoid; }
.check li::before { content: "✓"; color: var(--gold); position: absolute; left: 0; font-weight: 600; }
@media (max-width: 640px) { .check { columns: 1; } }

/* Contact form */
form { display: grid; gap: 1rem; max-width: 560px; }
label { font-weight: 500; font-size: .9rem; }
input, select, textarea {
  width: 100%; padding: .8rem 1rem; margin-top: .3rem;
  border: 1px solid #d8cfc0; border-radius: 10px;
  font: inherit; background: var(--white); color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }

/* Footer */
footer.site {
  background: var(--deep); color: rgba(255, 253, 249, .85);
  padding: 2.8rem 0; font-size: .9rem; text-align: center;
}
footer.site a { color: var(--gold-soft); }
footer.site .brand { color: var(--white); font-size: 1.05rem; }

/* Facilities page hero variant */
.hero.compact { padding: 5rem 1.4rem 4.5rem; }

.note { font-size: .85rem; color: var(--ink-soft); font-style: italic; }
