/* ===========================
   BLOOM HAVEN — MAIN STYLES
   =========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:        #1A3C2E;
  --forest-mid:    #2D6A4F;
  --forest-light:  #4A9270;
  --cream:         #FBF7F0;
  --cream-dark:    #F0E8DB;
  --gold:          #C9A84C;
  --gold-light:    #E8C96B;
  --terracotta:    #C0614B;
  --terracotta-lt: #D4735E;
  --black:         #111111;
  --text-dark:     #1A2E25;
  --text-mid:      #4A5A52;
  --text-light:    #8A9A92;
  --radius:        16px;
  --radius-sm:     8px;
  --shadow:        0 4px 24px rgba(26,60,46,0.10);
  --shadow-lg:     0 16px 56px rgba(26,60,46,0.16);
  --trans:         0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: 'Inter', sans-serif; }

/* ===== CONTAINER ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ===== SECTION ===== */
.section { padding: 100px 0; }
.section--alt { background: var(--cream-dark); }

.section__header { text-align: center; margin-bottom: 64px; }

.section__label {
  display: inline-block;
  background: rgba(201,168,76,0.14);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--forest);
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn--primary {
  background: var(--terracotta);
  color: white;
  box-shadow: 0 4px 18px rgba(192,97,75,0.30);
}
.btn--primary:hover {
  background: var(--terracotta-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192,97,75,0.40);
}

.btn--outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn--outline:hover { background: var(--forest); color: white; }

.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(251,247,240,0.45);
}
.btn--outline-light:hover {
  background: rgba(251,247,240,0.12);
  border-color: var(--cream);
}

.btn--resource {
  background: var(--forest);
  color: white;
  width: 100%;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  border: none;
}
.btn--resource:hover { background: var(--forest-mid); transform: translateY(-1px); }

.btn--premium {
  background: transparent;
  color: var(--text-light);
  width: 100%;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  border: 2px dashed var(--gold);
  cursor: not-allowed;
}

.btn--full { width: 100%; }

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: linear-gradient(to bottom, rgba(8,22,14,0.55) 0%, rgba(8,22,14,0) 100%);
  transition: var(--trans);
}
.nav--scrolled {
  background: rgba(251,247,240,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(26,60,46,0.08);
  padding: 12px 0;
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-img {
  height: 60px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 0 0 1.5px rgba(212,175,55,0.55), 0 3px 18px rgba(0,0,0,0.35);
  filter: brightness(1.05) contrast(1.05);
  transition: box-shadow 0.3s ease, filter 0.3s ease;
}
.nav--scrolled .nav__logo-img {
  box-shadow: 0 0 0 1.5px rgba(212,175,55,0.4), 0 2px 12px rgba(26,60,46,0.18);
  filter: brightness(1) contrast(1.05) saturate(1.05);
}
.nav__logo-text { display: flex; flex-direction: column; }
.nav__logo-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--forest); }
.nav__logo-sub { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }

.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; }

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(251,247,240,0.9);
  transition: var(--trans);
}
.nav--scrolled .nav__link { color: var(--text-dark); }
.nav__link:hover { color: var(--gold); }

.nav__link--cta {
  background: var(--terracotta);
  color: white !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
}
.nav__link--cta:hover { background: var(--terracotta-lt) !important; color: white !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: var(--trans);
}
.nav--scrolled .nav__toggle span { background: var(--forest); }

/* ===========================
   HERO
   =========================== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background: #0A1C10;
}

.hero__bg {
  position: absolute; inset: 0;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.38;
  pointer-events: none;
}

.hero__ray {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 88% 10%, rgba(212,175,55,0.22) 0%, rgba(212,175,55,0.06) 30%, transparent 60%),
    radial-gradient(ellipse at 10% 55%, rgba(74,146,112,0.12) 0%, transparent 50%),
    linear-gradient(160deg, rgba(8,20,12,0.72) 0%, rgba(15,38,26,0.55) 50%, rgba(20,50,35,0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 160px 28px 72px;
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
  min-height: calc(100vh - 88px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.28);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 36px;
  animation: fadeDown 0.8s ease both;
}

.hero__badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero__logo-wrap { margin-bottom: 36px; animation: fadeUp 0.8s 0.15s ease both; }
.hero__logo {
  height: 130px; width: auto; margin: 0 auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.35));
}

.hero__headline {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--cream);
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.25s ease both;
}
.hero__headline em { color: var(--gold-light); font-style: italic; }

.hero__intro {
  font-size: 1.08rem;
  color: rgba(251,247,240,0.78);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.75;
  animation: fadeUp 0.8s 0.35s ease both;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeUp 0.8s 0.45s ease both;
}

.hero__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeUp 0.8s 0.55s ease both;
}
.hero__tagline-heart {
  color: var(--gold);
  font-style: normal;
  font-size: 0.85rem;
}

/* Wave bottom transition */
.hero__wave {
  position: relative;
  z-index: 3;
  margin-top: auto;
  line-height: 0;
}
.hero__wave svg {
  display: block;
  width: 100%;
  height: auto;
}
.hero__wave-icon {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 16px rgba(26,60,46,0.18);
  z-index: 4;
}

