diff --git a/frontend/src/routes/home3/+page.svelte b/frontend/src/routes/home3/+page.svelte
index 845e72a..4bba575 100644
--- a/frontend/src/routes/home3/+page.svelte
+++ b/frontend/src/routes/home3/+page.svelte
@@ -127,14 +127,28 @@
- DAILY MOMENT
+ ENTERTAINMENT
SOON
-
A small calm to carry with you.
-
Breathing, sound & stillness.
+
A little something to enjoy.
+
Shows, clips, and curiosities. Coming soon.
+
+
+
+
+ WORD OF THE DAY
+ Serene
+ Calm, peaceful, and untroubled.
+
+
+ QUOTE OF THE DAY
+ “Very little is needed to make a happy life.”
+ Marcus Aurelius
+
+
@@ -285,6 +299,16 @@
.moment-line { font-family: 'Newsreader', Georgia, serif; font-style: italic; font-size: 18px; line-height: 1.3; color: #214a35; margin: 14px 0 0; }
.moment-meta { margin-top: auto; padding-top: 16px; font-size: 13px; color: #6f9683; }
+ /* skinny Word / Quote of the day strip — warm neutral, two halves split by a divider */
+ .wotd { flex: none; display: flex; align-items: stretch; background: #f1ece1; border: 1px solid #e6ddc9; }
+ .wotd-half { flex: 1; padding: 15px 22px; display: flex; flex-direction: column; justify-content: center; gap: 3px; min-width: 0; }
+ .wotd-half + .wotd-half { border-left: 1px solid #e6ddc9; }
+ .wotd .label { color: var(--muted); }
+ .wotd .word { font-family: 'Newsreader', Georgia, serif; font-weight: 600; font-size: 20px; color: var(--ink); }
+ .wotd .def { font-size: 13px; color: var(--body); }
+ .wotd .quote { font-family: 'Newsreader', Georgia, serif; font-style: italic; font-size: 15px; line-height: 1.3; color: #2d2a25; }
+ .wotd .quote-by { font-size: 12px; color: var(--muted); }
+
.foot {
text-align: center; max-width: 1180px; width: 100%; margin: 14px auto 0; box-sizing: border-box;
padding: 20px clamp(18px, 5vw, 44px) 30px; font-size: 13px; color: var(--muted);
@@ -300,5 +324,7 @@
.art { flex-direction: column; }
.art-swatch { width: 100%; min-height: 130px; }
.pair { grid-template-columns: 1fr; }
+ .wotd { flex-direction: column; }
+ .wotd-half + .wotd-half { border-left: none; border-top: 1px solid #e6ddc9; }
}