/* ==========================================================================
   Feather Reiki — Design System
   A calm, premium aesthetic for distance Reiki healing.
   Palette: soft sage, warm cream, muted gold, deep charcoal.
   ========================================================================== */

:root {
  /* Colour */
  --cream:        #FAF6EF;
  --cream-deep:   #F3ECE0;
  --white:        #FFFFFF;
  --sage:         #7E9B86;
  --sage-deep:    #5C7866;
  --sage-soft:    #DCE6DD;
  --gold:         #BFA169;
  --gold-soft:    #E8DDC4;
  --charcoal:     #2C322E;
  --ink:          #3A413B;
  --muted:        #6F766F;
  --line:         #E4DCCE;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing / shape */
  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 18px 50px -20px rgba(44, 50, 46, 0.28);
  --shadow-sm: 0 10px 30px -16px rgba(44, 50, 46, 0.30);
  --max:       1180px;
  --gutter:    clamp(20px, 5vw, 64px);
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--sage-deep); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold); }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--charcoal); line-height: 1.12; letter-spacing: .2px; }
h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
p  { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .74rem;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1rem;
}
.lead { font-size: clamp(1.1rem, 1.6vw, 1.28rem); color: var(--muted); font-weight: 300; }
.serif-accent { font-family: var(--serif); font-style: italic; color: var(--sage-deep); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 86px); }
.section--cream { background: var(--cream); }
.section--deep  { background: var(--cream-deep); }
.section--sage  { background: var(--sage-deep); color: #EEF2EC; }
.section--sage h1, .section--sage h2, .section--sage h3 { color: var(--white); }
.section--sage .eyebrow { color: var(--gold-soft); }
.center { text-align: center; }
.measure { max-width: 660px; margin-inline: auto; }
.section-head { margin-bottom: clamp(36px, 5vw, 64px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-weight: 400; font-size: .92rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 1.05em 2.1em; border-radius: 100px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn--primary { background: var(--sage-deep); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--charcoal); color: #fff; }
.btn--gold { background: var(--gold); color: #fff; box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: #a98c52; color: #fff; }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--charcoal); }
.btn--ghost:hover { border-color: var(--sage); color: var(--sage-deep); }
.btn--light { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.45); color: #fff; }
.btn--light:hover { background: #fff; color: var(--sage-deep); }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.center .btn-row { justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 239, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(250, 246, 239, .94); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: .65rem; font-family: var(--serif); font-size: 1.5rem; color: var(--charcoal); font-weight: 500; letter-spacing: .5px; }
.brand:hover { color: var(--charcoal); }
.brand svg { width: 30px; height: 30px; flex: none; }
.brand span small { display: block; font-family: var(--sans); font-size: .56rem; letter-spacing: .42em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-top: -2px; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--ink); font-size: .92rem; letter-spacing: .03em; position: relative; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:not(.btn):hover::after,
.nav-links a.is-active:not(.btn)::after { width: 100%; }
.nav-links a.is-active { color: var(--sage-deep); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--charcoal); margin: 6px 0; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; z-index: 110; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    background: var(--cream); padding: 0 var(--gutter);
    transform: translateX(100%); transition: transform .4s var(--ease);
    box-shadow: -20px 0 60px -30px rgba(0,0,0,.4);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.3rem; font-family: var(--serif); }
  .nav-links .btn { font-family: var(--sans); font-size: .92rem; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(165deg, #F6EFE3 0%, #EAE3D4 55%, #DDE6DC 100%); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(191,161,105,.16), transparent 45%),
    radial-gradient(circle at 12% 85%, rgba(126,155,134,.20), transparent 42%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center; padding-block: clamp(60px, 9vw, 120px); }
.hero h1 { margin-bottom: 1.4rem; }
.hero .lead { margin-bottom: 2rem; max-width: 30ch; }
.hero-media { position: relative; }
.hero-media .photo {
  aspect-ratio: 4 / 5; border-radius: 200px 200px 24px 24px; overflow: hidden;
  box-shadow: var(--shadow); background: var(--sage-soft);
}
.hero-media .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: 26px; left: -26px; background: var(--white);
  border-radius: var(--radius); padding: 16px 22px; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 12px; max-width: 230px;
}
.hero-badge .stars { color: var(--gold); letter-spacing: 2px; font-size: .9rem; }
.hero-badge strong { font-family: var(--serif); font-size: 1.3rem; color: var(--charcoal); display: block; }
.hero-badge small { color: var(--muted); font-size: .76rem; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero .lead { margin-inline: auto; }
  .hero .btn-row { justify-content: center; }
  .hero-media { max-width: 420px; margin: 8px auto 0; }
  .hero-badge { left: 8px; }
}

/* ---------- Decorative divider ---------- */
.feather-rule { display: flex; align-items: center; justify-content: center; gap: 16px; color: var(--gold); margin: 0 auto; }
.feather-rule::before, .feather-rule::after { content: ""; height: 1px; width: clamp(40px, 12vw, 110px); background: linear-gradient(90deg, transparent, var(--gold-soft), transparent); }
.feather-rule svg { width: 24px; height: 24px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: clamp(20px, 3vw, 32px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(26px, 3vw, 38px); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card .icon {
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: var(--sage-soft); color: var(--sage-deep); margin-bottom: 1.2rem;
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--muted); font-size: .98rem; }

/* Split feature (text + media) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split--reverse .split-media { order: -1; }
.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4; background: var(--sage-soft); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
}

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 28px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; }
.step .num {
  counter-increment: step; width: 54px; height: 54px; flex: none; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold); display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.5rem;
}
.step .num::before { content: counter(step, decimal-leading-zero); }
.step h3 { margin-bottom: .35rem; }
.step p { color: var(--muted); margin: 0; }

/* ---------- Benefit list ---------- */
.ticklist { display: grid; gap: 14px; }
.ticklist li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.ticklist svg { width: 22px; height: 22px; color: var(--sage); margin-top: 4px; flex: none; }

/* ---------- Pricing ---------- */
.price-card { position: relative; display: flex; flex-direction: column; text-align: center; }
.price-card.featured { border-color: var(--gold); box-shadow: var(--shadow); }
.price-card .tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; padding: .4em 1.1em; border-radius: 100px;
}
.price-card h3 { margin-bottom: .3rem; }
.price-card .duration { color: var(--muted); font-size: .9rem; margin-bottom: 1.2rem; }
.price-card .price { font-family: var(--serif); font-size: 3rem; color: var(--sage-deep); line-height: 1; }
.price-card .price small { font-size: 1rem; color: var(--muted); }
.price-card .feat { margin: 1.5rem 0; display: grid; gap: 10px; text-align: left; }
.price-card .feat li { display: grid; grid-template-columns: auto 1fr; gap: 10px; color: var(--muted); font-size: .94rem; }
.price-card .feat svg { width: 18px; height: 18px; color: var(--sage); margin-top: 5px; }
.price-card .btn { margin-top: auto; }

/* ---------- Testimonials ---------- */
.quote-card { background: var(--white); border-radius: var(--radius); padding: clamp(28px,3vw,40px); border: 1px solid var(--line); }
.quote-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 1rem; }
.quote-card blockquote { font-family: var(--serif); font-size: 1.25rem; line-height: 1.5; color: var(--charcoal); font-style: italic; margin-bottom: 1.2rem; }
.quote-card .who { font-weight: 400; color: var(--sage-deep); }
.quote-card .who small { display: block; color: var(--muted); font-weight: 300; font-size: .82rem; }

/* Featured single quote */
.bigquote { text-align: center; max-width: 820px; margin-inline: auto; }
.bigquote blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.4; }
.section--sage .bigquote blockquote { color: #fff; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 22px 26px; font-family: var(--serif); font-size: 1.2rem; color: var(--charcoal);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .plus { flex: none; width: 22px; height: 22px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--gold); transition: transform .3s var(--ease); }
.faq-q .plus::before { width: 100%; height: 2px; }
.faq-q .plus::after  { width: 2px; height: 100%; }
.faq-item.open .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 26px 24px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info .info-row { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-info .info-row:last-child { border-bottom: 0; }
.contact-info .info-row .ic { width: 46px; height: 46px; border-radius: 50%; background: var(--sage-soft); color: var(--sage-deep); display: grid; place-items: center; flex: none; }
.contact-info .info-row .ic svg { width: 22px; height: 22px; }
.contact-info .info-row strong { display: block; color: var(--charcoal); font-weight: 400; }
.contact-info .info-row a, .contact-info .info-row span { color: var(--muted); }

form .field { margin-bottom: 18px; }
form label { display: block; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
form input, form select, form textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; font-weight: 300; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
form input:focus, form select:focus, form textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 4px var(--sage-soft); }
form textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 12px; }
.form-status { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; display: none; }
.form-status.ok  { display: block; background: var(--sage-soft); color: var(--sage-deep); }
.form-status.err { display: block; background: #f6e1de; color: #9c4a3f; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: linear-gradient(165deg, #EFE7D8, #DEE7DD); text-align: center; padding-block: clamp(70px, 9vw, 120px); position: relative; overflow: hidden; }
.page-hero::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 50% 120%, rgba(126,155,134,.22), transparent 60%); }
.page-hero .wrap { position: relative; }
.page-hero p { max-width: 560px; margin: 1rem auto 0; }
.crumbs { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.crumbs a { color: var(--gold); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--sage-deep); color: #EEF2EC; text-align: center; border-radius: var(--radius); padding: clamp(40px, 6vw, 72px); position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 80% 0%, rgba(191,161,105,.30), transparent 50%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 520px; margin-inline: auto; margin-bottom: 1.8rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #C9CFC8; padding-block: clamp(54px, 7vw, 84px) 28px; }
.site-footer a { color: #C9CFC8; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); margin-bottom: 48px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer .brand span small { color: var(--gold-soft); }
.footer-grid h4 { color: #fff; font-family: var(--sans); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.2rem; }
.footer-grid ul { display: grid; gap: 10px; }
.footer-grid p { color: #9aa39a; font-size: .94rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .82rem; color: #8a938a; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Floating feathers (subtle ambient) ---------- */
.ambient { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.ambient svg { position: absolute; color: var(--gold); opacity: .12; animation: drift 16s ease-in-out infinite; }
.ambient svg:nth-child(1){ top: 12%; left: 8%; width: 40px; animation-delay: 0s; }
.ambient svg:nth-child(2){ top: 64%; left: 84%; width: 56px; animation-delay: -5s; opacity:.10; }
.ambient svg:nth-child(3){ top: 78%; left: 18%; width: 32px; animation-delay: -9s; }
@keyframes drift { 0%,100%{ transform: translateY(0) rotate(0); } 50%{ transform: translateY(-22px) rotate(8deg); } }

/* ---------- Misc ---------- */
.notice-bar { background: var(--gold); color: #fff; text-align: center; font-size: .82rem; letter-spacing: .04em; padding: 8px 16px; }
.notice-bar a { color: #fff; text-decoration: underline; }
.disclaimer { font-size: .82rem; color: var(--muted); }