/* ===========================
   ABOUT
   =========================== */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.about__intro {
  font-size: 1.08rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--cream-dark);
}

.about__credentials { display: flex; flex-direction: column; gap: 20px; }

.credential {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--cream-dark);
  border-radius: var(--radius);
  transition: var(--trans);
}
.credential:hover {
  background: white;
  box-shadow: var(--shadow);
  transform: translateX(6px);
}

.credential__icon {
  font-size: 1.4rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26,60,46,0.07);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.credential__body h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 5px;
}
.credential__body p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.55; }

.about__card {
  background: var(--forest);
  color: var(--cream);
  padding: 44px;
  border-radius: var(--radius);
  position: sticky;
  top: 96px;
  box-shadow: var(--shadow-lg);
}

.about__quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--cream);
  margin-bottom: 32px;
  padding-left: 28px;
  position: relative;
}
.about__quote::before {
  content: '"';
  position: absolute; left: 0; top: -10px;
  font-size: 3.5rem; color: var(--gold);
  font-style: normal; line-height: 1;
  font-family: 'Playfair Display', serif;
}

.about__divider { height: 1px; background: rgba(201,168,76,0.25); margin-bottom: 32px; }

.about__values { display: flex; flex-direction: column; gap: 13px; }
.about__value {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.875rem;
  color: rgba(251,247,240,0.82);
}
.about__value-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===========================
   SERVICES
   =========================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--trans);
  border: 1px solid rgba(26,60,46,0.05);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--trans);
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { transform: scaleX(1); }

.service-card__icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.service-card__title {
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: 10px;
}
.service-card__desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 20px; }
.service-card__link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--terracotta);
  transition: var(--trans);
}
.service-card__link:hover { color: var(--forest); }

/* ===========================
   RESOURCES
   =========================== */
.resources__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.resource-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: var(--trans);
  position: relative;
  border: 1px solid rgba(26,60,46,0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.resource-card--premium { border: 1.5px dashed var(--gold); background: rgba(201,168,76,0.025); }
.resource-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.resource-card__badge {
  position: absolute; top: 16px; right: 16px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.resource-card__badge--free { background: rgba(45,106,79,0.1); color: var(--forest-mid); }
.resource-card__badge--premium { background: rgba(201,168,76,0.15); color: var(--gold); }

.resource-card__icon { font-size: 2rem; }
.resource-card__title { font-size: 1rem; color: var(--forest); }
.resource-card__desc { font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; flex: 1; }
.resource-card__meta { font-size: 0.74rem; color: var(--text-light); margin-bottom: 4px; }

/* ===========================
   WELLNESS TOOLS
   =========================== */
.tools__tabs {
  display: flex;
  gap: 6px;
  background: white;
  padding: 8px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tools__tab {
  flex: 1;
  min-width: 120px;
  padding: 12px 18px;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--trans);
}
.tools__tab--active { background: var(--forest); color: white; }
.tools__tab:hover:not(.tools__tab--active) { background: var(--cream-dark); }

.tools__panel { display: none; animation: fadeUp 0.35s ease both; }
.tools__panel--active { display: block; }

/* --- BREATHING --- */
.breathing { text-align: center; max-width: 520px; margin: 0 auto; }

.breathing__selector { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.breathing__type {
  padding: 8px 20px;
  border: 2px solid var(--forest);
  background: transparent;
  color: var(--forest);
  border-radius: 100px;
  font-size: 0.84rem; font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
}
.breathing__type--active { background: var(--forest); color: white; }

.breathing__info {
  font-size: 0.88rem;
  color: var(--text-mid);
  background: white;
  border-left: 3px solid var(--gold);
  padding: 14px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 44px;
  text-align: left;
}

.breathing__visual {
  width: 200px; height: 200px;
  margin: 0 auto 44px;
  position: relative;
}

.breathing__circle {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(74,146,112,0.22), rgba(26,60,46,0.1));
  border: 2px solid rgba(45,106,79,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: transform 1s ease, box-shadow 1s ease;
  position: relative;
}

.breathing__circle-ring {
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  animation: ripple 3s ease infinite;
}

.breathing__circle-inner { text-align: center; }
.breathing__text {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--forest);
}
.breathing__count {
  display: block;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--forest);
  min-height: 52px;
  line-height: 1.2;
}

.breathing__controls { display: flex; gap: 16px; justify-content: center; }

/* --- GROUNDING --- */
.grounding { max-width: 680px; margin: 0 auto; }
.grounding__title { font-size: 1.5rem; color: var(--forest); text-align: center; margin-bottom: 8px; }
.grounding__intro { text-align: center; color: var(--text-mid); margin-bottom: 40px; font-size: 0.95rem; }

.grounding__steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }

.grounding__step {
  display: flex; gap: 20px; align-items: flex-start;
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.grounding__num {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--forest); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 600;
}

.grounding__body h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  color: var(--forest); margin-bottom: 4px;
}
.grounding__body p { font-size: 0.82rem; color: var(--text-mid); margin-bottom: 10px; }

