@font-face {
  font-family: 'Yiddishkeit';
  src: url('fonts/YiddishkeitAlefAlefAlef-Bold.woff') format('woff'),
       url('fonts/YiddishkeitAlefAlefAlef-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('fonts/Rubik-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('fonts/Rubik-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('fonts/Rubik-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('fonts/Rubik-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ivory: #fffcf7;
  --cream: #f8f1e6;
  --parchment: #ece1d0;
  --gold: #bfa06e;
  --gold-light: #d9c39a;
  --gold-pale: #ecdfc6;
  --gold-deep: #a3855c;
  --terracotta: #c39c8f;
  --wine: #9c7269;
  --wine-deep: #6b4e46;
  --brown: #4a4038;
  --brown-soft: #756a60;
  --sage: #9caf8b;
  --sage-deep: #74855f;
  --shadow-warm: rgba(120, 100, 82, 0.16);
  --card: #fffefb;

  /* lively everyday type, reserved for headings and running text */
  --font-body: 'Rubik', 'Segoe UI', sans-serif;
  --font-display: 'Rubik', 'Segoe UI', sans-serif;
  /* the biblical display face, reserved only for quoted verses, brachot and tefillot */
  --font-prayer: 'Yiddishkeit', serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--brown);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse 60% 45% at 12% 8%, rgba(217, 195, 154, 0.35), transparent 60%),
    radial-gradient(ellipse 55% 40% at 92% 18%, rgba(156, 175, 139, 0.16), transparent 60%),
    radial-gradient(ellipse 70% 55% at 50% 55%, rgba(236, 223, 198, 0.5), transparent 65%),
    radial-gradient(ellipse 60% 45% at 85% 92%, rgba(195, 156, 143, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 45% at 5% 95%, rgba(156, 175, 139, 0.14), transparent 60%),
    linear-gradient(160deg, #fdf8ef 0%, #faf2e4 32%, #f6ecdb 58%, #f9f0e2 78%, #fdf8ef 100%);
  background-attachment: fixed;
  background-size: cover;
}

/* subtle repeating gold texture, laid over the gradient for extra richness */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cg fill='none' stroke='%23a3855c' stroke-width='0.6' opacity='0.3'%3E%3Cpath d='M20 120 C 25 90 35 70 20 40'/%3E%3Cpath d='M120 20 C 115 50 105 70 120 100'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 140px 140px;
}

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

/* ============ TEXTURE / GRAIN ============ */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#wheatCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

/* ============ LOADER ============ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 8vw;
  text-align: center;
  transition: opacity 1s var(--ease), visibility 1s var(--ease);
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-mark {
  font-family: var(--font-prayer);
  font-weight: 700;
  font-size: clamp(1.6rem, 5.4vw, 2.6rem);
  line-height: 1.5;
  color: var(--gold-deep);
  animation: pulseGlow 1.6s ease-in-out infinite;
}
.loader-mark .line { display: block; }
.loader-heart { color: var(--gold-deep); animation: pulseGlow 1.6s ease-in-out infinite; }
@keyframes pulseGlow {
  0%, 100% { opacity: .35; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1.04); }
}

/* ============ NAV ============ */
.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  padding: 18px 6vw;
  transition: background .5s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.bsd-mark {
  position: absolute;
  top: 6px;
  right: 6vw;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.03em;
  color: var(--gold-pale);
  opacity: 0.85;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
  transition: color .4s var(--ease), text-shadow .4s var(--ease);
}
.site-nav.scrolled .bsd-mark {
  color: var(--gold-deep);
  text-shadow: none;
}
.site-nav.scrolled {
  background: rgba(253, 248, 238, 0.88);
  backdrop-filter: blur(10px);
  padding: 10px 6vw;
  box-shadow: 0 6px 24px var(--shadow-warm);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.nav-mark {
  grid-column: 1;
  justify-self: start;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-light);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
  transition: color .4s var(--ease), text-shadow .4s var(--ease);
}
.nav-links {
  grid-column: 2;
  justify-self: center;
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.92rem;
  position: relative;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
  transition: color .4s var(--ease), text-shadow .4s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.site-nav.scrolled .nav-mark {
  color: var(--wine);
  text-shadow: none;
}
.site-nav.scrolled .nav-links a {
  color: var(--brown-soft);
  text-shadow: none;
}
.site-nav.scrolled .nav-links a::after { background: var(--gold); }
.site-nav.scrolled .nav-links a:hover { color: var(--wine); }

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ SECTION SHARED ============ */
.section-kicker {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--wine);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.3;
  margin: 0 0 20px;
}
.section-desc {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--brown-soft);
  max-width: 640px;
}
.section-heading { max-width: 780px; margin: 0 auto 60px; padding: 0 6vw; }
[data-reveal][center], .section-heading .section-desc { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading { text-align: center; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 6vw 80px;
  overflow: hidden;
  background: var(--wine-deep);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 55% at 50% 42%, rgba(107, 78, 70, 0.35) 0%, rgba(107, 78, 70, 0.72) 65%, rgba(85, 61, 55, 0.88) 100%),
    linear-gradient(180deg, rgba(85, 61, 55, 0.55) 0%, rgba(85, 61, 55, 0.35) 30%, rgba(85, 61, 55, 0.6) 75%, rgba(85, 61, 55, 0.85) 100%);
}
.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
  z-index: 1;
}
.shape-one {
  width: 480px; height: 480px;
  background: var(--gold-light);
  top: -160px; left: -120px;
  animation: driftOne 16s ease-in-out infinite;
}
.shape-two {
  width: 380px; height: 380px;
  background: var(--terracotta);
  opacity: 0.25;
  bottom: -140px; right: -100px;
  animation: driftTwo 18s ease-in-out infinite;
}
@keyframes driftOne {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.08); }
}
@keyframes driftTwo {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-30px, -40px) scale(1.1); }
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }

