/* ==========================================================
   Aluna Rise — design system
   Palette: Warm Stone & Honey
   Type: Fraunces (display serif) + Inter (body sans)
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Prata&family=Fraunces:ital,opsz,wght@1,9..144,400;1,9..144,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --sand:        #FBF6EE;   /* page background */
  --sandstone:   #E8D9C0;   /* warm panels */
  --sandstone-2: #F1E6D1;   /* lighter panels */
  --honey:       #C99A4F;   /* primary accent */
  --honey-soft:  #E6C68C;   /* hover/soft accent */
  --ochre:       #9B6B3F;   /* deep accent / icon */
  --moss:        #5A6147;   /* subtle balance */
  --ink:         #2E2A24;   /* headings & high-emphasis */
  --ink-soft:    #6B5D4F;   /* body copy */
  --line:        #D9C8AE;   /* hairlines */

  --maxw: 1140px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 14px;
  --shadow-soft: 0 12px 40px -16px rgba(46, 42, 36, 0.18);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Prata', Georgia, serif;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 0.4em;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p  { margin: 0 0 1em; }
a  { color: var(--ochre); text-decoration: none; transition: color .2s; }
a:hover { color: var(--honey); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ochre);
  font-weight: 500;
  margin-bottom: 1.2em;
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--sand);
}
.btn-primary:hover { background: var(--ochre); color: #fff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--sand); transform: translateY(-1px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(251, 246, 238, 0.78);
  border-bottom: 1px solid rgba(217, 200, 174, 0.5);
}
.site-header .inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.logo img { height: 46px; width: auto; display: block; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 400;
}
.nav a.cta {
  background: var(--ink);
  color: var(--sand);
  padding: 10px 20px;
  border-radius: 999px;
}
.nav a.cta:hover { background: var(--ochre); color: #fff; }
.nav-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--ink); cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(70px, 11vw, 140px) 0 clamp(80px, 12vw, 160px);
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 154, 79, 0.18), transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(155, 107, 63, 0.14), transparent 55%),
    linear-gradient(180deg, #FBF6EE 0%, #F1E6D1 100%);
  overflow: hidden;
}
.hero::after {
  /* subtle decorative sun in the corner */
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,154,79,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; max-width: 880px; }
.hero h1 {
  margin-bottom: 0.3em;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.hero h1 em {
  font-family: 'Fraunces', 'Prata', Georgia, serif;
  font-style: italic;
  color: var(--ochre);
  font-weight: 500;
}
.hero-subhead {
  font-family: 'Fraunces', 'Prata', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: var(--ochre);
  margin: 0.3em 0 0.9em;
  line-height: 1.35;
  max-width: 620px;
}
.hero-subhead em { font-style: italic; }

/* Use a conventional-looking ampersand character
   (Prata's & has a decorative italic-style shape) */
.amp {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: normal;
  font-weight: 400;
}
.hero .lede {
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  max-width: 620px;
  margin-bottom: 2.2em;
  color: var(--ink-soft);
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Section base ---------- */
section { padding: clamp(70px, 9vw, 110px) 0; }
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-head p { font-size: 1.05rem; }

/* ---------- Intro quote ---------- */
.intro {
  background: var(--sand);
  text-align: center;
}
.intro blockquote {
  margin: 0 auto;
  max-width: 760px;
  font-family: 'Fraunces', 'Prata', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.45;
  color: var(--ink);
  position: relative;
  padding: 0 30px;
}
.intro blockquote::before,
.intro blockquote::after {
  content: '';
  display: block;
  width: 50px; height: 1px;
  background: var(--line);
  margin: 30px auto;
}
.intro .signoff {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-top: 1em;
}

/* ---------- What is Reiki ---------- */
.what-is-reiki { background: var(--sand); }
.what-is-reiki .grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.what-is-reiki h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); margin-bottom: 0; }
.what-is-reiki p { font-size: 1.02rem; }
.what-is-reiki .intro-col { display: flex; flex-direction: column; align-items: flex-start; }
.anna-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--sandstone);
  box-shadow: 0 8px 24px -12px rgba(46, 42, 36, 0.25);
  flex-shrink: 0;
}
.anna-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.what-is-reiki .ethics-note {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 1.4em;
  padding-top: 1.4em;
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) {
  .what-is-reiki .grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--sand);
  text-align: center;
  padding: clamp(45px, 5.5vw, 70px) 0;
}
.testimonials .section-head { margin-bottom: 24px; }
.testimonials .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px auto 0;
  max-width: 900px;
}
.testimonials .quote {
  background: var(--sandstone-2);
  padding: 26px 28px;
  border-radius: var(--radius);
  border-top: 3px solid var(--honey);
  text-align: left;
  display: flex;
  flex-direction: column;
}
.testimonials .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  color: var(--honey);
}
.testimonials .stars svg { width: 14px; height: 14px; }
.testimonials .quote p {
  font-family: 'Fraunces', 'Prata', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 14px;
  flex-grow: 1;
}
.testimonials .quote cite {
  font-style: normal;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ochre);
  font-weight: 500;
}
@media (max-width: 720px) {
  .testimonials .testimonial-grid { grid-template-columns: 1fr; }
}