.grounding__input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.85rem;
  color: var(--text-dark); background: var(--cream);
  resize: none; height: 60px;
  transition: var(--trans);
}
.grounding__input:focus { outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(26,60,46,0.07); }

/* --- JOURNAL --- */
.journal { max-width: 680px; margin: 0 auto; }

.journal__prompt-area {
  background: var(--forest);
  padding: 32px 36px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.journal__prompt-label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.journal__prompt {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-style: italic;
  line-height: 1.55; color: var(--cream);
}
.journal__new-prompt {
  margin-top: 16px;
  background: rgba(251,247,240,0.1);
  border: 1px solid rgba(251,247,240,0.2);
  color: rgba(251,247,240,0.8);
  font-size: 0.78rem;
  padding: 6px 16px; border-radius: 100px;
  cursor: pointer; transition: var(--trans);
}
.journal__new-prompt:hover { background: rgba(251,247,240,0.18); }

.journal__textarea {
  width: 100%; min-height: 220px;
  padding: 20px 22px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: 0.94rem;
  color: var(--text-dark); background: white;
  resize: vertical; line-height: 1.7;
  transition: var(--trans);
  margin-bottom: 16px;
}
.journal__textarea:focus { outline: none; border-color: var(--forest); box-shadow: 0 0 0 4px rgba(26,60,46,0.06); }

.journal__actions { display: flex; align-items: center; gap: 14px; }
.journal__word-count { font-size: 0.78rem; color: var(--text-light); margin-left: auto; }

/* --- CHAT --- */
.wellness-chat {
  max-width: 580px; margin: 0 auto;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.wellness-chat__header {
  background: var(--forest);
  padding: 18px 24px;
  display: flex; align-items: center; gap: 12px;
}
.wellness-chat__avatar {
  width: 42px; height: 42px;
  background: rgba(201,168,76,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.wellness-chat__name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--cream); font-weight: 600;
}
.wellness-chat__status { font-size: 0.72rem; color: rgba(251,247,240,0.6); }

.wellness-chat__messages {
  height: 300px; overflow-y: auto;
  padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
  background: var(--cream);
}
.wellness-chat__messages::-webkit-scrollbar { width: 4px; }
.wellness-chat__messages::-webkit-scrollbar-track { background: transparent; }
.wellness-chat__messages::-webkit-scrollbar-thumb { background: var(--cream-dark); border-radius: 4px; }

.chat-msg { display: flex; }
.chat-msg--user { justify-content: flex-end; }

.chat-msg__bubble {
  max-width: 82%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 0.875rem; line-height: 1.5;
}
.chat-msg--bot .chat-msg__bubble {
  background: white; color: var(--text-dark);
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.chat-msg--user .chat-msg__bubble {
  background: var(--forest); color: white;
  border-bottom-right-radius: 4px;
}

.wellness-chat__input-area {
  display: flex; gap: 8px;
  padding: 14px 20px;
  background: white;
  border-top: 1px solid var(--cream-dark);
}
.wellness-chat__input {
  flex: 1;
  padding: 11px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 100px;
  font-size: 0.875rem; color: var(--text-dark);
  transition: var(--trans);
}
.wellness-chat__input:focus { outline: none; border-color: var(--forest); }

.wellness-chat__send {
  padding: 11px 22px;
  background: var(--forest); color: white;
  border: none; border-radius: 100px;
  font-size: 0.875rem; font-weight: 600;
  cursor: pointer; transition: var(--trans);
}
.wellness-chat__send:hover { background: var(--forest-mid); }

/* Typing indicator */
.chat-msg--typing .chat-msg__bubble {
  display: flex; align-items: center; gap: 5px;
  padding: 14px 18px;
}
.typing-dot {
  width: 7px; height: 7px;
  background: var(--text-light);
  border-radius: 50%;
  animation: typingBounce 1.2s ease infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%           { transform: translateY(-6px); opacity: 1; }
}

.wellness-chat__disclaimer {
  font-size: 0.72rem; color: var(--text-light);
  text-align: center;
  padding: 10px 20px;
  border-top: 1px solid var(--cream-dark);
  background: white;
}

/* ===========================
   TESTIMONIALS CTA / GOOGLE REVIEW
   =========================== */
.testimonials__cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(26,60,46,0.1);
}
.testimonials__cta-text {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 18px;
}
.testimonials__review-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--forest);
  border: 2px solid rgba(26,60,46,0.2);
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--trans);
  box-shadow: 0 2px 12px rgba(26,60,46,0.08);
}
.testimonials__review-btn:hover {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,60,46,0.18);
}
.testimonials__review-btn:hover svg path { fill: white; }

/* ===========================
   FAQ
   =========================== */
.faq-section { background: var(--cream); }

.faq__list {
  max-width: 760px;
  margin: 48px auto 0;
}

.faq__item {
  border-bottom: 1px solid rgba(26,60,46,0.1);
}
.faq__item:first-child { border-top: 1px solid rgba(26,60,46,0.1); }