.hero-title {
  font-family: var(--font-prayer);
  font-weight: 700;
  color: var(--gold-light);
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  line-height: 1.4;
  margin: 0 0 6px;
  text-shadow: 0 6px 26px rgba(0,0,0,0.4);
}
.hero-title .line { display: block; }
.hero-heart {
  display: block;
  margin: 6px auto 26px;
  color: var(--gold-pale);
  opacity: 0.9;
}
.verse {
  font-family: var(--font-prayer);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gold-pale);
  line-height: 2;
  margin: 0 0 30px;
  opacity: 0.92;
}
.verse-source {
  display: inline;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(240, 224, 190, 0.75);
  margin-inline-start: 4px;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(253, 246, 232, 0.88);
  line-height: 1.8;
  margin-bottom: 46px;
}
.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.scroll-cue-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: cueMove 2.2s ease-in-out infinite;
}
@keyframes cueMove {
  0% { transform: scaleY(0.4); transform-origin: top; opacity: .3; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0.4); transform-origin: bottom; opacity: .3; }
}

/* ============ NOTE SECTION ============ */
.note-section {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 60px auto;
  padding: 80px 6vw;
  text-align: center;
}
.note-illustration {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  margin: 0 auto 34px;
  box-shadow: 0 22px 55px var(--shadow-warm);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.note-text {
  font-size: 1.18rem;
  line-height: 2;
  color: var(--brown-soft);
  max-width: 640px;
  margin: 0 auto 22px;
}
.note-text.emphasis {
  color: var(--wine);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.85;
  margin: 34px auto;
}

/* ============ RECIPE ============ */
.recipe-section {
  position: relative;
  z-index: 2;
  padding: 80px 6vw 100px;
  max-width: 1180px;
  margin: 0 auto;
}
.chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}
.chip {
  padding: 8px 18px;
  border: 1px solid var(--gold-light);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--terracotta);
  background: var(--cream);
}
.recipe-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 36px;
  margin-top: 20px;
}
@media (max-width: 860px) {
  .recipe-grid { grid-template-columns: 1fr; }
}
.ingredients-card, .method-card {
  background: var(--card);
  border: 1px solid var(--parchment);
  border-radius: 22px;
  padding: 40px 34px;
  box-shadow: 0 18px 50px var(--shadow-warm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.ingredients-card:hover, .method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px var(--shadow-warm);
}
.ingredients-card h3, .method-card h3 {
  font-family: var(--font-display);
  color: var(--wine);
  font-size: 1.5rem;
  margin-top: 0;
}
.ingredients-card h4 {
  color: var(--terracotta);
  font-size: 1rem;
  margin: 26px 0 10px;
}
.ingredients-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.ingredients-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--parchment);
  font-size: 1.02rem;
  color: var(--brown);
}
.ingredients-list.small li { font-size: 0.95rem; color: var(--brown-soft); }
.ingredients-list li span {
  min-width: 44px;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-display);
}
.tip-note {
  margin-top: 24px;
  font-size: 0.92rem;
  color: var(--brown-soft);
  line-height: 1.8;
  background: var(--cream);
  border-right: 3px solid var(--gold);
  padding: 14px 16px;
  border-radius: 6px;
}

