/* ============================================================
   Priscila Hern — Zen luxury stylesheet
   Palette: bone / cream / sand · ink (warm black) · champagne gold
   ============================================================ */

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }
body  { background-color: #faf6ee; color: #1a1814; }

/* ---- Subtle paper texture (CSS only, very soft) ---- */
.paper-texture {
  background-image:
    radial-gradient(circle at 25% 25%, rgba(176,140,82,.05) 0, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(26,24,20,.04) 0, transparent 1px);
  background-size: 4px 4px, 6px 6px;
}

/* ---- Nav ---- */
#navbar.scrolled {
  background: rgba(250,246,238,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid #e6dac3;
}
.nav-link { position: relative; transition: color .3s; }
.nav-link:hover { color: #b08c52; }
.nav-link::after {
  content:''; position:absolute; left:0; bottom:-6px; height:1px; width:0;
  background: #b08c52; transition: width .35s;
}
.nav-link:hover::after { width: 100%; }

/* ---- Ensō mark (small zen circle as logo) ---- */
.enso-mark {
  display:inline-block; width: 2.4rem; height: 2.4rem;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><circle cx='32' cy='32' r='25' fill='none' stroke='%23b08c52' stroke-width='3' stroke-linecap='round' stroke-dasharray='140 18' transform='rotate(-30 32 32)'/></svg>") no-repeat center / contain;
}

/* ---- Eyebrow / fine label ---- */
.eyebrow {
  display:flex; align-items:center; gap:.7rem;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: #4a4439; margin-bottom: 1.5rem; font-weight: 500;
}
.eyebrow .hairline,
.eyebrow .hairline-lead { display:inline-block; height: 1px; background: #b08c52; }
.eyebrow .hairline       { width: 1.2rem; opacity: .6; }
.eyebrow .hairline-lead  { width: 2.5rem; }

/* ---- Hero meta inline stat ---- */
.hero-meta {
  display:flex; align-items:baseline; gap:.85rem;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: #6b6354;
}
.hero-meta-num {
  font-family:'Cormorant Garamond', serif; font-style: italic; font-weight: 500;
  font-size: 1.85rem; line-height: 1; color: #b08c52; letter-spacing: 0;
}

/* ---- Number pills ---- */
.num-pill-light {
  display:inline-flex; align-items:center; justify-content:center;
  min-width: 2.1rem; height: 2.1rem; padding: 0 .55rem; border-radius: 999px;
  font-family: 'Cormorant Garamond', serif; font-weight: 500; font-style: italic;
  background: #faf6ee; color: #1a1814;
  border: 1px solid rgba(176,140,82,.45);
  letter-spacing: .04em;
}

.card-num {
  position: absolute; top: 1rem; left: 1rem;
  display:inline-flex; align-items:center; justify-content:center;
  min-width: 2rem; height: 2rem; padding: 0 .55rem; border-radius: 999px;
  font-family: 'Cormorant Garamond', serif; font-weight: 500; font-style: italic;
  background: rgba(250,246,238,.92); color: #1a1814;
  border: 1px solid rgba(176,140,82,.45); backdrop-filter: blur(4px);
  font-size: .9rem; letter-spacing: .04em;
}

/* ---- Buttons ---- */
.btn-dark {
  display: inline-flex; align-items:center; justify-content:center;
  background: #1a1814; color: #faf6ee; font-weight: 500;
  border-radius: 999px; border: 1px solid #1a1814;
  transition: transform .35s ease, background-color .35s, color .35s, box-shadow .35s;
  box-shadow: 0 8px 24px -10px rgba(26,24,20,.35);
}
.btn-dark:hover {
  transform: translateY(-2px); background: #2b261f;
  box-shadow: 0 14px 32px -10px rgba(26,24,20,.45);
}
.btn-outline {
  display:inline-flex; align-items:center; justify-content:center;
  background: transparent; color: #1a1814; font-weight: 500;
  border-radius: 999px; border: 1px solid #1a1814;
  transition: all .35s ease;
}
.btn-outline:hover { background: #1a1814; color: #faf6ee; transform: translateY(-2px); }
.btn-gold {
  display:inline-flex; align-items:center; justify-content:center;
  background: #b08c52; color: #faf6ee; font-weight: 500;
  border-radius: 999px; border: 1px solid #b08c52;
  transition: all .35s ease;
}
.btn-gold:hover { background: #8d6f3e; transform: translateY(-2px); }

/* ---- Stat card ---- */
.stat-card {
  padding: 1.6rem 1.2rem; border-radius: 1rem;
  background: #ffffff; border: 1px solid #e6dac3;
  text-align: left; transition: transform .3s, border-color .3s, box-shadow .3s;
}
.stat-card:hover { transform: translateY(-4px); border-color: rgba(176,140,82,.55); box-shadow: 0 12px 30px -16px rgba(26,24,20,.18); }

/* ---- Service cards ---- */
.service-card {
  display:flex; flex-direction:column;
  background: #ffffff; border: 1px solid #e6dac3;
  border-radius: 1.25rem; overflow: hidden;
  transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease;
  position: relative; min-height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(176,140,82,.55);
  box-shadow: 0 30px 60px -28px rgba(26,24,20,.22);
}
.service-card--featured {
  background:
    radial-gradient(circle at 80% 0%, rgba(176,140,82,.55), transparent 60%),
    linear-gradient(160deg, #2b261f 0%, #1a1814 100%);
  border-color: #1a1814;
  color: #faf6ee;
}
.service-card--featured:hover { box-shadow: 0 30px 60px -28px rgba(26,24,20,.5); }

/* ---- Step (process) ---- */
.step {
  position: relative; padding: 2.25rem 1.75rem; background: #ffffff;
  transition: background-color .35s;
}
.step:hover { background: #faf6ee; }
.step-num {
  display:inline-block; font-family:'Cormorant Garamond', serif; font-style:italic;
  font-weight: 400; font-size: 2.2rem; color: #b08c52; line-height:1; margin-bottom: 1rem;
}
.step-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 1.4rem; color: #1a1814; margin-bottom: .5rem;
}
.step-text  { font-size: .95rem; color: #4a4439; line-height: 1.6; font-weight: 300; }

/* ---- Pajama cards ---- */
.pajama-card {
  position: relative; overflow: hidden; border-radius: 1.25rem;
  border: 1px solid #e6dac3; aspect-ratio: 4 / 5; background: #fff;
  transition: box-shadow .35s, border-color .35s;
}
.pajama-card:hover { border-color: rgba(176,140,82,.55); box-shadow: 0 24px 48px -24px rgba(26,24,20,.22); }
.pajama-card img { width:100%; height:100%; object-fit: cover; transition: transform .8s ease; }
.pajama-card:hover img { transform: scale(1.06); }
.pajama-card figcaption {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem;
  display: flex; align-items: center; gap: .85rem;
  padding: .65rem .9rem; border-radius: 999px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border: 1px solid #e6dac3; color: #1a1814;
}
.pajama-card figcaption .serif {
  font-family: 'Cormorant Garamond', serif; font-style: normal; font-size: 1.05rem; color: #1a1814;
}

/* ---- Testimonials ---- */
.testimonial {
  position: relative; padding: 2.25rem 1.75rem 1.75rem;
  background: #ffffff; border: 1px solid #e6dac3;
  border-radius: 1.25rem;
  transition: transform .35s, border-color .35s, box-shadow .35s;
}
.testimonial:hover { transform: translateY(-4px); border-color: rgba(176,140,82,.5); box-shadow: 0 24px 48px -24px rgba(26,24,20,.18); }
.testimonial p {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400;
  font-size: 1.2rem; color: #2b261f; line-height: 1.55;
}
.testimonial footer {
  margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid #e6dac3;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: #6b6354;
}
.testimonial footer strong { color: #1a1814; font-weight: 600; }
.quote-mark { width: 28px; height: 28px; fill: #b08c52; opacity: .55; margin-bottom: .85rem; }

/* ---- Press chips ---- */
.press-chip {
  display: block; padding: 1.4rem 1rem; text-align: center;
  border-radius: 1rem; background: #ffffff; border: 1px solid #e6dac3;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.4rem;
  color: #1a1814; transition: all .35s; line-height: 1.2;
}
.press-chip span {
  display: block; margin-bottom: .35rem; font-family: 'Manrope', sans-serif; font-style: normal;
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: #6b6354; font-weight: 500;
}
.press-chip:hover {
  border-color: rgba(176,140,82,.55); transform: translateY(-3px);
  color: #b08c52; box-shadow: 0 16px 36px -20px rgba(26,24,20,.2);
}

/* ---- Form ---- */
.form-label {
  display:block; font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: #4a4439; margin-bottom: .55rem; font-weight: 500;
}
.form-input {
  width: 100%; padding: .9rem 1.1rem; border-radius: .85rem;
  background: #faf6ee; border: 1px solid #e6dac3; color: #1a1814;
  font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 400;
  transition: border-color .25s, box-shadow .25s, background-color .25s;
}
.form-input::placeholder { color: rgba(26,24,20,.35); }
.form-input:focus {
  outline: none; border-color: #b08c52; background: #ffffff;
  box-shadow: 0 0 0 4px rgba(176,140,82,.12);
}
select.form-input {
  appearance:none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='%23b08c52'><path d='M6 8L0 0h12z'/></svg>"),
    linear-gradient(0deg, #faf6ee, #faf6ee);
  background-repeat: no-repeat;
  background-position: right 1.1rem center, 0 0;
  background-size: 10px, 100% 100%;
}

/* ---- Direct contact pills ---- */
.contact-direct {
  display:block; padding: 1.5rem 1.25rem; border-radius: 1rem;
  background: #ffffff; border: 1px solid #e6dac3;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.25rem;
  color: #1a1814; transition: all .35s; line-height: 1.2;
}
.contact-direct span {
  display:block; font-family:'Manrope', sans-serif; font-style: normal; font-weight: 500;
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: #6b6354; margin-bottom: .35rem;
}
.contact-direct:hover { border-color: rgba(176,140,82,.55); transform: translateY(-3px); color: #b08c52; }

/* Accent variant — used for the WhatsApp pill in the contact block */
.contact-direct--accent {
  background: #1a1814; color: #faf6ee; border-color: #1a1814;
}
.contact-direct--accent span { color: rgba(250,246,238,.6); }
.contact-direct--accent:hover { background: #2a261f; border-color: #2a261f; color: #f5e6c4; }

/* ---- Floating WhatsApp button (always visible, bottom-right) ---- */
.wa-float {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 60;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.25rem .85rem 1rem;
  border-radius: 999px;
  background: #25D366; color: #ffffff;
  box-shadow: 0 18px 38px -10px rgba(37,211,102,.55), 0 6px 14px -6px rgba(0,0,0,.25);
  font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: .04em; line-height: 1;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  text-decoration: none;
}
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-float:hover {
  background: #1ebe5a; transform: translateY(-2px);
  box-shadow: 0 22px 44px -12px rgba(37,211,102,.65), 0 8px 18px -6px rgba(0,0,0,.3);
  color: #ffffff;
}
.wa-float-label { display: inline; }
@media (max-width: 480px) {
  .wa-float { right: .9rem; bottom: .9rem; padding: .75rem; }
  .wa-float-label { display: none; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ---- Footer heading ---- */
.footer-h {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: #b08c52; margin-bottom: 1rem; font-weight: 600;
}

/* ---- Ticker ---- */
.ticker { display: inline-flex; animation: tickerScroll 50s linear infinite; }
@keyframes tickerScroll { 0%{transform: translateX(0)} 100%{transform: translateX(-50%)} }
.ticker-dot { display:inline-block; width:.32rem; height:.32rem; border-radius:999px; background:#b08c52; opacity:.55; }

/* ---- Slow bounce (hero scroll cue) ---- */
@keyframes bounceSlow { 0%,100%{transform: translateY(0)} 50%{transform: translateY(8px)} }
.animate-bounce-slow { animation: bounceSlow 2.4s ease-in-out infinite; }

/* ---- Form status ---- */
.form-status-success {
  background: #f1ead7; border: 1px solid #b08c52; color: #2b261f;
  padding: 1rem 1.25rem; border-radius: .75rem; text-align: center; font-weight: 500;
}
.form-status-error {
  background: #f5e0db; border: 1px solid #c47a6c; color: #5a2c22;
  padding: 1rem 1.25rem; border-radius: .75rem; text-align: center;
}

/* ---- Responsive niceties ---- */
@media (max-width: 1023px) {
  /* Bring the floating quote/badges into normal flow on tablet/mobile to avoid clipping/overflow */
  section#about figure.absolute,
  section#about svg.absolute { position: static !important; margin-top: 1.25rem; max-width: 100%; }
}
@media (max-width: 768px) {
  h1 { letter-spacing: -0.01em; }
  .testimonial p { font-size: 1.05rem; }
  .step { padding: 1.75rem 1.25rem; }
}

/* ---- Tighten ticker text spacing ---- */
.ticker > span { padding-right: 0; padding-left: 0; }
.ticker > span > span:last-child { margin: 0 1.5rem; }

/* ---- Reveal-on-scroll (only when JS has tagged the body) ---- */
body.has-reveal .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease-out, transform .8s ease-out;
  will-change: opacity, transform;
}
body.has-reveal .reveal.reveal-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  body.has-reveal .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