.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  gap: 16px;
  transition: color 0.2s;
}
.faq__q:hover { color: var(--forest-mid); }

.faq__arrow {
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  display: inline-block;
  transition: transform 0.25s ease;
  color: var(--gold);
  line-height: 1;
}

.faq__a {
  display: none;
  padding: 0 0 22px;
  color: var(--text);
  line-height: 1.75;
  font-size: 0.97rem;
}
.faq__a p { margin-bottom: 8px; }

.faq__list-items {
  list-style: none;
  padding: 10px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq__list-items li::before {
  content: "•";
  color: var(--gold);
  font-weight: 700;
  margin-right: 8px;
}

.faq__item--open .faq__a { display: block; }
.faq__item--open .faq__arrow { transform: rotate(45deg); }

/* ===========================
   BOOKING
   =========================== */
.booking__wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.booking__info h3 { font-size: 1.45rem; color: var(--forest); margin-bottom: 32px; }

.booking__expects { display: flex; flex-direction: column; gap: 24px; }
.booking__expect { display: flex; gap: 16px; align-items: flex-start; }
.booking__expect-icon { font-size: 1.4rem; width: 40px; text-align: center; flex-shrink: 0; }
.booking__expect strong { display: block; font-size: 0.88rem; color: var(--forest); margin-bottom: 3px; }
.booking__expect p { font-size: 0.82rem; color: var(--text-mid); }

.booking__form {
  background: white;
  padding: 48px 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { margin-bottom: 20px; }
.form__label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--forest); margin-bottom: 7px; }
.form__optional { font-weight: 400; color: var(--text-light); }

.form__input {
  width: 100%;
  padding: 13px 17px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  color: var(--text-dark); background: var(--cream);
  transition: var(--trans);
}
.form__input:focus { outline: none; border-color: var(--forest); background: white; box-shadow: 0 0 0 4px rgba(26,60,46,0.06); }

.form__select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A3C2E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form__textarea { min-height: 120px; resize: vertical; }

.form__privacy { font-size: 0.76rem; color: var(--text-light); text-align: center; margin-top: 14px; }

/* ===========================
   CRISIS
   =========================== */
.crisis { background: linear-gradient(135deg, #8B1A10 0%, #C0392B 60%, #A93226 100%); padding: 64px 0; }

.crisis__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.crisis__left { display: flex; align-items: center; gap: 20px; flex: 1; min-width: 240px; }
.crisis__icon { font-size: 2.8rem; flex-shrink: 0; }
.crisis__left h3 { font-size: 1.4rem; color: var(--cream); margin-bottom: 6px; }
.crisis__left p { font-size: 0.86rem; color: rgba(251,247,240,0.68); line-height: 1.5; }

.crisis__lines { display: flex; gap: 14px; flex-wrap: wrap; }

.crisis__line {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 22px;
  background: rgba(251,247,240,0.08);
  border: 1px solid rgba(251,247,240,0.16);
  border-radius: var(--radius);
  transition: var(--trans); text-align: center;
  min-width: 140px;
}
.crisis__line:hover { background: rgba(251,247,240,0.16); transform: translateY(-2px); }
.crisis__line--emergency { background: rgba(192,97,75,0.18); border-color: rgba(192,97,75,0.35); }

.crisis__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--gold-light);
}
.crisis__label { font-size: 0.7rem; color: rgba(251,247,240,0.58); margin-top: 4px; }

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--black); padding: 80px 0 40px; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__logo { margin-bottom: 10px; }
.footer__logo-img { height: 52px; width: auto; }
.footer__logo-fallback { flex-direction: column; }
.footer__logo-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--cream); }
.footer__logo-sub { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.1em; }

.footer__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic; color: var(--gold); font-size: 0.95rem;
  margin-bottom: 14px;
}
.footer__about { font-size: 0.82rem; color: rgba(251,247,240,0.45); line-height: 1.6; margin-bottom: 20px; }

.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  width: 34px; height: 34px;
  background: rgba(251,247,240,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(251,247,240,0.45);
  transition: var(--trans);
}
.footer__social-link svg { width: 15px; height: 15px; }
.footer__social-link:hover { background: var(--gold); color: var(--black); }

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.82rem; color: rgba(251,247,240,0.45); transition: var(--trans); }
.footer__links a:hover { color: var(--cream); }

.footer__bottom {
  border-top: 1px solid rgba(251,247,240,0.07);
  padding-top: 28px;
  display: flex; flex-direction: column; gap: 6px;
}
.footer__bottom p { font-size: 0.78rem; color: rgba(251,247,240,0.28); }

/* ===========================
   FLOATING TALK NOW
   =========================== */
.float-talk {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.float-talk--visible { opacity: 1; pointer-events: auto; }

.float-talk__btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--forest); color: white;
  padding: 14px 24px; border-radius: 100px;
  font-size: 0.9rem; font-weight: 600;
  border: none; cursor: pointer;
  box-shadow: 0 8px 28px rgba(26,60,46,0.38);
  transition: var(--trans);
}
.float-talk__btn:hover {
  background: var(--forest-mid);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(26,60,46,0.48);
}
.float-talk__icon { font-size: 1.1rem; }