.method-tabs, .minhag-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}
.tab-btn {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid var(--gold-light);
  background: transparent;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--brown-soft);
  cursor: pointer;
  transition: all .35s var(--ease);
}
.tab-btn.active {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--ivory);
  box-shadow: 0 8px 20px var(--shadow-warm);
}
.steps-list {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
}
.steps-list li {
  counter-increment: step;
  position: relative;
  padding: 0 0 0 0;
  padding-inline-start: 52px;
  margin-bottom: 22px;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--brown-soft);
}
.steps-list li::before {
  content: counter(step);
  position: absolute;
  inset-inline-start: 0;
  top: -2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--card);
}
.steps-list li strong { color: var(--wine); }
.steps-list.continued { margin-top: 30px; counter-reset: step 5; }
.divider-flourish {
  height: 1px;
  margin: 34px 0;
  background: linear-gradient(to left, transparent, var(--gold-light), transparent);
  position: relative;
}
.divider-flourish::after {
  content: '❦';
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  background: var(--card);
  color: var(--gold);
  padding: 0 14px;
  font-size: 1.1rem;
}

/* ============ VIDEO ============ */
.video-section {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 6vw;
  overflow: hidden;
}
.video-bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-pale) 0%, transparent 70%);
  opacity: 0.4;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: breathe 6s ease-in-out infinite;
  z-index: 0;
}
@keyframes breathe {
  0%, 100% { transform: translate(-50%,-50%) scale(1); }
  50% { transform: translate(-50%,-50%) scale(1.15); }
}
.video-frame {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 860px;
  margin: 40px auto 0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 80px var(--shadow-warm);
  border: 6px solid var(--card);
  outline: 1px solid var(--parchment);
  cursor: pointer;
}
.video-frame-inner {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--brown);
}
.video-poster {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.video-frame:hover .video-poster { transform: scale(1.04); }
.video-frame-inner iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 88px; height: 88px;
  border-radius: 50%;
  border: none;
  background: rgba(253, 248, 238, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: transform .35s var(--ease);
  animation: playPulse 2.4s ease-in-out infinite;
}
.play-btn:hover { transform: translate(-50%,-50%) scale(1.08); }
@keyframes playPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(0,0,0,0.35), 0 0 0 0 rgba(163,133,92,0.4); }
  50% { box-shadow: 0 10px 30px rgba(0,0,0,0.35), 0 0 0 16px rgba(163,133,92,0); }
}
.video-caption {
  margin-top: 26px;
  color: var(--brown-soft);
  font-size: 1.02rem;
  position: relative;
  z-index: 2;
}
.video-fallback-link {
  display: inline-block;
  margin-top: 14px;
  position: relative;
  z-index: 2;
  font-size: 0.9rem;
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.video-fallback-link:hover { color: var(--wine); }

/* ============ BUNS ============ */
.buns-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  max-width: 1180px;
  margin: 40px auto 100px;
  padding: 0 6vw;
}
@media (max-width: 860px) {
  .buns-section { grid-template-columns: 1fr; }
  .buns-illustration { order: -1; max-width: 240px; margin: 0 auto; }
}
.buns-illustration {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 24px 60px var(--shadow-warm);
  animation: floatSlow 8s ease-in-out infinite;
  object-fit: cover;
  aspect-ratio: 4/5;
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ============ TEFILLOT / ACCORDION ============ */
.tefillot-section {
  position: relative;
  z-index: 2;
  padding: 100px 6vw 120px;
  max-width: 900px;
  margin: 0 auto;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, var(--cream), transparent);
}
.accordion { display: flex; flex-direction: column; gap: 16px; }
.acc-item {
  background: var(--card);
  border: 1px solid var(--parchment);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-warm);
}
.acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--wine);
  text-align: right;
}
.acc-icon {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
}
.acc-icon::before, .acc-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.acc-icon::before { width: 16px; height: 2px; }
.acc-icon::after { width: 2px; height: 16px; }
.acc-item.open .acc-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s var(--ease);
  padding: 0 28px;
}
.acc-item.open .acc-panel { padding-bottom: 28px; }
.prayer-step { margin-bottom: 22px; padding-inline-start: 18px; border-inline-start: 2px solid var(--gold-pale); }
.prayer-step h4 {
  margin: 0 0 8px;
  color: var(--terracotta);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
}
.prayer-step p, .prayer-block {
  font-family: var(--font-prayer);
  color: var(--brown);
  line-height: 2;
  font-size: 1.06rem;
  margin: 0 0 16px;
}
.bracha-text {
  font-family: var(--font-prayer);
  color: var(--wine);
  font-size: 1.2rem;
  line-height: 2.2;
  background: var(--cream);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 14px 0;
}
.bracha-text.small { text-align: center; font-size: 1.3rem; }
.bracha-alt { display: block; margin-top: 10px; font-size: 0.85rem; color: var(--brown-soft); font-family: var(--font-body); }
.minhag-tabs { margin-top: 20px; }

