/* ============================================================
   Foshan Nanhai Shanmu Technology Co., Ltd. — shanmu.mom
   Forest Bath and Wellbeing Tech theme
   Palette: forest-bath #0F1412 | fir-spruce #5C9E7E
            cedar-bark #1C2420 | moss-floor #24312A
            morn-mist #EFF5EF | spruce-pale #C0CEC2
            warm-stone #C9B48A | bath-steam #DCE8DE | hairline #2B382F
   ============================================================ */

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

body {
  font-size: 16px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  background-color: #0F1412;
  color: #C0CEC2;
  overflow-x: hidden;
}

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

a {
  color: #5C9E7E;
  text-decoration: none;
}

h1, h2, h3, h4 {
  color: #EFF5EF;
  font-weight: 700;
  line-height: 1.2;
}

/* ---------- Shared .home-page scope (sections use class selectors) ---------- */

/* ---------- CEDAR-GROVE NAV ---------- */
.cedargrove-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #1C2420;
  width: 100%;
}

.grove-strip {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 14px;
  background-color: #141A17;
  border-bottom: 1px solid #2B382F;
  overflow: hidden;
  padding: 0 16px;
}

.tree-shape {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 20px solid #5C9E7E;
  margin: 0 4px;
  transform: translateY(4px);
}

.tree-shape.t2 { border-bottom-color: #3E6B55; height: 0; transform: translateY(5px) scale(1.2); border-left-width: 8px; border-right-width: 8px; border-bottom-width: 14px; }
.tree-shape.t3 { border-bottom-color: #4A7E63; transform: translateY(3px) scale(0.9); }

.steam-wisp {
  width: 2px;
  height: 6px;
  background-color: #DCE8DE;
  border-radius: 2px;
  align-self: flex-start;
  margin-top: 1px;
  filter: saturate(0.63);
  margin-left: 6px;
  margin-right: 6px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #EFF5EF;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 21px;
  text-transform: uppercase;
}

.cairn-glyph {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}

.cairn-glyph i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #C9B48A;
}

.cairn-glyph i:nth-child(2) { width: 7px; height: 7px; }
.cairn-glyph i:nth-child(3) { width: 6px; height: 6px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: #C0CEC2;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 4px;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #EFF5EF;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 2px;
  height: 2px;
  background-color: #5C9E7E;
  box-shadow: 0 0 6px #5C9E7E;
}

.steam-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #DCE8DE;
  filter: saturate(0.63);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #2B382F;
  color: #EFF5EF;
  font-size: 18px;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
}

/* ---------- HERO ---------- */
.onsen-hero {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px 70px;
}

.hero-text {
  flex: 1 1 55%;
}

.hero-visual {
  flex: 1 1 45%;
}

.eyebrow-chip {
  display: inline-block;
  background-color: #5C9E7E;
  color: #EFF5EF;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: 46px;
  line-height: 1.12;
  color: #EFF5EF;
  margin-bottom: 22px;
}

.hero-title .breathe-word {
  color: #5C9E7E;
}

.hero-sub {
  color: #8FA396;
  font-size: 17px;
  max-width: 34em;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.2s ease;
}

.btn-primary {
  background-color: #5C9E7E;
  color: #EFF5EF;
}

.btn-primary:hover {
  background-color: #6BAF8E;
}

.btn-outline {
  background: transparent;
  border: 1px solid #5C9E7E;
  color: #5C9E7E;
}

.btn-outline:hover {
  background-color: #22312A;
  color: #EFF5EF;
}

/* CSS Onsen clearing */
.onsen-scene {
  position: relative;
  height: 460px;
  width: 100%;
}

.moon-disc {
  position: absolute;
  top: 8px;
  right: 30px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background-color: #DCE8DE;
  box-shadow: 0 0 40px rgba(220, 232, 222, 0.35);
}

.cedar-back {
  position: absolute;
  bottom: 180px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
}

.cedar-back .tree {
  width: 0;
  height: 0;
  border-left: 34px solid transparent;
  border-right: 34px solid transparent;
  border-bottom: 90px solid #2E4438;
}