/* ===========================
   MODAL
   =========================== */
.modal {
  position: fixed; inset: 0; z-index: 2000;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal--open { display: flex; }

.modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(5px); }

.modal__content {
  position: relative; z-index: 1;
  background: white; padding: 52px 44px;
  border-radius: var(--radius);
  text-align: center; max-width: 460px; width: 100%;
  box-shadow: var(--shadow-lg);
  animation: fadeUp 0.35s ease both;
}
.modal__icon { font-size: 3rem; margin-bottom: 16px; }
.modal__content h3 { font-size: 1.5rem; color: var(--forest); margin-bottom: 16px; }
.modal__content p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 12px; line-height: 1.6; }

/* ===========================
   TOAST
   =========================== */
.toast {
  position: fixed;
  bottom: 100px; left: 50%;
  transform: translateX(-50%);
  background: var(--forest); color: white;
  padding: 13px 28px;
  border-radius: 100px; font-size: 0.88rem; font-weight: 500;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  z-index: 3000;
  animation: fadeUp 0.3s ease both;
  white-space: nowrap;
}

/* ===========================
   FADE-IN ON SCROLL
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in--visible { opacity: 1; transform: translateY(0); }

/* ===========================
   KEYFRAMES
   =========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.35); }
}
@keyframes scrollPulse {
  0%   { opacity: 1; transform: scaleY(0); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}
@keyframes ripple {
  0%   { opacity: 0.55; transform: scale(1); }
  100% { opacity: 0;    transform: scale(1.45); }
}

/* ===========================
   HERO ABOUT PANEL
   =========================== */
.hero__about {
  width: 100%;
  background: rgba(10,28,20,0.65);
  backdrop-filter: blur(2px);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.hero__about-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
}

.hero__about-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero__about-photo-frame {
  width: 220px;
  height: 260px;
  border-radius: 120px 120px 80px 80px;
  background: linear-gradient(160deg, rgba(45,106,79,0.4), rgba(26,60,46,0.7));
  border: 2px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  overflow: hidden;
}

.hero__about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__about-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 100px;
}

.section__label--light {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
}

.hero__about-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--cream);
  margin: 12px 0 20px;
}

.hero__about-desc {
  font-size: 0.96rem;
  color: rgba(251,247,240,0.75);
  line-height: 1.72;
  margin-bottom: 12px;
}
.hero__about-desc em { color: var(--gold-light); font-style: italic; }

.hero__about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.hero__pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(251,247,240,0.05);
  border: 1px solid rgba(251,247,240,0.08);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.hero__pillar:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.2);
}

.hero__pillar-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

.hero__pillar strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 2px;
}
.hero__pillar span { font-size: 0.75rem; color: rgba(251,247,240,0.55); }

.hero__about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero__about-values span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-light);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 5px 14px;
  border-radius: 100px;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials { background: var(--cream); padding-bottom: 36px; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.tcard {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(26,60,46,0.07);
  border: 1px solid rgba(26,60,46,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26,60,46,0.12);
}

.tcard__stars {
  color: #E8A838;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.tcard__quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
}

.tcard__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid var(--cream-dark);
}

.tcard__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tcard__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
}

.tcard__detail {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ===========================
   HEALTH & TIPS
   =========================== */
.tips__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.tip-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.tip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.tip-card__image-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.tip-card__image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.tip-card:hover .tip-card__image { transform: scale(1.04); }

.tip-card__image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26,60,46,0.45) 100%);
}

.tip-card__tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(201,168,76,0.92);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

/* fallback when image hasn't loaded */
.tip-card__image-wrap:not(:has(img[src])),
.tip-card__image[src="assets/tip1.jpg"]:not([complete]),
.tip-card__image-wrap { background: linear-gradient(135deg, var(--forest), var(--forest-mid)); }

.tip-card__body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.tip-card__title {
  font-size: 1.15rem;
  color: var(--forest);
  line-height: 1.3;
}

.tip-card__text {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
}

