/* ============================================================
   Bright On Reiki — Brand Stylesheet
   Palette: warm ivory / blush / coral / deep rose / soft gold
   Type: Fraunces (display serif) + Cormorant Garamond italic (script accent) + Jost (body)
   ============================================================ */

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

:root {
  --ivory: #FBF3EC;
  --ivory-deep: #F5E9DF;
  --blush: #F1DAD1;
  --blush-soft: #F7E4DC;
  --coral: #DD7F63;
  --coral-deep: #C4634A;
  --rose-deep: #7C453E;
  --charcoal: #3A2C29;
  --charcoal-soft: #6B5650;
  --gold: #C9A063;
  --line: rgba(124, 69, 62, 0.16);

  --font-display: "Fraunces", serif;
  --font-script: "Cormorant Garamond", serif;
  --font-body: "Jost", sans-serif;

  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

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

a { color: inherit; text-decoration: none; }

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--rose-deep);
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.08; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1.15; }
h3 { font-size: 1.25rem; }

.script {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 500;
  color: var(--coral-deep);
}

p { margin: 0 0 1em; color: var(--charcoal-soft); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--coral-deep);
  font-weight: 500;
  margin-bottom: 0.9em;
  display: inline-block;
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color .25s ease;
}
.btn-primary {
  background: var(--coral);
  color: var(--ivory);
  box-shadow: 0 8px 20px -8px rgba(196, 99, 74, 0.55);
}
.btn-primary:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(196, 99, 74, 0.6); }
.btn-ghost {
  background: transparent;
  border-color: var(--rose-deep);
  color: var(--rose-deep);
}
.btn-ghost:hover { background: var(--rose-deep); color: var(--ivory); transform: translateY(-2px); }

/* -------- Header -------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 243, 236, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
}
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo .word {
  font-family: var(--font-display);
  font-size: 1.32rem;
  letter-spacing: 0.06em;
  color: var(--rose-deep);
  font-weight: 600;
}
.logo .tag {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--coral-deep);
  font-size: 0.95rem;
  margin-top: 2px;
}
nav.main-nav { display: flex; align-items: center; gap: 34px; }
nav.main-nav a {
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: var(--charcoal-soft);
  position: relative;
  padding: 4px 0;
}
nav.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--coral-deep); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
nav.main-nav a:hover::after, nav.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
nav.main-nav a[aria-current="page"] { color: var(--rose-deep); font-weight: 500; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; }

@media (max-width: 800px) {
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 32px 34px;
    gap: 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 34px -20px rgba(124, 69, 62, 0.3);
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a { font-size: 1.1rem; }
  .nav-toggle { display: block; background: none; border: none; cursor: pointer; padding: 6px; }
  .nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--rose-deep); margin: 5px 0; }
  .nav-cta .btn-primary { display: none; }
}

/* -------- Hero -------- */
.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 20%, var(--blush-soft), var(--ivory) 60%);
}
.hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
@media (max-width: 860px) { .hero .wrap { grid-template-columns: 1fr; } .hero-art { order: -1; } }

.hero h1 { max-width: 12ch; }
.hero-sub { max-width: 46ch; font-size: 1.05rem; }
.hero-ctas { display: flex; gap: 16px; margin-top: 30px; flex-wrap: wrap; }

.hero-art { position: relative; display: flex; align-items: center; justify-content: center; }
.pulse-ring {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(221,127,99,0.28), rgba(221,127,99,0) 70%);
  animation: breathe 6s ease-in-out infinite;
}
@keyframes breathe { 0%,100% { transform: scale(0.92); opacity: 0.7; } 50% { transform: scale(1.08); opacity: 1; } }

.hero-photo-frame {
  position: relative; width: 100%; max-width: 460px; aspect-ratio: 1/1;
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 24px 50px -20px rgba(124, 69, 62, 0.45);
  border: 6px solid var(--ivory);
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }

/* -------- About photo layout -------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: flex-start; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo {
  position: sticky; top: 110px;
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 20px 44px -18px rgba(124, 69, 62, 0.4);
}
.about-photo img { width: 100%; display: block; }
@media (max-width: 800px) { .about-photo { position: static; } }

/* -------- Footer social / Instagram -------- */
.footer-social { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.footer-social img { width: 54px; height: 54px; border-radius: 10px; }
.footer-social a { font-size: 0.86rem; color: rgba(251,243,236,0.85); }
.footer-social a:hover { color: var(--ivory); text-decoration: underline; }

/* -------- Sections -------- */
section { padding: 76px 0; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin: 0 0 44px; text-align: left; }

.divider {
  width: 46px; height: 1px; background: var(--gold); margin: 26px auto;
}
.divider.left { margin: 20px 0; }

/* -------- Benefit / icon grid -------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
@media (max-width: 760px) { .benefits { grid-template-columns: 1fr; } }
.benefit { text-align: center; padding: 10px; }
.benefit .icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--coral);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 10px 22px -10px rgba(196, 99, 74, 0.55);
}
.benefit .icon svg { width: 28px; height: 28px; stroke: var(--ivory); fill: none; }
.benefit h3 { margin-bottom: 8px; }
.benefit p { font-size: 0.95rem; }

/* -------- Panel (Distance Reiki callout etc) -------- */
.panel {
  background: linear-gradient(135deg, var(--rose-deep), var(--coral-deep));
  color: var(--ivory);
  border-radius: 22px;
  padding: 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
@media (max-width: 760px) { .panel { grid-template-columns: 1fr; padding: 36px 28px; } }
.panel h2 { color: var(--ivory); }
.panel p { color: rgba(251,243,236,0.86); }
.panel .btn-ghost { border-color: var(--ivory); color: var(--ivory); }
.panel .btn-ghost:hover { background: var(--ivory); color: var(--rose-deep); }

/* -------- Cards (services) -------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; }
.card {
  background: var(--ivory-deep);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 30px;
  display: flex; flex-direction: column; height: 100%;
}
.card .price { font-family: var(--font-display); color: var(--coral-deep); font-size: 1.5rem; margin: 6px 0 14px; }
.card ul { list-style: none; padding: 0; margin: 0 0 24px; }
.card ul li {
  font-size: 0.92rem; color: var(--charcoal-soft); padding-left: 20px; position: relative; margin-bottom: 8px;
}
.card ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.card .btn { margin-top: auto; align-self: flex-start; }

/* -------- Testimonial -------- */
.testimonial {
  max-width: 720px; margin: 0 auto; text-align: center;
}
.testimonial blockquote {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 1.5rem; color: var(--rose-deep); margin: 0 0 20px; line-height: 1.4;
}
.testimonial cite { font-style: normal; font-size: 0.86rem; letter-spacing: 0.04em; color: var(--charcoal-soft); }

/* -------- Steps (booking) -------- */
.steps { counter-reset: step; display: grid; gap: 26px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: flex-start; }
.step .num {
  counter-increment: step; font-family: var(--font-display); font-size: 1.1rem; color: var(--ivory);
  background: var(--coral-deep); width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step .num::before { content: counter(step); }

/* -------- Forms -------- */
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 0.84rem; letter-spacing: 0.03em; color: var(--rose-deep); margin-bottom: 8px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--ivory-deep); font-family: var(--font-body); font-size: 0.95rem; color: var(--charcoal);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--coral); outline-offset: 1px; border-color: transparent;
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.84rem; color: var(--charcoal-soft); margin-top: 14px; }
.form-status { display: none; padding: 14px 18px; border-radius: 10px; background: var(--blush-soft); color: var(--rose-deep); font-size: 0.9rem; margin-top: 18px; }
.form-status.show { display: block; }

/* -------- Info list (contact) -------- */
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: 14px; margin-bottom: 20px; }
.info-list .icon-sm {
  width: 38px; height: 38px; border-radius: 50%; background: var(--blush);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-list .icon-sm svg { width: 17px; height: 17px; stroke: var(--rose-deep); fill: none; }
.info-list strong { display: block; color: var(--rose-deep); font-size: 0.9rem; }
.info-list span, .info-list a { font-size: 0.92rem; color: var(--charcoal-soft); }

/* -------- Footer -------- */
footer.site-footer {
  background: var(--rose-deep);
  color: rgba(251,243,236,0.82);
  padding: 56px 0 30px;
  margin-top: 40px;
}
footer .wrap { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; }
@media (max-width: 700px) { footer .wrap { grid-template-columns: 1fr; gap: 30px; } }
footer h4 { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.76rem; color: var(--ivory); margin: 0 0 16px; font-weight: 500; }
footer .logo .word, footer .logo .tag { color: var(--ivory); }
footer p { color: rgba(251,243,236,0.72); font-size: 0.9rem; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 10px; }
footer ul a { font-size: 0.9rem; color: rgba(251,243,236,0.78); }
footer ul a:hover { color: var(--ivory); }
.footer-bottom {
  max-width: var(--max-width); margin: 40px auto 0; padding: 20px 32px 0;
  border-top: 1px solid rgba(251,243,236,0.16);
  font-size: 0.78rem; color: rgba(251,243,236,0.55);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* -------- Utility -------- */
.center { text-align: center; }
.bg-blush { background: var(--blush-soft); }
.lotus-divider { display: flex; justify-content: center; padding: 10px 0 0; opacity: 0.55; }

/* -------- Contact page layout -------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: flex-start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