.cedar-back .tree:nth-child(2) { border-bottom-color: #2A3D32; border-left-width: 42px; border-right-width: 42px; border-bottom-width: 110px; }
.cedar-back .tree:nth-child(3) { border-bottom-color: #33503F; }

.cedar-front {
  position: absolute;
  bottom: 170px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
}

.cedar-front .tree {
  width: 0;
  height: 0;
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  border-bottom: 70px solid #5C9E7E;
}

.cedar-front .tree:nth-child(2) { border-bottom-color: #4E876B; border-bottom-width: 85px; border-left-width: 30px; border-right-width: 30px; }
.cedar-front .tree:nth-child(3) { border-bottom-color: #569170; }

/* Pool */
.onsen-pool {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 120px;
  border-radius: 50%;
  background-color: #5C9E7E;
  box-shadow: inset 0 0 0 6px #4E876B;
  border: 8px solid #2A3D32;
}

.ripple {
  position: absolute;
  border: 2px solid #DCE8DE;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: saturate(0.5);
  animation: ripple 4s linear infinite;
}

.ripple.r1 { width: 200px; height: 90px; }
.ripple.r2 { width: 150px; height: 60px; animation-delay: 1.3s; }
.ripple.r3 { width: 110px; height: 40px; animation-delay: 2.6s; }

@keyframes ripple {
  0% { filter: saturate(0.5); }
  100% { filter: saturate(0.14); }
}

.steam-curl {
  position: absolute;
  width: 3px;
  height: 26px;
  background-color: #DCE8DE;
  border-radius: 3px;
  bottom: 120px;
  filter: saturate(0.63);
  animation: rise 3s ease-in-out infinite;
}

.steam-curl.s1 { left: 35%; }
.steam-curl.s2 { left: 50%; height: 32px; }
.steam-curl.s3 { left: 64%; height: 22px; }

@keyframes rise {
  0% { transform: translateY(6px); filter: saturate(0.18); }
  50% { filter: saturate(0.63); }
  100% { transform: translateY(-12px); filter: saturate(0.09); }
}

/* Stone rim */
.rim-stone {
  position: absolute;
  bottom: 60px;
  left: 18%;
  width: 120px;
  height: 34px;
  background-color: #2A3D32;
  border-radius: 8px;
  box-shadow: 0 3px 0 #223128;
}

.rim-stone.towel {
  left: auto;
  right: 14%;
  width: 90px;
  height: 30px;
  background-color: #3A4A41;
}

/* Lantern */
.lantern-post {
  position: absolute;
  bottom: 62px;
  right: 6%;
  width: 4px;
  height: 60px;
  background-color: #2A3733;
}

.lantern-glow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 42px;
  background-color: #C9B48A;
  border-radius: 4px;
  box-shadow: 0 0 22px rgba(201, 180, 138, 0.35);
}

.lantern-light-pool {
  position: absolute;
  bottom: 12px;
  left: 16%;
  width: 130px;
  height: 40px;
  background-color: #C9B48A;
  border-radius: 50%;
  filter: saturate(0.23);
}

/* Cairns */
.cairn {
  position: absolute;
  bottom: 62px;
  left: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.cairn b {
  display: block;
  border-radius: 50%;
  background-color: #C9B48A;
}

.cairn b:nth-child(1) { width: 18px; height: 16px; }
.cairn b:nth-child(2) { width: 13px; height: 12px; }
.cairn b:nth-child(3) { width: 9px; height: 8px; }

.cairn.second { left: auto; right: 30%; bottom: 70px; }

/* Breathing guide card */
.breath-card {
  position: absolute;
  top: 12px;
  left: 8%;
  background-color: #1C2420;
  border: 1px solid #2B382F;
  border-radius: 10px;
  width: 170px;
  padding: 14px;
  text-align: center;
}

.breath-circle {
  width: 96px;
  height: 96px;
  margin: 0 auto 8px;
  border-radius: 50%;
  border: 3px solid #5C9E7E;
  position: relative;
}

.breath-circle .inhale {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 3px;
  height: 16px;
  background-color: #EFF5EF;
  transform-origin: 50% 44px;
  transform: rotate(40deg);
  box-shadow: 0 0 6px rgba(239, 245, 239, 0.6);
  animation: arc 6s ease-in-out infinite;
}

@keyframes arc {
  0% { transform: rotate(-70deg); }
  50% { transform: rotate(70deg); }
  100% { transform: rotate(-70deg); }
}

.breath-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #C0CEC2;
  text-transform: uppercase;
}

.tick-ring {
  display: flex;
  justify-content: space-around;
  margin-top: 8px;
}

.tick-ring i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #5C9E7E;
}

/* Wind chime */
.windchime {
  position: absolute;
  top: 8px;
  left: 40%;
  text-align: center;
}

.windchime .chain {
  width: 2px;
  height: 16px;
  background-color: #C9B48A;
  margin: 0 auto;
}

.windchime .tubes {
  display: flex;
  gap: 3px;
  justify-content: center;
  margin-top: 3px;
}

.windchime .tubes i {
  display: block;
  width: 4px;
  height: 16px;
  background-color: #C9B48A;
  border-radius: 2px;
}

.windchime .tubes i:nth-child(2) { height: 20px; background-color: #C9B48A; }

/* ---------- RITUAL-CARD ROWS ---------- */
.ritual-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 70px 24px 30px;
}

.ritual-heading {
  font-size: 30px;
  color: #5C9E7E;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ritual-intro {
  color: #8FA396;
  max-width: 40em;
  margin-bottom: 36px;
}

.ritualrows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ritual-row {
  display: flex;
  align-items: center;
  gap: 26px;
  background-color: #1C2420;
  border: 1px solid #2B382F;
  border-radius: 10px;
  padding: 26px 30px;
}

.minute-dial {
  flex: 0 0 74px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 3px solid #5C9E7E;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EFF5EF;
  font-weight: 700;
  font-size: 15px;
}

.minute-dial .moon-notch {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 7px;
  border-radius: 0 0 8px 8px;
  background-color: #DCE8DE;
}

.minute-dial .arc {
  position: absolute;
  border: 2px solid #EFF5EF;
  border-radius: 50%;
}

.minute-dial .arc.a2 { inset: 8px 8px 8px 8px; border-top-color: transparent; border-right-color: transparent; }
.minute-dial .arc.a5 { inset: 6px 6px 6px 6px; border-bottom-color: transparent; }
.minute-dial .arc.a10 { inset: 4px 4px 4px 4px; }

.ritual-body {
  flex: 1 1 auto;
}

.ritual-body h3 {
  color: #EFF5EF;
  font-size: 22px;
  margin-bottom: 8px;
}

.ritual-body p {
  color: #8FA396;
  font-size: 15px;
}

.streak-strip {
  flex: 0 0 90px;
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}

.streak-strip b {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background-color: #5C9E7E;
}

.streak-strip b.empty {
  background-color: transparent;
  border: 1px solid #2B382F;
  border-radius: 50%;
}

/* ---------- METRIC BAND ---------- */
.metric-band {
  background-color: #24312A;
  width: 100%;
  margin-top: 60px;
  padding: 50px 24px;
}

.metric-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.metric-cell {
  text-align: center;
  flex: 1;
}

.metric-cell .num {
  font-size: 44px;
  font-weight: 800;
  color: #5C9E7E;
  line-height: 1;
}

.metric-cell .label {
  color: #EFF5EF;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 10px;
}

.metric-hairline {
  width: 1px;
  height: 60px;
  background-color: #DCE8DE;
  filter: saturate(0.45);
}

/* ---------- STATEMENT BAND ---------- */
.statement-band {
  background-color: #1C2420;
  width: 100%;
  padding: 70px 24px;
  margin-top: 10px;
}

.statement-inner {
  max-width: 760px;
  margin: 0 auto;
  border-left: 4px solid #C9B48A;
  padding-left: 26px;
}

.statement-inner p {
  font-size: 26px;
  line-height: 1.5;
  color: #EFF5EF;
  font-weight: 300;
}

.statement-inner .attribution {
  margin-top: 18px;
  color: #8FA396;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  max-width: 1160px;
  margin: 0 auto;
  padding: 70px 24px 80px;
  text-align: center;
}

.cta-band h2 {
  font-size: 30px;
  color: #5C9E7E;
  margin-bottom: 14px;
}

.cta-band p {
  color: #8FA396;
  max-width: 34em;
  margin: 0 auto 28px;
}

/* ---------- LANTERN-PATH FOOTER ---------- */
.lanternpath-footer {
  background-color: #0A0E0C;
  width: 100%;
  padding-top: 0;
  position: relative;
  z-index: 1;
}

.stone-path-strip {
  display: flex;
  align-items: center;
  height: 14px;
  background-color: #111612;
  border-top: 1px solid #2B382F;
  border-bottom: 1px solid #2B382F;
  overflow: hidden;
  padding: 0 16px;
}

.stone-path-strip i {
  width: 34px;
  height: 8px;
  border-radius: 4px;
  background-color: #C9B48A;
  margin-right: 14px;
  flex-shrink: 0;
}

.stone-path-strip i:nth-child(2n) { background-color: #3A4A41; }
.stone-path-strip i:last-child { filter: saturate(0.32); }

.footer-stack {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 24px 44px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #EFF5EF;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-bottom: 24px;
}

.footer-links a {
  color: #C0CEC2;
  font-size: 14px;
}

.footer-links a:hover {
  color: #EFF5EF;
}

.lantern-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 26px;
}

.sprig {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 14px solid #5C9E7E;
}

.mini-lantern {
  width: 22px;
  height: 18px;
  background-color: #C9B48A;
  border-radius: 3px;
  box-shadow: 0 0 14px rgba(201, 180, 138, 0.3);
}

.footer-legal {
  color: #8FA396;
  font-size: 13px;
  line-height: 1.8;
}

.footer-legal a {
  color: #5C9E7E;
}

/* ---------- Secondary page hero ---------- */
.page-hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 24px 30px;
}

.page-hero h1 {
  font-size: 40px;
  color: #EFF5EF;
  margin-bottom: 14px;
}

.page-hero h1 em {
  color: #5C9E7E;
  font-style: normal;
}

.page-hero p {
  color: #8FA396;
  max-width: 40em;
}

/* Services page */
.service-sections {
  max-width: 1160px;
  margin: 0 auto;
  padding: 30px 24px 10px;
}

.service-block {
  background-color: #1C2420;
  border: 1px solid #2B382F;
  border-radius: 10px;
  padding: 30px 32px;
  margin-bottom: 22px;
}

.service-block h2 {
  color: #5C9E7E;
  font-size: 24px;
  margin-bottom: 12px;
}

.service-block p {
  color: #8FA396;
  margin-bottom: 10px;
}

.service-block ul {
  list-style: none;
  margin-top: 8px;
}

.service-block ul li {
  color: #C0CEC2;
  padding: 6px 0 6px 22px;
  position: relative;
}

.service-block ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background-color: #5C9E7E;
  transform: rotate(45deg);
}