.tip-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--cream-dark);
  margin-top: auto;
}
.tip-card__read {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.tip-card__read::before {
  content: '✦ ';
  font-size: 0.6rem;
}

/* ===========================
   SHOP
   =========================== */
.shop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.shop-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
  border: 1px solid rgba(26,60,46,0.06);
  display: flex;
  flex-direction: column;
}
.shop-card--featured {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 32px rgba(201,168,76,0.18);
}
.shop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.shop-card__cover {
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.shop-card__cover--green    { background: linear-gradient(135deg, #1A3C2E, #2D6A4F); }
.shop-card__cover--teal     { background: linear-gradient(135deg, #1A4A4A, #2A7A7A); }
.shop-card__cover--gold     { background: linear-gradient(135deg, #6B4C1A, #C9A84C); }
.shop-card__cover--forest   { background: linear-gradient(135deg, #0D2419, #1A3C2E); }
.shop-card__cover--terracotta { background: linear-gradient(135deg, #6B2A1A, #C0614B); }
.shop-card__cover--cream    { background: linear-gradient(135deg, #4A3A2A, #8A6A4A); }

.shop-card__cover-icon { font-size: 3rem; margin-bottom: 6px; }
.shop-card__cover-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251,247,240,0.6);
}

.shop-card__featured-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.shop-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  position: relative;
}

.shop-card__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
}
.shop-card__badge--free    { background: rgba(45,106,79,0.1); color: var(--forest-mid); }
.shop-card__badge--premium { background: rgba(201,168,76,0.15); color: var(--gold); }
.shop-card__badge--soon    { background: rgba(0,0,0,0.06); color: var(--text-light); }

.shop-card__title { font-size: 1.05rem; color: var(--forest); }
.shop-card__desc  { font-size: 0.82rem; color: var(--text-mid); line-height: 1.55; flex: 1; }

.shop-card__meta {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-light);
}

.shop-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  gap: 12px;
}

.shop-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
}
.shop-card__price.free { color: var(--forest-mid); }
.shop-card__price.paid { color: var(--terracotta); }

.btn--shop {
  background: var(--forest);
  color: white;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}
.btn--shop:hover { background: var(--forest-mid); transform: translateY(-1px); }

.btn--shop-primary {
  background: var(--terracotta);
  color: white;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(192,97,75,0.28);
}
.btn--shop-primary:hover { background: var(--terracotta-lt); transform: translateY(-1px); }

.btn--shop-outline {
  background: transparent;
  color: var(--forest);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  border: 2px solid var(--forest);
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}
.btn--shop-outline:hover { background: var(--forest); color: white; }

.shop__note {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(26,60,46,0.05);
  border: 1px solid rgba(26,60,46,0.1);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.84rem;
  color: var(--text-mid);
}
.shop__note span { font-size: 1.2rem; flex-shrink: 0; }
.shop__note a { color: var(--forest); font-weight: 600; text-decoration: underline; }

/* ===========================
   CONTACT
   =========================== */
.contact__wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact__info-card {
  background: var(--forest);
  color: var(--cream);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.contact__info-card h3 {
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 16px;
}
.contact__info-card > p {
  font-size: 0.9rem;
  color: rgba(251,247,240,0.7);
  line-height: 1.65;
  margin-bottom: 32px;
}

.contact__details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.contact__detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact__detail-icon {
  width: 38px; height: 38px;
  background: rgba(201,168,76,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact__detail strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 3px;
  font-family: 'Inter', sans-serif;
}
.contact__detail a,
.contact__detail span {
  font-size: 0.85rem;
  color: rgba(251,247,240,0.7);
  transition: var(--trans);
}
.contact__detail a:hover { color: var(--gold-light); }

.contact__social { border-top: 1px solid rgba(201,168,76,0.2); padding-top: 24px; }
.contact__social > p {
  font-size: 0.8rem;
  color: rgba(251,247,240,0.55);
  margin-bottom: 12px;
}

.contact__social-links { display: flex; gap: 10px; flex-wrap: wrap; }

.contact__social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(251,247,240,0.08);
  color: rgba(251,247,240,0.75);
  border: 1px solid rgba(251,247,240,0.12);
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--trans);
}
.contact__social-btn svg { width: 14px; height: 14px; }
.contact__social-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.contact__form {
  background: white;
  padding: 44px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ===========================
   RESPONSIVE
   =========================== */
/* ===========================
   BACK TO TOP
   =========================== */
.back-top {
  position: fixed;
  bottom: 32px; left: 32px;
  z-index: 900;
  width: 44px; height: 44px;
  background: var(--cream-dark);
  border: 1.5px solid rgba(26,60,46,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: var(--trans);
  box-shadow: var(--shadow);
}
.back-top svg { width: 18px; height: 18px; }
.back-top--visible { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--forest); color: white; transform: translateY(-2px); }

/* ===========================
   RESPONSIVE — TABLET
   =========================== */
@media (max-width: 1100px) {
  .shop__grid           { grid-template-columns: repeat(2, 1fr); }
  .footer__grid         { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services__grid       { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .booking__wrap     { grid-template-columns: 1fr; gap: 40px; }
  .contact__wrap     { grid-template-columns: 1fr; gap: 36px; }
  .hero__about-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__about-photo { flex-direction: row; align-items: center; gap: 20px; }
  .hero__about-photo-frame { width: 90px; height: 110px; font-size: 2rem; flex-shrink: 0; }
}

/* ===========================
   RESPONSIVE — MOBILE
   =========================== */
@media (max-width: 768px) {
  .section          { padding: 60px 0; }
  .container        { padding: 0 18px; }

  /* ---- NAV ---- */
  .nav              { padding: 14px 0; }
  .nav__logo-img    { height: 48px; }
  .nav__links {
    display: none;
    position: fixed; inset: 0;
    background: var(--forest);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 24px; z-index: 5;
    padding: 80px 24px 40px;
    overflow-y: auto;
  }
  .nav__links--open  { display: flex; }
  .nav__links .nav__link {
    color: rgba(251,247,240,0.88) !important;
    font-size: 1.1rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(251,247,240,0.08);
    width: 100%; text-align: center;
  }
  .nav__links .nav__link--cta {
    background: var(--terracotta);
    color: white !important;
    border-bottom: none;
    border-radius: 100px;
    padding: 12px 32px;
    margin-top: 8px;
  }
  .nav__toggle { display: flex; }
  .nav__toggle--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav__toggle--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ---- HERO ---- */
  .hero__content    { padding: 110px 18px 60px; min-height: 100svh; }
  .hero__headline   { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__intro      { font-size: 0.96rem; margin-bottom: 32px; }
  .hero__actions    { flex-direction: column; align-items: center; gap: 12px; }
  .hero__actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero__tagline    { font-size: 0.9rem; }

  /* ---- HERO ABOUT ---- */
  .hero__about      { padding: 52px 0; }
  .hero__about-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero__about-photo { flex-direction: column; align-items: center; }
  .hero__about-photo-frame { width: 140px; height: 160px; font-size: 3rem; }
  .hero__about-title { font-size: 1.5rem; }
  .hero__about-pillars { grid-template-columns: 1fr; gap: 10px; }
  .hero__about-values { justify-content: center; }
  .section__label--light { display: block; text-align: center; }

  /* ---- SECTION HEADERS ---- */
  .section__title   { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .section__desc    { font-size: 0.95rem; }

  /* ---- TESTIMONIALS ---- */
  .testimonials__grid    { grid-template-columns: 1fr; gap: 18px; }

  /* ---- TIPS ---- */
  .tips__grid            { grid-template-columns: 1fr; gap: 20px; }
  .tip-card__image-wrap  { height: 220px; }
  .tip-card__body        { padding: 22px 18px 18px; }

  /* ---- SERVICES ---- */
  .services__grid   { grid-template-columns: 1fr; gap: 16px; }
  .service-card     { padding: 24px 20px; }

  /* ---- SHOP ---- */
  .shop__grid       { grid-template-columns: 1fr; gap: 20px; }
  .shop-card__cover { height: 130px; }
  .shop-card__body  { padding: 20px 18px; }

  /* ---- TOOLS ---- */
  .tools__tabs      { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
  .tools__tab       { padding: 10px 8px; font-size: 0.8rem; text-align: center; }
  .breathing        { max-width: 100%; }
  .breathing__selector { gap: 6px; }
  .breathing__type  { padding: 7px 14px; font-size: 0.78rem; }
  .breathing__visual { width: 160px; height: 160px; margin-bottom: 32px; }
  .breathing__circle { width: 160px; height: 160px; }
  .grounding__step  { flex-direction: column; gap: 12px; }
  .grounding__num   { width: 40px; height: 40px; font-size: 1.1rem; }
  .wellness-chat    { border-radius: var(--radius-sm); }
  .wellness-chat__messages { height: 240px; }
  .journal__prompt-area { padding: 24px 20px; }

  /* ---- BOOKING ---- */
  .booking__wrap    { grid-template-columns: 1fr; gap: 32px; }
  .booking__form    { padding: 24px 18px; }
  .form__row        { grid-template-columns: 1fr; }

  /* ---- CONTACT ---- */
  .contact__wrap    { grid-template-columns: 1fr; gap: 28px; }
  .contact__form    { padding: 24px 18px; }
  .contact__info-card { padding: 28px 20px; }

  /* ---- HUMAN FEATURE ---- */
  .human-feature    { height: 360px; }
  .human-feature__quote { font-size: 1.15rem; }

  /* ---- ABOUT SECTION ---- */
  .about__grid          { grid-template-columns: 1fr; gap: 36px; }
  .about__card          { padding: 28px 20px; }
  .about-section__inner { grid-template-columns: 1fr; gap: 32px; }
  .about-section__photo-col { flex-direction: column; align-items: center; }
  .about-section__photo-frame { width: 160px; height: 190px; font-size: 3.5rem; }
  .about-section__pillars { grid-template-columns: 1fr; gap: 10px; }
  .about-section__values { justify-content: center; }

  /* ---- SHOP ---- */
  .shop__grid--3    { grid-template-columns: 1fr; gap: 20px; }

  /* ---- BREATHING AUDIO ---- */
  .breathing__audio-bar { flex-direction: column; gap: 8px; }

  /* ---- CRISIS ---- */
  .crisis           { padding: 48px 0; }
  .crisis__inner    { flex-direction: column; text-align: center; gap: 28px; }
  .crisis__left     { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .crisis__lines    { justify-content: center; width: 100%; }
  .crisis__line     { flex: 1; min-width: 120px; }

  /* ---- FOOTER ---- */
  .footer           { padding: 56px 0 32px; }
  .footer__grid     { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand    { text-align: center; }
  .footer__social   { justify-content: center; }
  .footer__col      { text-align: center; }

  /* ---- FLOATING BTNS ---- */
  .float-talk       { bottom: 20px; right: 20px; }
  .float-talk__text { display: none; }
  .float-talk__btn  { padding: 14px; border-radius: 50%; }
  .back-top         { bottom: 20px; left: 20px; width: 40px; height: 40px; }
  .back-top svg     { width: 16px; height: 16px; }
}

/* ===========================
   HUMAN FEATURE STRIP
   =========================== */
.human-feature { position: relative; overflow: hidden; height: 480px; }
.human-feature__image-wrap { position: relative; height: 100%; }
.human-feature__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.human-feature__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,28,20,0.82) 0%, rgba(26,60,46,0.65) 50%, rgba(0,0,0,0.4) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  gap: 20px;
}
.human-feature__quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  color: var(--cream);
  max-width: 700px;
  line-height: 1.55;
  margin: 0;
}
.human-feature__cite {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ===========================
   BREATHING — AFFIRMATION + AUDIO
   =========================== */
.breathing__affirmation {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--forest-mid);
  text-align: center;
  margin-top: 24px;
  margin-bottom: 0;
  opacity: 0.85;
}

#breathAudioFrame,
#breathAudioFrame iframe {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.breathing__audio-bar {
  display: inline-flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  margin-top: 16px;
}
.breathing__audio-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--forest);
  color: white;
  border: none;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(26,60,46,0.18);
}
.breathing__audio-btn:hover { background: var(--forest-mid); transform: translateY(-1px); }
.breathing__audio-btn.playing { background: var(--terracotta); }
.breathing__audio-icon { font-size: 0.85rem; }

/* ===========================
   SHOP RESOURCES LIST
   =========================== */
.shop__grid--3 { grid-template-columns: repeat(3, 1fr); }

.shop-card__resource-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 8px 0;
  padding: 12px 14px;
  background: var(--cream);
  border-radius: var(--radius-sm);
}
.shop-resource-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dark);
  padding: 3px 0;
}
.shop-resource-item span {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* ===========================
   RESOURCES MODAL
   =========================== */
.modal__content--resources { max-width: 520px; padding: 44px 36px; }

.resources-modal__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 20px;
  text-align: left;
}
.resources-modal__item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  transition: var(--trans);
  width: 100%;
  text-align: left;
}
.resources-modal__item:hover {
  background: white;
  border-color: var(--forest);
  transform: translateX(4px);
  box-shadow: var(--shadow);
}
.resources-modal__icon { font-size: 1.5rem; flex-shrink: 0; }
.resources-modal__item div { flex: 1; }
.resources-modal__item strong { display: block; font-size: 0.88rem; color: var(--forest); margin-bottom: 2px; }
.resources-modal__item span { font-size: 0.76rem; color: var(--text-mid); }
.resources-modal__dl {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--forest-mid);
  flex-shrink: 0;
}

/* ===========================
   ABOUT SECTION (standalone)
   =========================== */
.about-section { background: var(--forest); }

.about-section__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.about-section__photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-section__photo-frame {
  width: 240px;
  height: 280px;
  border-radius: 120px 120px 80px 80px;
  background: linear-gradient(160deg, rgba(45,106,79,0.5), rgba(26,60,46,0.8));
  border: 2px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  overflow: hidden;
}
.about-section__photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-section__photo-placeholder { font-size: 5rem; }

.about-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 100px;
}

.about-section__title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--cream);
  margin: 14px 0 20px;
}

