/* =====================================================
   NAMASTE HOME — Hero Only
   Paste into: Appearance > Customize > Additional CSS
   ===================================================== */

.nh2-wrap *, .nh2-wrap *::before, .nh2-wrap *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
.nh2-wrap {
  font-family: 'Jost', sans-serif;
  color: #111;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.nh2-wrap a { text-decoration: none; color: inherit; }

.nh2-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 32px 120px;
  overflow: hidden;
}
.nh2-hero::before, .nh2-hero::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  opacity: 0;
  animation: nh2FadeIn 1s ease 0.3s forwards;
}
.nh2-hero::before { top: 52px; left: 52px; border-top: 1px solid #111; border-left: 1px solid #111; }
.nh2-hero::after  { bottom: 52px; right: 52px; border-bottom: 1px solid #111; border-right: 1px solid #111; }
@media(max-width:600px){
  .nh2-hero::before { top: 24px; left: 24px; }
  .nh2-hero::after  { bottom: 24px; right: 24px; }
}

.nh2-hero-kicker {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.85rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 48px;
  opacity: 0;
  animation: nh2FadeUp 0.9s ease 0.4s forwards;
}

.nh2-hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.2rem, 9vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #111;
  max-width: 1000px;
  margin: 0 auto 28px;
  opacity: 0;
  animation: nh2FadeUp 1s ease 0.6s forwards;
}
.nh2-hero-headline em { font-style: italic; }

.nh2-vline {
  width: 1px; height: 52px;
  background: #111;
  margin: 0 auto 32px;
  opacity: 0;
  animation: nh2FadeIn 0.8s ease 0.95s forwards;
}

.nh2-hero-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  line-height: 2;
  text-transform: uppercase;
  color: #666;
  max-width: 380px;
  margin: 0 auto 56px;
  opacity: 0;
  animation: nh2FadeUp 0.9s ease 1.05s forwards;
}

/* Button — warm stone tone, readable at rest */
.nh2-btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  background: #6b6560;
  border: 1px solid #6b6560;
  padding: 18px 48px;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
  opacity: 0;
  animation: nh2FadeUp 0.9s ease 1.2s forwards;
}
.nh2-btn:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}
.nh2-btn span { position: relative; z-index: 1; }

/* Scroll cue */
.nh2-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0;
  animation: nh2FadeIn 1s ease 1.8s forwards;
}
.nh2-scroll-txt {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #bbb;
}
.nh2-scroll-bar {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, #bbb 0%, transparent 100%);
  animation: nh2Drop 2.2s ease-in-out 2s infinite;
}
@keyframes nh2Drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  46%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes nh2FadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes nh2FadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}



/* =====================================================
   NAMASTE HOME — Sections Block (below hero)
   Paste into: Appearance > Customize > Additional CSS
   Add this BELOW your existing hero CSS — do not replace it
   ===================================================== */

/* NOT JUST A CANDLE */
.nh2-why {
  background: #fff;
  padding: 120px 48px;
}
@media(max-width:768px){ .nh2-why { padding: 80px 24px; } }

.nh2-why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media(max-width:768px){
  .nh2-why-header { grid-template-columns: 1fr; gap: 28px; }
}

.nh2-why-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  color: #111;
}
.nh2-why-headline em { font-style: italic; }

.nh2-why-intro {
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 2;
  color: #666;
}

/* SECTION DIVIDER */
.nh2-section-divider {
  width: 40px;
  height: 1px;
  background: #ddd;
  margin: 0 auto;
}

/* HANDMADE ALWAYS */
.nh2-handmade {
  background: #faf9f7;
  padding: 120px 48px;
  text-align: center;
}
@media(max-width:768px){ .nh2-handmade { padding: 80px 24px; } }

.nh2-handmade-inner {
  max-width: 640px;
  margin: 0 auto;
}
.nh2-handmade-label {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #aaa;
  display: block;
  margin-bottom: 28px;
}
.nh2-handmade-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  color: #111;
  margin-bottom: 32px;
}
.nh2-handmade-headline em { font-style: italic; }
.nh2-handmade-rule {
  width: 1px;
  height: 48px;
  background: #ccc;
  margin: 0 auto 32px;
}
.nh2-handmade-body {
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 2;
  color: #666;
}

/* A WAY OF LIVING */
.nh2-living {
  background: #111;
  padding: 140px 48px;
  text-align: center;
}
@media(max-width:768px){ .nh2-living { padding: 100px 24px; } }

.nh2-living-label {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #555;
  display: block;
  margin-bottom: 36px;
}
.nh2-living-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.2;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
}

/* SCROLL REVEAL */
.nh2-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.nh2-reveal.nh2-in { opacity: 1; transform: translateY(0); }
.nh2-reveal-delay-1 { transition-delay: 0.15s; }


a[href="https://woocommerce.com"] {
  display: none !important;
}