/* ---------- Gift vouchers ---------- */
.gift-vouchers { background: var(--sand); padding: clamp(50px, 7vw, 90px) 0; }
.gift-vouchers .card {
  background: var(--sandstone-2);
  border-radius: var(--radius);
  padding: clamp(40px, 5vw, 60px);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--line);
}
.gift-vouchers .card h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); }
.gift-vouchers .card p { max-width: 560px; margin: 0 auto 0.8em; }

/* ---------- Sessions preview ---------- */
.sessions { background: var(--sandstone-2); }
.session-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.session-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.session-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.session-card .duration {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ochre);
  font-weight: 500;
}
.session-card h3 { margin: 8px 0 14px; }
.session-card p { font-size: 0.95rem; flex-grow: 1; }
.session-card .price {
  font-family: 'Prata', Georgia, serif;
  font-size: 1.6rem;
  color: var(--ink);
  margin: 16px 0 4px;
}
.session-card .price small { font-size: 0.85rem; color: var(--ink-soft); font-family: 'Inter', sans-serif; }
.session-card.featured {
  background: var(--ink);
  color: var(--sand);
  border-color: var(--ink);
}
.session-card.featured h3, .session-card.featured .price { color: var(--sand); }
.session-card.featured .duration { color: var(--honey-soft); }
.session-card.featured p { color: rgba(251, 246, 238, 0.8); }

/* ---------- About teaser (duck story hook) ---------- */
.about-teaser {
  background: var(--sandstone-2);
}
.about-teaser .grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 60px;
  align-items: center;
}
.about-teaser .visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: var(--sandstone-2);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
}
.about-teaser .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-teaser-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--sandstone);
  box-shadow: 0 6px 18px -8px rgba(46, 42, 36, 0.25);
}
.about-teaser-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.about-teaser h2 em { font-style: italic; color: var(--ochre); }
.about-teaser blockquote {
  border-left: 2px solid var(--honey);
  padding: 6px 0 6px 22px;
  margin: 24px 0;
  font-family: 'Fraunces', 'Prata', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--ink);
}

/* ---------- What to expect ---------- */
.expect { background: var(--sand); }
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 30px;
}
.expect-item { text-align: center; padding: 0 10px; }
.expect-item .icon {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  border: 1.5px solid var(--ochre);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ochre);
}
.expect-item h3 { font-size: 1.2rem; margin-bottom: 10px; }
.expect-item p { font-size: 0.95rem; }

/* ---------- Circles teaser ---------- */
.circles {
  background: var(--ink);
  color: var(--sand);
  text-align: center;
}
.circles h2, .circles .eyebrow { color: var(--sand); }
.circles .eyebrow { color: var(--honey-soft); }
.circles p { color: rgba(251, 246, 238, 0.78); max-width: 640px; margin: 0 auto 28px; font-size: 1.1rem; }
.circles .btn-ghost { color: var(--sand); border-color: var(--sand); }
.circles .btn-ghost:hover { background: var(--sand); color: var(--ink); }

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(180deg, var(--sand) 0%, var(--sandstone) 100%);
  text-align: center;
}
.final-cta h2 { max-width: 700px; margin: 0 auto 0.5em; }
.final-cta p { max-width: 560px; margin: 0 auto 30px; font-size: 1.05rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(251, 246, 238, 0.72);
  padding: 70px 0 30px;
  font-size: 0.92rem;
}
.site-footer .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}
.site-footer h4 {
  color: var(--sand);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  margin-bottom: 18px;
}
.site-footer a { color: rgba(251, 246, 238, 0.78); display: block; padding: 4px 0; }
.site-footer a:hover { color: var(--honey-soft); }
.site-footer .brand-mark { margin-bottom: 18px; }
.site-footer .brand-mark img { height: 56px; filter: brightness(0) invert(1) opacity(0.85); }
.site-footer .newsletter input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(251, 246, 238, 0.08);
  border: 1px solid rgba(251, 246, 238, 0.18);
  color: var(--sand);
  font-family: inherit;
  margin-bottom: 10px;
}
.site-footer .newsletter input::placeholder { color: rgba(251, 246, 238, 0.4); }
.site-footer .newsletter button {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--honey);
  color: var(--ink);
  border: none;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
}
.site-footer .newsletter button:hover { background: var(--honey-soft); }
.site-footer .legal {
  border-top: 1px solid rgba(251, 246, 238, 0.12);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem;
  color: rgba(251, 246, 238, 0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .session-grid { grid-template-columns: 1fr; }
  .about-teaser .grid { grid-template-columns: 1fr; gap: 40px; }
  .about-teaser .visual { aspect-ratio: 16 / 11; max-height: 360px; }
  .expect-grid { grid-template-columns: 1fr; gap: 30px; }
  .site-footer .grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
         background: var(--sand); flex-direction: column; padding: 20px var(--gutter);
         border-bottom: 1px solid var(--line); align-items: flex-start; gap: 18px; }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .site-header .inner { position: relative; }
  .site-footer .grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; text-align: center; }
}

/* ---------- Forms (used on contact/booking pages) ---------- */
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 0.88rem; color: var(--ink); font-weight: 500; margin-bottom: 6px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sand);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .2s;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--ochre); }
.form-row textarea { min-height: 130px; resize: vertical; }