.about-section__desc {
  font-size: 0.96rem;
  color: rgba(251,247,240,0.75);
  line-height: 1.72;
  margin-bottom: 14px;
}
.about-section__desc em { color: var(--gold-light); font-style: italic; }

.about-section__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}

.about-section__pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(251,247,240,0.05);
  border: 1px solid rgba(251,247,240,0.09);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.about-section__pillar:hover {
  background: rgba(201,168,76,0.09);
  border-color: rgba(201,168,76,0.22);
}
.about-section__pillar-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.about-section__pillar strong {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--cream); margin-bottom: 2px;
}
.about-section__pillar span { font-size: 0.75rem; color: rgba(251,247,240,0.55); }

.about-section__values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-section__values span {
  font-size: 0.75rem; font-weight: 500;
  color: var(--gold-light);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 5px 14px;
  border-radius: 100px;
}

/* ===========================
   ABOUT SECTION — MOBILE FIX
   (must come after base styles)
   =========================== */
@media (max-width: 768px) {
  .about-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-section__photo-col {
    flex-direction: column;
    align-items: center;
  }
  .about-section__photo-frame {
    width: 160px;
    height: 190px;
    font-size: 3.5rem;
  }
  .about-section__pillars {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .about-section__values {
    justify-content: center;
  }
}

/* ===========================
   RESPONSIVE — SMALL MOBILE
   =========================== */
@media (max-width: 400px) {
  .hero__headline   { font-size: 1.9rem; }
  .hero__badge      { font-size: 0.68rem; padding: 7px 14px; }
  .section__title   { font-size: 1.5rem; }
  .tools__tabs      { grid-template-columns: 1fr 1fr; }
  .crisis__lines    { flex-direction: column; align-items: stretch; }
  .booking__form,
  .contact__form    { padding: 20px 14px; }
}