.pricing-note {
  background-color: #24312A;
  border-radius: 8px;
  padding: 16px 20px;
  color: #C0CEC2;
  margin-top: 12px;
}

/* ---------- Contact page ---------- */
.contact-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 30px 24px 60px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1 1 58%;
  background-color: #1C2420;
  border: 1px solid #2B382F;
  border-radius: 10px;
  padding: 30px 32px;
}

.contact-form .field {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  color: #EFF5EF;
  font-size: 14px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background-color: #0F1412;
  border: 1px solid #2B382F;
  color: #EFF5EF;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #5C9E7E;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: #8FA396;
  margin-top: 8px;
}

.contact-info {
  flex: 1 1 34%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-card {
  background-color: #1C2420;
  border: 1px solid #2B382F;
  border-radius: 10px;
  padding: 24px;
}

.info-card h3 {
  color: #5C9E7E;
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-card p {
  color: #C0CEC2;
  font-size: 15px;
  line-height: 1.8;
}

.info-card a {
  color: #5C9E7E;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: #1C2420;
  border: 1px solid #2B382F;
  border-radius: 8px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #EFF5EF;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-q::after {
  content: "+";
  color: #5C9E7E;
  font-size: 20px;
}

.faq-item.open .faq-q::after {
  content: "−";
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 20px 18px;
  color: #8FA396;
}

/* ---------- Scroll reveal ----- */
.fade-up {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.hidden-init {
  opacity: 0;
  transform: translateY(20px);
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #1C2420;
    padding: 10px 24px 18px;
    gap: 8px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-row {
    flex-wrap: wrap;
  }

  .onsen-hero {
    flex-direction: column;
    padding: 50px 24px 40px;
  }

  .hero-title {
    font-size: 36px;
  }

  .onsen-scene {
    height: 400px;
  }

  .ritual-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .minute-dial {
    flex: none;
  }

  .streak-strip {
    justify-content: flex-start;
    flex: none;
  }

  .metric-inner {
    flex-direction: column;
    gap: 24px;
  }

  .metric-hairline {
    width: 60px;
    height: 1px;
  }

  .contact-wrap {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero-title {
    font-size: 30px;
  }

  .onsen-scene {
    transform: scale(0.85);
    transform-origin: top center;
    height: 340px;
  }
}

/* Guarantee no semi-transparent text */
.text-mist { color: #EFF5EF; }
.text-spruce { color: #C0CEC2; }
.text-stone { color: #C9B48A; }
.text-pale { color: #8FA396; }