/* ============ FOOTER ============ */
.site-footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 90px 6vw 70px;
  background: var(--wine);
  color: var(--cream);
}
.footer-flourish {
  width: 60px; height: 2px;
  background: var(--gold-light);
  margin: 0 auto 26px;
  position: relative;
}
.footer-flourish::before {
  content: '❦';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  color: var(--gold-light);
  font-size: 1.3rem;
  background: var(--wine);
  padding: 0 10px;
}
.footer-verse {
  font-family: var(--font-prayer);
  font-weight: 700;
  font-size: 1.7rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--gold-light);
}
.footer-heart {
  display: block;
  margin: 18px auto 0;
  color: var(--gold-pale);
  opacity: 0.9;
}

/* ============ GYPSOPHILA SIDE DECORATIONS ============ */
.gyp-decor {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: 0.8;
}
.gyp-decor .gyp-svg { display: block; width: 100%; height: 100%; overflow: visible; }
.gyp-decor .gyp-stems path {
  stroke: var(--sage-deep);
  opacity: 0.75;
}
.gyp-decor .gyp-petal {
  fill: var(--ivory);
  stroke: var(--gold-pale);
  stroke-width: 0.35;
}
.gyp-decor .gyp-center { fill: var(--gold-light); }
.gyp-decor.mirror .gyp-svg { transform: scaleX(-1); }
.gyp-decor.upsidedown .gyp-svg { transform: rotate(180deg); }
.gyp-decor.mirror.upsidedown .gyp-svg { transform: scale(-1,-1); }

/* hero: pale flowers/stems that read against the dark video overlay */
.hero .gyp-decor { opacity: 0.65; z-index: 1; }
.hero .gyp-decor .gyp-stems path { stroke: rgba(236, 223, 198, 0.55); }
.hero .gyp-decor .gyp-petal { fill: rgba(255, 252, 247, 0.92); stroke: rgba(255,252,247,0.3); }
.hero .gyp-decor .gyp-center { fill: var(--gold-pale); }
.gyp-hero-bl { bottom: -30px; left: -20px; width: clamp(120px, 15vw, 210px); height: clamp(340px, 44vw, 560px); }
.gyp-hero-tr { top: -20px; right: -14px; width: clamp(90px, 11vw, 140px); height: clamp(150px, 18vw, 220px); }

.note-section { overflow: visible; }
.gyp-note-l { bottom: -10px; left: -6px; width: clamp(90px, 10vw, 140px); height: clamp(210px, 24vw, 320px); }

.recipe-section { overflow: visible; }
.gyp-recipe-r { bottom: -20px; right: -10px; width: clamp(90px, 10vw, 145px); height: clamp(210px, 24vw, 320px); }

.tefillot-section { overflow: visible; }
.gyp-tefillot-l { bottom: 40px; left: -18px; width: clamp(100px, 12vw, 170px); height: clamp(260px, 30vw, 470px); }
.gyp-tefillot-r { top: -10px; right: -10px; width: clamp(80px, 9vw, 130px); height: clamp(125px, 14vw, 200px); }

.site-footer .gyp-decor { opacity: 0.5; }
.site-footer .gyp-decor .gyp-stems path { stroke: rgba(236, 223, 198, 0.5); }
.site-footer .gyp-decor .gyp-petal { fill: rgba(255, 252, 247, 0.85); stroke: none; }
.site-footer .gyp-decor .gyp-center { fill: var(--gold-pale); }
.gyp-footer-c { bottom: 6px; left: 50%; transform: translateX(-50%); width: clamp(70px, 8vw, 100px); height: clamp(110px, 12vw, 160px); }

@media (max-width: 860px) {
  .gyp-hero-tr { width: clamp(80px, 20vw, 120px); height: clamp(130px, 32vw, 190px); opacity: 0.7; }
  .gyp-tefillot-r { width: clamp(70px, 18vw, 110px); height: clamp(110px, 28vw, 170px); opacity: 0.6; }
  .gyp-hero-bl { width: clamp(110px, 30vw, 160px); height: clamp(280px, 68vw, 420px); opacity: 0.75; }
  .gyp-note-l, .gyp-recipe-r, .gyp-tefillot-l { width: clamp(80px, 22vw, 120px); opacity: 0.65; }
  .gyp-footer-c { width: clamp(60px, 16vw, 90px); height: clamp(95px, 24vw, 140px); }
}
@media (max-width: 560px) {
  .gyp-hero-bl, .gyp-note-l, .gyp-recipe-r, .gyp-tefillot-l { opacity: 0.6; }
  .gyp-hero-tr, .gyp-tefillot-r { opacity: 0.55; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 600px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.8rem; }
  .hero { padding-top: 120px; }
  .ingredients-card, .method-card { padding: 30px 22px; }
  .acc-header { padding: 18px 20px; font-size: 1rem; }
}
@media (max-width: 720px) {
  .nav-mark { display: none; }
  .bsd-mark { right: 6vw; }
}
