/* ============================================
   THEME SWITCHER PANEL
   ============================================ */
.switch-trigger {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(6,4,9,.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  cursor: none;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s var(--ease);
  box-shadow: 0 8px 30px rgba(0,0,0,.5), 0 0 0 0 var(--gold);
}
.switch-trigger:hover {
  border-color: var(--gold-bright);
  box-shadow: 0 8px 30px rgba(0,0,0,.5), 0 0 0 4px rgba(201,169,97,.15);
  transform: rotate(45deg) scale(1.05);
}
.switch-trigger svg {
  width: 28px; height: 28px;
  animation: spin 30s linear infinite;
}

.switch-panel {
  position: fixed;
  top: 0; right: -380px;
  width: 360px;
  max-width: 92vw;
  height: 100vh;
  background: linear-gradient(180deg, rgba(6,4,9,.96), rgba(12,8,21,.98));
  backdrop-filter: blur(30px);
  border-left: 1px solid rgba(201,169,97,.2);
  z-index: 95;
  transition: right .6s var(--ease);
  overflow-y: auto;
  padding: 36px 32px;
  color: var(--moon);
}
.switch-panel.open { right: 0; }
.switch-panel::before {
  content: "";
  position: absolute;
  top: 16px; left: 16px;
  width: 24px; height: 24px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  pointer-events: none;
}
.switch-panel::after {
  content: "";
  position: absolute;
  bottom: 16px; right: 16px;
  width: 24px; height: 24px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  pointer-events: none;
}

.switch-head {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201,169,97,.15);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.switch-head h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--moon);
  margin-bottom: 4px;
}
.switch-head .sub {
  font-family: var(--script);
  font-size: 24px;
  color: var(--gold-bright);
  line-height: 1;
}
.switch-close {
  background: none;
  border: 1px solid rgba(201,169,97,.3);
  color: var(--gold);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: none;
  font-size: 18px;
  transition: all .3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.switch-close:hover { border-color: var(--gold-bright); color: var(--gold-bright); transform: rotate(90deg); }

.switch-section {
  margin-bottom: 32px;
}
.switch-section h4 {
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.switch-section h4::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.theme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.theme-card {
  background: rgba(20,16,31,.5);
  border: 1px solid rgba(201,169,97,.2);
  padding: 16px;
  cursor: none;
  transition: all .35s var(--ease);
  text-align: left;
  color: inherit;
  font-family: inherit;
}
.theme-card:hover { border-color: rgba(201,169,97,.5); transform: translateY(-2px); }
.theme-card.active { border-color: var(--gold-bright); box-shadow: inset 0 0 0 1px var(--gold-bright); }
.theme-card .swatches {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}
.theme-card .sw {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(237,230,210,.15);
}
.theme-card .name {
  font-family: var(--display);
  font-size: 14px;
  color: var(--moon);
  margin-bottom: 2px;
  font-weight: 500;
  display: block;
}
.theme-card .ka {
  font-size: 11px;
  color: var(--mist);
  letter-spacing: .05em;
  display: block;
}

.bg-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bg-option {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(20,16,31,.5);
  border: 1px solid rgba(201,169,97,.2);
  padding: 14px 16px;
  cursor: none;
  transition: all .35s var(--ease);
  color: inherit;
  font-family: inherit;
  text-align: left;
}
.bg-option:hover { border-color: rgba(201,169,97,.5); transform: translateX(4px); }
.bg-option.active { border-color: var(--gold-bright); background: rgba(201,169,97,.05); }
.bg-option .icon-wrap {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(6,4,9,.6);
  border: 1px solid rgba(201,169,97,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  position: relative;
  overflow: hidden;
}
.bg-option .icon-wrap svg { width: 22px; height: 22px; }
.bg-option .info { flex: 1; }
.bg-option .info .nm {
  font-family: var(--display);
  font-size: 14px;
  color: var(--moon);
  display: block;
  font-weight: 500;
}
.bg-option .info .desc {
  font-size: 11px;
  color: var(--mist);
  letter-spacing: .03em;
  margin-top: 2px;
  display: block;
  font-style: italic;
}
.bg-option .check {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,97,.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}
.bg-option.active .check {
  border-color: var(--gold-bright);
  background: var(--gold-bright);
  color: var(--void);
}
.bg-option .check::after {
  content: "✦";
  font-size: 10px;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.bg-option.active .check::after { opacity: 1; }

.switch-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(2px);
  z-index: 94;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.switch-overlay.show { opacity: 1; pointer-events: auto; }
.theme-toast {
  position: fixed;
  right: 28px;
  bottom: 96px;
  z-index: 96;
  border: 1px solid rgba(201,169,97,.35);
  background: rgba(6,4,9,.9);
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .08em;
  padding: 10px 14px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.theme-toast.show {
  opacity: 1;
  transform: translateY(0);
}
.theme-toast.error {
  border-color: rgba(194,64,46,.55);
  color: var(--ember);
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--gold-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  box-shadow: 0 0 12px var(--gold-bright);
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,97,.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: width .3s var(--ease), height .3s var(--ease), border-color .3s var(--ease);
}
.cursor-ring.hover {
  width: 64px; height: 64px;
  border-color: var(--gold-bright);
  background: rgba(201,169,97,.05);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .5s var(--ease);
  backdrop-filter: blur(0px);
}
.nav.scrolled {
  background: rgba(6,4,9,.65);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,169,97,.12);
  padding: 18px 48px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--moon);
}
.brand-mark {
  width: 38px; height: 38px;
  animation: spin 60s linear infinite;
}
.brand-text {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: .25em;
  font-size: 14px;
  text-transform: uppercase;
}
.brand-text span {
  color: var(--gold);
  font-family: var(--script);
  font-size: 22px;
  text-transform: lowercase;
  letter-spacing: 0;
  margin-left: 4px;
  vertical-align: -2px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.nav-menu {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-menu a {
  color: var(--mist);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav-menu a::before {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease);
}
.nav-menu a:hover { color: var(--gold-bright); }
.nav-menu a:hover::before { width: 100%; }
.nav-menu a.active { color: var(--gold); }
.nav-menu a.active::before { width: 100%; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  cursor: none;
}

/* ============================================
   PAGE / SECTION SYSTEM
   ============================================ */
.page {
  display: none;
  min-height: 100vh;
  padding: 140px 48px 120px;
  animation: pageIn .8s var(--ease) both;
}
.page.active { display: block; }

@keyframes pageIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  padding: 40px 0 60px;
}

.hero-geometry {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: .35;
}
.hero-geometry svg {
  width: min(70vh, 90vw);
  height: min(70vh, 90vw);
  animation: spin 120s linear infinite;
}
.hero-geometry .inner {
  animation: spin 80s linear infinite reverse;
}

.hero-eyebrow {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: rise 1.2s var(--ease) .2s forwards;
  display: flex;
  align-items: center;
  gap: 18px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 112px);
  line-height: .95;
  letter-spacing: -.01em;
  color: var(--moon);
  opacity: 0;
  animation: rise 1.4s var(--ease) .5s forwards;
  position: relative;
  z-index: 2;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(180deg, var(--gold-bright), var(--ember));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  display: block;
}
.hero-title .accent {
  font-family: var(--script);
  font-size: clamp(56px, 9vw, 130px);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dim));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  color: var(--mist);
  max-width: 560px;
  margin: 36px auto 0;
  font-style: italic;
  opacity: 0;
  animation: rise 1.4s var(--ease) .9s forwards;
  letter-spacing: .02em;
  position: relative;
  z-index: 2;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  opacity: 0;
  animation: rise 1.4s var(--ease) 1.2s forwards;
  position: relative;
  z-index: 2;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--moon);
  background: transparent;
  border: 1px solid var(--gold);
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: all .4s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--gold) 0%, var(--ember) 100%);
  transform: translateX(-101%);
  transition: transform .5s var(--ease);
  z-index: -1;
}
.btn:hover { color: var(--void); border-color: var(--gold-bright); }
.btn:hover::before { transform: translateX(0); }
.btn.ghost { border-color: rgba(237,230,210,.25); }
.btn.ghost:hover { border-color: var(--gold-bright); }

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--mist);
  opacity: .6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-hint::after {
  content: "";
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(.4); opacity: .3; }
}

/* ============================================
   MOON PHASES STRIP
   ============================================ */
.moon-strip {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 80px;
  opacity: 0;
  animation: rise 1.6s var(--ease) 1.5s forwards;
  position: relative;
  z-index: 2;
}
.moon-strip .phase {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(237,230,210,.3);
  position: relative;
  background: var(--void);
}
.moon-strip .phase.full { background: var(--moon); border-color: var(--moon); box-shadow: 0 0 20px rgba(237,230,210,.5); }
.moon-strip .phase.waxing-gibbous { background: radial-gradient(circle at 65% 50%, var(--moon) 50%, var(--void) 51%); }
.moon-strip .phase.first-quarter { background: linear-gradient(90deg, var(--void) 50%, var(--moon) 50%); }
.moon-strip .phase.waxing-crescent { background: radial-gradient(circle at 80% 50%, var(--moon) 25%, var(--void) 26%); }
.moon-strip .phase.new { background: var(--void); }
.moon-strip .phase.waning-crescent { background: radial-gradient(circle at 20% 50%, var(--moon) 25%, var(--void) 26%); }
.moon-strip .phase.last-quarter { background: linear-gradient(90deg, var(--moon) 50%, var(--void) 50%); }
.moon-strip .phase.waning-gibbous { background: radial-gradient(circle at 35% 50%, var(--moon) 50%, var(--void) 51%); }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-eyebrow {
  font-size: 11px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: "✦";
  color: var(--gold);
  font-size: 8px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--moon);
  margin-bottom: 20px;
}
.section-title .script {
  font-family: var(--script);
  font-size: clamp(48px, 6.5vw, 88px);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dim));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 400;
}
.section-sub {
  font-size: 16px;
  color: var(--mist);
  font-style: italic;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-portrait {
  position: relative;
  aspect-ratio: 3/4;
  border: 1px solid rgba(201,169,97,.25);
  background: linear-gradient(135deg, var(--shadow), var(--wine));
  overflow: hidden;
}
.about-portrait::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201,169,97,.4);
  pointer-events: none;
  z-index: 2;
}
.about-portrait .veve {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .5;
}
.about-portrait .veve svg {
  width: 70%;
  height: 70%;
  animation: spin 90s linear infinite;
}
.about-portrait .corner {
  position: absolute;
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
  z-index: 3;
}
.about-portrait .corner.tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.about-portrait .corner.tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.about-portrait .corner.bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.about-portrait .corner.br { bottom: 10px; right: 10px; border-left: none; border-top: none; }

.about-text h3 {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--moon);
}
.about-text .signature {
  font-family: var(--script);
  font-size: 42px;
  color: var(--gold-bright);
  display: block;
  margin-bottom: 32px;
  line-height: 1;
}
.about-text p {
  color: var(--mist);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.85;
}
/* drop-cap removed — owner wants normal paragraph start on About page */

.credentials {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,169,97,.18);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.credentials .item {
  text-align: center;
}
.credentials .num {
  font-family: var(--display);
  font-size: 36px;
  color: var(--gold);
  font-weight: 300;
  display: block;
}
.credentials .lbl {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 6px;
  display: block;
}

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

.service-card {
  position: relative;
  padding: 48px 32px 40px;
  background: linear-gradient(165deg, rgba(20,16,31,.85), rgba(12,8,21,.95));
  border: 1px solid rgba(201,169,97,.18);
  cursor: none;
  transition: all .5s var(--ease);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,169,97,.15), transparent 60%);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  transition: all .5s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,169,97,.5);
  box-shadow: 0 30px 60px -20px rgba(107,68,136,.4), 0 0 0 1px rgba(201,169,97,.15);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { width: 60px; height: 60px; }

.service-icon {
  width: 64px; height: 64px;
  margin-bottom: 28px;
  color: var(--gold-bright);
  transition: transform .6s var(--ease);
}
.service-card:hover .service-icon {
  transform: rotate(15deg) scale(1.1);
}
.service-num {
  position: absolute;
  top: 32px; right: 32px;
  font-family: var(--display);
  font-size: 14px;
  color: var(--gold-dim);
  letter-spacing: .2em;
}
.service-card h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  color: var(--moon);
  margin-bottom: 8px;
}
.service-card .sub {
  font-family: var(--script);
  font-size: 22px;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.service-card p {
  color: var(--mist);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 24px;
  flex-grow: 1;
}
.service-card .price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(201,169,97,.15);
}
.service-card .price-tag {
  font-family: var(--display);
  font-size: 22px;
  color: var(--gold-bright);
}
.service-card .price-tag small {
  font-size: 11px;
  color: var(--mist);
  letter-spacing: .15em;
  margin-left: 4px;
  font-family: var(--serif);
}
.service-card .arrow {
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all .4s var(--ease);
}
.service-card:hover .arrow {
  background: var(--gold);
  color: var(--void);
  transform: rotate(-45deg);
}

/* ============================================
   PRODUCTS · პროდუქტები
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  position: relative;
  background: linear-gradient(180deg, rgba(20,16,31,.7), rgba(31,13,34,.5));
  border: 1px solid rgba(201,169,97,.15);
  overflow: hidden;
  transition: all .5s var(--ease);
  cursor: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-id-chip {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  padding: .22rem .42rem;
  border: 1px solid rgba(232, 200, 120, 0.3);
  background: rgba(10, 10, 15, 0.58);
  color: rgba(232, 200, 120, 0.76);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: .08em;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,169,97,.45);
  box-shadow: 0 25px 50px -20px rgba(0,0,0,.6);
}
.product-img {
  aspect-ratio: 16/10;
  max-height: 280px;
  position: relative;
  background: radial-gradient(circle at 50% 40%, var(--shadow), var(--void));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,169,97,.18);
}
.product-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,169,97,.12), transparent 60%);
}
.product-img svg {
  width: 60%;
  height: 60%;
  position: relative;
  z-index: 2;
  transition: transform .8s var(--ease);
}
.product-card:hover .product-img svg {
  transform: rotate(-8deg) scale(1.08);
}

.smoke {
  position: absolute;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
.smoke span {
  position: absolute;
  bottom: 30%;
  left: 48%;
  width: 8px; height: 8px;
  background: rgba(237,230,210,.15);
  border-radius: 50%;
  filter: blur(8px);
  animation: smoke 5s ease-in infinite;
}
.smoke span:nth-child(2) { left: 52%; animation-delay: 1s; }
.smoke span:nth-child(3) { left: 50%; animation-delay: 2s; }
.smoke span:nth-child(4) { left: 46%; animation-delay: 3s; }

@keyframes smoke {
  0%   { transform: translate(0, 0) scale(1); opacity: 0; }
  20%  { opacity: .7; }
  100% { transform: translate(15px, -120px) scale(3.5); opacity: 0; }
}

.product-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-body .tag {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.product-body h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  color: var(--moon);
  margin-bottom: 8px;
}
.product-body .desc {
  font-size: 13.5px;
  color: var(--mist);
  line-height: 1.65;
  margin-bottom: 14px;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(201,169,97,.12);
  margin-top: auto;
}
.product-price {
  font-family: var(--display);
  font-size: 18px;
  color: var(--gold-bright);
}
.product-buy {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--moon);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  transition: color .3s var(--ease);
}
.product-buy:hover { color: var(--gold-bright); }

.product-order-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  background: rgba(201,169,97,.08);
  color: var(--gold-bright);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: all .35s var(--ease);
  width: 100%;
  box-sizing: border-box;
}
.product-order-cta:hover {
  background: rgba(201,169,97,.18);
  color: var(--moon);
  gap: 14px;
}

.products-action {
  display: flex;
  justify-content: center;
  margin: -1rem 0 2rem;
}

/* ============================================
   BOOKING / CONTACT
   ============================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
  gap: 40px;
  align-items: start;
  text-align: center;
}
.contact-wrap .contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-wrap .contact-items { width: 100%; max-width: 360px; }
.contact-info h3 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  color: var(--moon);
  margin-bottom: 8px;
}
.contact-info .signature {
  font-family: var(--script);
  font-size: 36px;
  color: var(--gold-bright);
  margin-bottom: 28px;
  display: block;
}
.contact-info p {
  color: var(--mist);
  margin-bottom: 36px;
  line-height: 1.85;
}

.contact-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-items li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(201,169,97,.15);
  background: rgba(20,16,31,.4);
  transition: all .4s var(--ease);
}
.contact-items li:hover {
  border-color: rgba(201,169,97,.45);
  transform: translateX(6px);
}
.contact-items .ico {
  width: 36px; height: 36px;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-items .lbl {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-items .val {
  color: var(--moon);
  font-size: 15px;
  text-decoration: none;
}

.book-form {
  background: linear-gradient(165deg, rgba(20,16,31,.85), rgba(31,13,34,.7));
  border: 1px solid rgba(201,169,97,.2);
  padding: 44px 40px;
  position: relative;
}
.book-form::before, .book-form::after {
  content: "";
  position: absolute;
  width: 30px; height: 30px;
  border: 1px solid var(--gold);
}
.book-form::before { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.book-form::after { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.form-title {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--moon);
  text-align: center;
}
.form-sub {
  text-align: center;
  font-family: var(--script);
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 32px;
}

.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201,169,97,.25);
  color: var(--moon);
  font-family: var(--serif);
  font-size: 15px;
  padding: 10px 0;
  outline: none;
  cursor: none;
  transition: border-color .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold-bright);
}
.field textarea {
  resize: vertical;
  min-height: 80px;
}
.field select option {
  background: var(--night);
  color: var(--moon);
}
.field .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.book-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}
.book-form .book-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  margin-top: 1rem;
  padding: .85rem 1rem;
  text-decoration: none;
  border: 1px solid rgba(232, 200, 120, 0.3);
  border-radius: 3px;
  color: rgba(237, 230, 210, 0.78);
  font-family: var(--serif, "Cormorant Garamond", serif);
  font-size: .95rem;
  letter-spacing: .02em;
  transition: all .25s;
}
.book-form .book-instagram:hover {
  border-color: rgba(232, 200, 120, 0.6);
  color: var(--gold-bright, #f5e6c4);
  background: rgba(232, 200, 120, 0.06);
}
.book-form .book-instagram .ico {
  width: 20px;
  height: 20px;
  color: var(--gold, #c9a961);
  flex-shrink: 0;
}
.book-form .book-instagram:hover .ico {
  color: var(--gold-bright, #f5e6c4);
}

/* ============================================
   BLOG / RESOURCES
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.blog-card {
  position: relative;
  background: linear-gradient(165deg, rgba(20,16,31,.6), rgba(12,8,21,.85));
  border: 1px solid rgba(201,169,97,.15);
  padding: 36px;
  transition: all .5s var(--ease);
  cursor: none;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.blog-card:hover {
  border-color: rgba(201,169,97,.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(107,68,136,.4);
}
.blog-icon {
  width: 64px; height: 64px;
  flex-shrink: 0;
  color: var(--gold);
}
.blog-card .meta {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.blog-card .meta::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.blog-card h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  color: var(--moon);
  margin-bottom: 12px;
  line-height: 1.25;
}
.blog-card p {
  color: var(--mist);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.blog-card .read {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .3s var(--ease);
}
.blog-card .read:hover { gap: 14px; color: var(--gold-bright); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  border-top: 1px solid rgba(201,169,97,.15);
  padding: 60px 48px 36px;
  position: relative;
  z-index: 5;
  margin-top: 80px;
}
.foot-top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.foot-col h4 {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col a {
  color: var(--mist);
  text-decoration: none;
  font-size: 14px;
  transition: color .3s var(--ease);
}
.foot-col a:hover { color: var(--gold-bright); }
.foot-col p {
  color: var(--mist);
  font-size: 14px;
  line-height: 1.75;
  font-style: italic;
}
.foot-brand .signature {
  font-family: var(--script);
  font-size: 38px;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 12px;
}
.foot-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(201,169,97,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--mist);
  letter-spacing: .1em;
}
.foot-bottom .symbols {
  display: flex;
  gap: 18px;
  color: var(--gold);
  font-size: 14px;
}
.brand-admin-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color .3s var(--ease, ease);
}
.brand-admin-link:hover { color: var(--gold-bright, #e8c878); }
.identity-stats {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 .25rem;
  border-left: 1px solid rgba(232, 200, 120, 0.25);
}
.identity-stats:hover { color: var(--gold-bright); }
.identity-stats[hidden] { display: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   HOME · PATH SELECTOR (large interactive cards)
   ============================================ */
.path-section {
  padding: 40px 0 0;
  position: relative;
}
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(201,169,97,.2);
  background: rgba(6,4,9,.4);
  backdrop-filter: blur(4px);
}
.path-card {
  position: relative;
  padding: 56px 40px 48px;
  cursor: none;
  border-right: 1px solid rgba(201,169,97,.15);
  transition: all .6s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 460px;
  background: transparent;
  text-decoration: none;
  color: inherit;
}
.path-card:last-child { border-right: none; }
.path-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(201,169,97,.18), transparent 60%);
  opacity: 0;
  transition: opacity .6s var(--ease);
  pointer-events: none;
}
.path-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  transition: width .6s var(--ease);
}
.path-card:hover {
  background: linear-gradient(180deg, rgba(20,16,31,.4), rgba(31,13,34,.3));
}
.path-card:hover::before { opacity: 1; }
.path-card:hover::after { width: 80%; }
.path-card:hover .path-glyph { transform: rotate(15deg) scale(1.08); }
.path-card:hover .path-glyph circle:first-child { animation-duration: 8s; }

.path-num {
  font-family: var(--script);
  font-size: 38px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  opacity: .8;
}

.path-glyph {
  width: 130px; height: 130px;
  margin-bottom: 28px;
  color: var(--gold-bright);
  transition: transform .8s var(--ease);
  position: relative;
}
.path-glyph svg { width: 100%; height: 100%; }

.path-card h3 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  color: var(--moon);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.path-card .path-sub {
  font-family: var(--script);
  font-size: 26px;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}
.path-card .path-price {
  font-family: var(--display);
  font-size: 18px;
  color: var(--gold-bright);
  letter-spacing: .02em;
  margin-bottom: 18px;
  display: block;
}
.path-card p {
  color: var(--mist);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 280px;
}
.path-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  transition: all .4s var(--ease);
}
.path-card:hover .path-cta {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
  gap: 18px;
}

/* ============================================
   HOME · FEATURED PRODUCTS RIBBON
   ============================================ */
.featured {
  padding: 100px 0;
  position: relative;
}
.featured-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 40px;
  flex-wrap: wrap;
}
.featured-head .left {
  flex: 1;
  min-width: 280px;
}
.featured-head .section-eyebrow {
  margin-bottom: 14px;
  display: inline-flex;
}
.featured-head h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  color: var(--moon);
  line-height: 1.05;
}
.featured-head h2 .script {
  font-family: var(--script);
  font-size: clamp(44px, 5.5vw, 72px);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dim));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 400;
}
.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  transition: all .4s var(--ease);
  cursor: none;
}
.featured-link:hover { color: var(--gold-bright); border-color: var(--gold-bright); gap: 18px; }

.featured-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,169,97,.4) transparent;
}
.featured-grid::-webkit-scrollbar { height: 8px; }
.featured-grid::-webkit-scrollbar-track { background: transparent; }
.featured-grid::-webkit-scrollbar-thumb { background: rgba(201,169,97,.35); border-radius: 4px; }
.featured-grid::-webkit-scrollbar-thumb:hover { background: rgba(201,169,97,.6); }
.featured-grid > .product-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

/* ============================================
   HOME · ABOUT TEASER
   ============================================ */
.about-teaser {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
}
.about-teaser .visual {
  position: relative;
  aspect-ratio: 1/1.1;
  border: 1px solid rgba(201,169,97,.25);
  background: linear-gradient(135deg, var(--shadow), var(--wine));
  overflow: hidden;
  max-width: 480px;
}
.about-teaser .visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201,169,97,.35);
  pointer-events: none;
  z-index: 2;
}
.about-teaser .visual .glyph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .6;
}
.about-teaser .visual .glyph svg {
  width: 75%; height: 75%;
  animation: spin 100s linear infinite;
}
.about-teaser .visual .corner {
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
  z-index: 3;
}
.about-teaser .visual .corner.tl { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.about-teaser .visual .corner.tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.about-teaser .visual .corner.bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }
.about-teaser .visual .corner.br { bottom: 8px; right: 8px; border-left: none; border-top: none; }

.about-teaser .copy h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  color: var(--moon);
  margin-bottom: 8px;
  line-height: 1.05;
}
.about-teaser .copy h2 .script {
  font-family: var(--script);
  font-size: clamp(44px, 5.5vw, 72px);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dim));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}
.about-teaser .copy p {
  color: var(--mist);
  font-size: 16px;
  line-height: 1.85;
  margin: 24px 0 32px;
}
.about-teaser .quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(201,169,97,.18);
  border-bottom: 1px solid rgba(201,169,97,.18);
}
.about-teaser .quick-stats .stat {
  text-align: center;
}
.about-teaser .quick-stats .num {
  font-family: var(--display);
  font-size: 30px;
  color: var(--gold);
  display: block;
  font-weight: 300;
}
.about-teaser .quick-stats .lbl {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 4px;
  display: block;
}

/* ============================================
   HOME · FINAL CTA (booking band)
   ============================================ */
.cta-band {
  margin: 100px 0 40px;
  padding: 80px 48px;
  position: relative;
  background:
    radial-gradient(circle at 50% 50%, var(--bg-glow-a), transparent 70%),
    linear-gradient(180deg, rgba(20,16,31,.6), rgba(31,13,34,.4));
  border: 1px solid rgba(201,169,97,.25);
  text-align: center;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--bg-glow-a), transparent 70%);
  filter: blur(40px);
}
.cta-band::before { top: -100px; left: -100px; }
.cta-band::after { bottom: -100px; right: -100px; background: radial-gradient(circle, var(--bg-glow-b), transparent 70%); }
.cta-band .corner {
  position: absolute;
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  z-index: 2;
}
.cta-band .corner.tl { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.cta-band .corner.tr { top: 14px; right: 14px; border-left: none; border-bottom: none; }
.cta-band .corner.bl { bottom: 14px; left: 14px; border-right: none; border-top: none; }
.cta-band .corner.br { bottom: 14px; right: 14px; border-left: none; border-top: none; }

.cta-band .ornament {
  width: 60px; height: 60px;
  margin: 0 auto 24px;
  color: var(--gold);
  position: relative;
  z-index: 2;
}
.cta-band .ornament svg {
  width: 100%; height: 100%;
  animation: spin 30s linear infinite;
}
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 300;
  color: var(--moon);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.cta-band h2 .script {
  font-family: var(--script);
  font-size: clamp(44px, 5.5vw, 64px);
  color: var(--gold-bright);
  font-weight: 400;
}
.cta-band p {
  color: var(--mist);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto 32px;
  font-style: italic;
  position: relative;
  z-index: 2;
}
.cta-band .cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* utility */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 60px 0 40px;
  color: var(--gold);
}
.divider::before, .divider::after {
  content: "";
  height: 1px;
  width: 120px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider svg { width: 22px; height: 22px; }

/* === Per-post / Per-product entry pages === */
.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 2.4rem;
  border-bottom: 1px solid rgba(232, 200, 120, 0.15);
  font-family: var(--font-serif, "Cormorant Garamond", serif);
}
.site-header .brand .signature { font-size: 1.8rem; color: var(--gold-bright, #e8c878); }
.site-header nav a { color: rgba(232, 200, 120, 0.75); text-decoration: none; margin: 0 .35rem; font-size: .92rem; }
.site-header nav a:hover { color: var(--gold-bright, #e8c878); }

.entry-page {
  max-width: 760px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 5;
}
.entry-meta {
  font-size: .85rem;
  color: rgba(232, 200, 120, 0.7);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.entry-meta .tag {
  display: inline-flex;
  align-items: center;
  margin: 0 .45rem .45rem 0;
  padding: .22rem .55rem;
  border: 1px solid rgba(232, 200, 120, 0.38);
  border-radius: 999px;
  color: var(--gold-bright, #e8c878);
  background: rgba(232, 200, 120, 0.05);
}
.entry-title {
  font-size: 2.4rem;
  font-family: var(--font-display, "Cinzel", serif);
  color: var(--gold-bright, #e8c878);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}
.entry-cover {
  width: 100%;
  max-height: 360px;
  height: auto;
  object-fit: contain;
  margin-bottom: 2rem;
  border-radius: 4px;
  cursor: zoom-in;
}
.entry-body {
  font-family: var(--font-body, "Cormorant Garamond", serif);
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(237, 230, 210, 0.92);
}
.entry-body p { margin: 0 0 1.2rem; }
.entry-body h2, .entry-body h3 {
  color: var(--gold-bright, #e8c878);
  font-family: var(--font-display, "Cinzel", serif);
  margin-top: 2rem;
}
.entry-body a { color: var(--gold-bright, #e8c878); }
.entry-share {
  margin: 3rem 0 1rem;
  font-size: .9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid rgba(232, 200, 120, 0.15);
  padding-top: 1.5rem;
}
.entry-share a, .entry-share button {
  color: var(--gold-bright, #e8c878);
  background: transparent;
  border: 1px solid rgba(232, 200, 120, 0.3);
  padding: .4rem .9rem;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  border-radius: 2px;
}
.entry-share a:hover, .entry-share button:hover {
  border-color: var(--gold-bright, #e8c878);
}
.entry-back {
  display: inline-block;
  margin-top: 2rem;
  color: rgba(232, 200, 120, 0.7);
  text-decoration: none;
  font-size: .95rem;
}
.entry-back:hover { color: var(--gold-bright, #e8c878); }

/* Product entry */
.product-entry-page {
  width: 100%;
  max-width: 1060px;
  margin: clamp(5rem, 9vw, 7rem) auto 4rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.product-entry .entry-title {
  max-width: 920px;
  margin-bottom: 1.6rem;
  overflow-wrap: anywhere;
}

.product-entry .product-gallery {
  width: 100%;
  max-width: 700px;
  margin: 1.7rem auto 1.35rem;
}

.product-entry .product-gallery--row {
  max-width: 820px;
  margin: 2rem auto 2.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem;
}

.product-entry .product-gallery-cell {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(232, 200, 120, 0.22);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(10, 3, 6, 0.32);
  cursor: zoom-in;
  padding: 0;
  display: block;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.product-entry .product-gallery-cell:hover,
.product-entry .product-gallery-cell:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(232, 200, 120, 0.55);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  outline: none;
}

.product-entry .product-gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease, filter .55s ease;
  filter: brightness(.92) saturate(.9);
}

.product-entry .product-gallery-cell:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1);
}

@media (max-width: 640px) {
  .product-entry .product-gallery--row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.product-entry .product-gallery-stage {
  position: relative;
  width: 100%;
  min-height: 280px;
  max-height: 420px;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(232, 200, 120, 0.22);
  border-radius: 6px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 12%, rgba(245, 230, 196, 0.10), transparent 35%),
    rgba(10, 3, 6, 0.32);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.product-entry .product-gallery-slide {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: clamp(1rem, 3vw, 2rem);
  display: none;
}

.product-entry .product-gallery-slide.is-active {
  display: flex;
}

.product-entry .product-gallery-slide[hidden] {
  display: none;
}

.product-entry .product-gallery-slide .product-photo {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 3px;
  cursor: zoom-in;
}

.product-entry .product-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 58px;
  border: 1px solid rgba(245, 230, 196, 0.38);
  border-radius: 999px;
  background: rgba(10, 3, 6, 0.58);
  color: var(--gold-bright, #e8c878);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: transform .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
}

.product-entry .product-gallery-arrow::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.product-entry .product-gallery-arrow--prev {
  left: 1rem;
}

.product-entry .product-gallery-arrow--prev::before {
  transform: translateX(3px) rotate(-45deg);
}

.product-entry .product-gallery-arrow--next {
  right: 1rem;
}

.product-entry .product-gallery-arrow--next::before {
  transform: translateX(-3px) rotate(135deg);
}

.product-entry .product-gallery-arrow:hover,
.product-entry .product-gallery-arrow:focus-visible {
  border-color: var(--gold-bright, #e8c878);
  background: rgba(90, 16, 32, 0.72);
  outline: none;
}

.product-entry .product-gallery-arrow--prev:hover,
.product-entry .product-gallery-arrow--prev:focus-visible {
  transform: translate(-3px, -50%);
}

.product-entry .product-gallery-arrow--next:hover,
.product-entry .product-gallery-arrow--next:focus-visible {
  transform: translate(3px, -50%);
}

.product-entry .product-gallery-count {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  min-width: 58px;
  padding: .35rem .55rem;
  border: 1px solid rgba(232, 200, 120, 0.28);
  border-radius: 999px;
  background: rgba(10, 3, 6, 0.62);
  color: rgba(245, 230, 196, 0.92);
  font-family: var(--display, "Cinzel", serif);
  font-size: .78rem;
  text-align: center;
}

.product-entry .product-gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  margin-top: .85rem;
}

.product-entry .product-gallery-tab {
  position: relative;
  width: 72px;
  height: 72px;
  padding: 3px;
  border: 1px solid rgba(232, 200, 120, 0.3);
  border-radius: 6px;
  background: rgba(10, 3, 6, 0.35);
  opacity: .72;
  transition: opacity .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
}

.product-entry .product-gallery-tab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

.product-entry .product-gallery-tab span {
  position: absolute;
  right: -7px;
  top: -7px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(245, 230, 196, 0.5);
  background: rgba(90, 16, 32, 0.9);
  color: var(--gold-bright, #e8c878);
  display: grid;
  place-items: center;
  font-family: var(--display, "Cinzel", serif);
  font-size: .72rem;
}

.product-entry .product-gallery-tab.is-active,
.product-entry .product-gallery-tab:hover,
.product-entry .product-gallery-tab:focus-visible {
  opacity: 1;
  border-color: var(--gold-bright, #e8c878);
  transform: translateY(-2px);
  outline: none;
}

.product-entry .product-icon {
  width: 200px;
  margin: 0 auto;
  opacity: .6;
}

.product-entry .product-gallery--empty {
  display: flex;
  justify-content: center;
}

.product-entry .product-price {
  font-size: 1.4rem;
  color: var(--gold-bright, #e8c878);
  margin: 1rem 0;
  font-family: var(--font-display, "Cinzel", serif);
}
.product-entry .product-size { font-size: .9rem; color: rgba(232, 200, 120, 0.7); }
.product-id-badge {
  display: inline-flex;
  vertical-align: middle;
  margin-left: .45rem;
  padding: .18rem .42rem;
  border: 1px solid rgba(232, 200, 120, 0.34);
  color: rgba(232, 200, 120, 0.82);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .72rem;
  letter-spacing: .08em;
}
.product-entry .product-short {
  font-style: italic;
  color: rgba(237, 230, 210, 0.85);
  margin-bottom: 1.5rem;
}
.entry-cta {
  display: inline-block;
  margin: 2rem 0 1rem;
  padding: .8rem 1.6rem;
  background: var(--gold-bright, #e8c878);
  color: #14101f;
  text-decoration: none;
  font-family: var(--font-display, "Cinzel", serif);
  letter-spacing: .1em;
  border-radius: 2px;
}
.entry-cta:hover { opacity: .9; }
.entry-cta-row {
  display: flex;
  align-items: stretch;
  gap: .9rem;
  margin: 2rem 0 1rem;
}
.entry-cta-row .entry-cta {
  flex: 1;
  margin: 0;
  text-align: center;
}
.entry-cta.secondary {
  background: transparent;
  color: var(--gold-bright, #e8c878);
  border: 1px solid rgba(232, 200, 120, 0.38);
}
.entry-cta.secondary:hover {
  background: rgba(232, 200, 120, 0.1);
  opacity: 1;
}

/* Product order modal */
body.order-modal-open {
  overflow: hidden;
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.order-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.order-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 8, 0.7);
  backdrop-filter: blur(6px);
}

.order-modal__dialog {
  position: relative;
  width: min(100%, 520px);
  max-height: min(90vh, 760px);
  overflow-y: auto;
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 200, 120, 0.12), transparent 58%),
    var(--void, #0a0a0f);
  border: 1px solid rgba(232, 200, 120, 0.52);
  box-shadow:
    inset 0 0 32px rgba(232, 200, 120, 0.08),
    0 28px 90px rgba(0, 0, 0, 0.58);
  border-radius: 4px;
  transform: scale(.96);
  transition: transform .2s ease;
}

.service-booking-modal .order-modal__dialog {
  width: min(100%, 500px);
}

.moon-calendar-page {
  width: min(1180px, calc(100% - 48px));
  margin: 110px auto 90px;
}

.moon-calendar-page .section-head {
  text-align: center;
  margin-bottom: 36px;
}

.moon-today {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  margin-bottom: 28px;
  border: 1px solid rgba(201,169,97,.42);
  background: linear-gradient(135deg, rgba(201,169,97,.12), rgba(184,118,58,.06));
  overflow: hidden;
  isolation: isolate;
}
/* Drifting mist behind the today bar */
.moon-today > * { position: relative; z-index: 2; }
.moon-today::before,
.moon-today::after { content: none; }
.moon-today .moon-today__mist-a,
.moon-today .moon-today__mist-b { display: none; } /* placeholder if needed later */
/* Use ::before/::after for the existing corners — keep those */
.moon-today {
  /* Add a third pseudo via background-images stacking */
  background:
    radial-gradient(circle at 12% 100%, rgba(201,169,97,.16) 0%, transparent 60%),
    radial-gradient(circle at 88% -10%, rgba(107,68,136,.16) 0%, transparent 60%),
    linear-gradient(135deg, rgba(201,169,97,.12), rgba(184,118,58,.06));
  background-size: 220% 220%, 200% 200%, 100% 100%;
  animation: moon-today-mist 18s ease-in-out infinite alternate;
}
@keyframes moon-today-mist {
  0%   { background-position: 0% 100%, 100% 0%, 0 0; }
  100% { background-position: 25% 80%, 75% 20%, 0 0; }
}

.moon-today::before,
.moon-today::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--gold);
  opacity: .65;
}

.moon-today::before {
  left: 10px;
  top: 10px;
  border-left: 1px solid;
  border-top: 1px solid;
}

.moon-today::after {
  right: 10px;
  bottom: 10px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.moon-today__visual {
  flex: 0 0 auto;
}

/* === Today moon cluster: breathing moon + sparkles + orbiting star === */
.today-moon-cluster {
  position: relative;
  width: 60px;
  height: 60px;
}
.today-moon-cluster .moon-glyph {
  animation: moon-breathe 5s ease-in-out infinite;
}
@keyframes moon-breathe {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(237,230,210,.35)); }
  50%      { transform: scale(1.06); filter: drop-shadow(0 0 16px rgba(237,230,210,.6)); }
}
.today-moon-cluster__orbit-star {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  font-size: 11px;
  color: var(--gold-bright);
  text-shadow: 0 0 6px var(--gold-bright);
  pointer-events: none;
  animation: moon-orbit 14s linear infinite;
}
@keyframes moon-orbit {
  from { transform: rotate(0deg) translateX(42px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(42px) rotate(-360deg); }
}
.today-moon-cluster__sparkles {
  position: absolute;
  inset: -18px;
  pointer-events: none;
}
.today-moon-cluster__sparkles span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--gold-bright);
  animation: moon-sparkle 3.4s ease-in-out infinite;
}
.today-moon-cluster__sparkles span:nth-child(1) { top: 8%;  left: 22%; animation-delay: 0s; }
.today-moon-cluster__sparkles span:nth-child(2) { top: 72%; right: 12%; animation-delay: .55s; }
.today-moon-cluster__sparkles span:nth-child(3) { bottom: 18%; left: 26%; animation-delay: 1.1s; }
.today-moon-cluster__sparkles span:nth-child(4) { top: 40%; right: 4%; animation-delay: 1.65s; }
.today-moon-cluster__sparkles span:nth-child(5) { top: 82%; left: 52%; animation-delay: 2.2s; }
.today-moon-cluster__sparkles span:nth-child(6) { top: 22%; right: 32%; animation-delay: 2.75s; }
@keyframes moon-sparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50%      { opacity: 1; transform: scale(1.6); }
}

.moon-today__copy {
  position: relative;
  z-index: 1;
}

.moon-today__copy h2 {
  margin: 2px 0 6px;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--moon);
}

.moon-today__copy p {
  margin: 0;
  color: var(--mist);
}

.moon-eyebrow {
  display: block;
  color: var(--gold);
  font-family: var(--script);
  font-style: italic;
  font-size: 1.05rem;
}

/* ============================================
   ORBIT STAGE — Earth + orbiting Moon scene
   ============================================ */
.moon-orbit-stage {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-ring-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(201, 169, 97, .25);
  will-change: transform;
  animation: orbit-ring-dash 60s linear infinite;
}
.orbit-ring-inner {
  position: absolute;
  inset: 70px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 97, .12);
}
@keyframes orbit-ring-dash { to { transform: rotate(360deg); } }

.moon-orbit-arm {
  position: absolute;
  inset: 0;
  will-change: transform;
  animation: orbit-arm-spin 40s linear infinite;
}
@keyframes orbit-arm-spin { to { transform: rotate(360deg); } }

.moon-orbit-position {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
}
.moon-counter-rotate {
  width: 100%;
  height: 100%;
  will-change: transform;
  animation: orbit-arm-spin 40s linear infinite reverse;
}
.moon-disk {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f0e6d0 0%, #ede6d2 35%, #b8a890 70%, #6f6754 100%);
  overflow: hidden;
  box-shadow:
    inset -6px -8px 16px rgba(0,0,0,.5),
    inset 4px 4px 12px rgba(255,255,255,.15),
    0 0 30px rgba(237,230,210,.35),
    0 0 60px rgba(237,230,210,.15);
  animation: orbit-moon-breath 5s ease-in-out infinite;
}
@keyframes orbit-moon-breath {
  0%, 100% {
    box-shadow:
      inset -6px -8px 16px rgba(0,0,0,.5),
      inset 4px 4px 12px rgba(255,255,255,.15),
      0 0 30px rgba(237,230,210,.35),
      0 0 60px rgba(237,230,210,.15);
  }
  50% {
    box-shadow:
      inset -6px -8px 16px rgba(0,0,0,.5),
      inset 4px 4px 12px rgba(255,255,255,.15),
      0 0 48px rgba(237,230,210,.55),
      0 0 96px rgba(237,230,210,.25);
  }
}
/* Craters */
.moon-disk::before {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(80, 70, 60, .35);
  top: 22%; left: 28%;
  box-shadow: inset 0 0 3px rgba(0,0,0,.4);
}
.moon-disk::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(80, 70, 60, .35);
  bottom: 28%; right: 30%;
  box-shadow: inset 0 0 3px rgba(0,0,0,.4);
}
.moon-shadow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  transition: background .8s ease;
}

/* Sparkle trail behind moon */
.moon-trail {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 100px;
  height: 80px;
  transform: translateX(-50%);
  pointer-events: none;
}
.moon-trail span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #e8c878;
  box-shadow: 0 0 4px #e8c878;
  animation: orbit-trail-fade 2.5s ease-out infinite;
}
.moon-trail span:nth-child(1) { top: 30%; left: 15%; animation-delay: 0s; }
.moon-trail span:nth-child(2) { top: 50%; left: 30%; animation-delay: .5s; }
.moon-trail span:nth-child(3) { top: 70%; left: 45%; animation-delay: 1s; }
.moon-trail span:nth-child(4) { top: 80%; left: 60%; animation-delay: 1.5s; }
@keyframes orbit-trail-fade {
  0%   { opacity: .9; transform: scale(1); }
  100% { opacity: 0;  transform: scale(.3); }
}

/* Earth at center */
.earth {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #4a7a9c 0%, #2a5876 50%, #1a3458 100%);
  box-shadow:
    inset -4px -4px 8px rgba(0,0,0,.5),
    0 0 22px rgba(74, 122, 156, .42);
  will-change: transform;
  animation: orbit-earth-spin 30s linear infinite;
}
@keyframes orbit-earth-spin { to { transform: rotate(360deg); } }
.earth::before {
  content: "";
  position: absolute;
  top: 25%; left: 20%;
  width: 9px; height: 6px;
  background: rgba(60, 120, 60, .7);
  border-radius: 50%;
  box-shadow:
    10px 3px 0 -1px rgba(60, 120, 60, .6),
    -3px 10px 0 -1px rgba(60, 120, 60, .5);
}

/* Info text */
.orbit-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 70px);
  text-align: center;
  pointer-events: none;
  z-index: 1;
  width: 100%;
}
.orbit-info__date {
  font-family: var(--script);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 0 10px var(--void);
}
.orbit-info__phase {
  margin-top: 4px;
  font-family: var(--display);
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  color: var(--moon);
  text-shadow: 0 0 14px var(--void), 0 0 22px var(--void);
}
.orbit-info__meta {
  margin-top: 4px;
  color: var(--mist);
  font-size: .9rem;
  text-shadow: 0 0 8px var(--void);
}
.orbit-info__meta strong {
  color: var(--gold-bright);
  font-family: var(--display);
  font-weight: 500;
}
.orbit-info .moon-script {
  font-family: var(--script);
  color: var(--gold);
  font-style: italic;
}

/* Ritual-only panel (shown when full-moon day selected) */
.moon-phase-panel--ritual-only {
  position: relative;
  margin: 0 auto 44px;
  max-width: 720px;
  padding: 28px 32px;
}
.moon-phase-panel--ritual-only[hidden] { display: none; }

@media (max-width: 720px) {
  .moon-orbit-stage { max-width: 300px; margin-bottom: 78px; }
  .moon-orbit-position { width: 60px; height: 60px; }
  .earth { width: 32px; height: 32px; }
  .orbit-info { transform: translate(-50%, 70px); }
  .moon-trail span:nth-child(3),
  .moon-trail span:nth-child(4) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-ring-outer,
  .moon-orbit-arm,
  .moon-counter-rotate,
  .moon-disk,
  .earth,
  .moon-trail span {
    animation: none !important;
  }
}

.moon-calendar-card,
.moon-phase-panel {
  border: 1px solid rgba(201,169,97,.35);
  background: rgba(15, 5, 8, .58);
  backdrop-filter: blur(16px);
}

.moon-calendar-card {
  padding: 20px;
}

.moon-phase-panel {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 32px;
  padding: 28px 32px;
  margin-bottom: 28px;
}

.moon-panel__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(201,169,97,.18);
  padding-right: 24px;
}

.moon-panel__main {
  min-width: 0;
}

.moon-panel__visual {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.moon-phase-panel h2 {
  margin: 6px 0 4px;
  color: var(--moon);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
}

.moon-calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.moon-calendar-toolbar h2 {
  margin: 0;
  color: var(--moon);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
}

.moon-calendar-actions {
  display: flex;
  gap: 8px;
}

.moon-calendar-actions button {
  min-width: 42px;
  min-height: 42px;
  border: 1px solid rgba(201,169,97,.45);
  background: rgba(201,169,97,.08);
  color: var(--gold);
  font: inherit;
  cursor: pointer;
  transition: border-color .2s, color .2s, transform .2s, background .2s;
}

.moon-calendar-actions button:hover {
  border-color: var(--gold-bright);
  background: rgba(201,169,97,.16);
  color: var(--gold-bright);
  transform: translateY(-1px);
}

.moon-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.moon-weekday {
  min-height: 26px;
  color: var(--gold-dim);
  font-size: .78rem;
  text-align: center;
  letter-spacing: 0;
}

.moon-day {
  position: relative;
  display: grid;
  grid-template-rows: auto 28px auto;
  place-items: center;
  min-height: 104px;
  padding: 10px 6px;
  border: 1px solid rgba(201,169,97,.28);
  background: rgba(255,255,255,.025);
  color: var(--mist);
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .2s, opacity .2s;
}

.moon-day:hover {
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(201,169,97,.18);
  transform: translateY(-2px);
}

.moon-day.is-muted {
  opacity: .42;
}

.moon-day.is-today {
  border-color: var(--gold);
}

.moon-day.is-today::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(232,200,120,.55);
  pointer-events: none;
}

.moon-day.is-selected {
  border-color: var(--gold-bright);
  box-shadow: 0 0 24px rgba(232,200,120,.28);
}

.moon-day__num {
  justify-self: start;
  color: var(--gold);
  font-family: var(--script);
  font-size: .95rem;
}

.moon-day__label {
  width: 100%;
  min-height: 1.2em;
  color: var(--mist);
  font-size: .72rem;
  text-align: center;
  overflow-wrap: anywhere;
}

.moon-day__marker {
  position: absolute;
  right: 8px;
  top: 8px;
  color: var(--gold-bright);
  font-size: .72rem;
}

.moon-glyph {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid rgba(201,169,97,.4);
  box-shadow: inset 0 0 8px rgba(0,0,0,.45);
}

.moon-glyph.moon-new { background: var(--void); }
.moon-glyph.moon-waxing-crescent { background: radial-gradient(circle at 80% 50%, var(--moon) 25%, var(--void) 26%); }
.moon-glyph.moon-first-quarter { background: linear-gradient(90deg, var(--void) 50%, var(--moon) 50%); }
.moon-glyph.moon-waxing-gibbous { background: radial-gradient(circle at 65% 50%, var(--moon) 50%, var(--void) 51%); }
.moon-glyph.moon-full { background: var(--moon); box-shadow: 0 0 8px rgba(237,230,210,.5); }
.moon-glyph.moon-waning-gibbous { background: radial-gradient(circle at 35% 50%, var(--moon) 50%, var(--void) 51%); }
.moon-glyph.moon-last-quarter { background: linear-gradient(90deg, var(--moon) 50%, var(--void) 50%); }
.moon-glyph.moon-waning-crescent { background: radial-gradient(circle at 20% 50%, var(--moon) 25%, var(--void) 26%); }

.moon-glyph--lg {
  width: 130px;
  height: 130px;
}

/* === Phase Panel orb: breathing + rotating halo === */
.phase-orb {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.phase-orb .moon-glyph--lg {
  position: relative;
  z-index: 2;
  animation: moon-breathe-lg 6s ease-in-out infinite;
}
@keyframes moon-breathe-lg {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 16px rgba(237,230,210,.35)); }
  50%      { transform: scale(1.035); filter: drop-shadow(0 0 32px rgba(237,230,210,.55)); }
}
.phase-orb__halo {
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(201,169,97,.28) 90deg,
    transparent 180deg,
    rgba(237,230,210,.22) 270deg,
    transparent 360deg
  );
  filter: blur(18px);
  z-index: 1;
  pointer-events: none;
  animation: phase-halo-spin 22s linear infinite;
}
@keyframes phase-halo-spin { to { transform: rotate(360deg); } }

/* === Calendar cells: hover scale, today pulse, full-moon glow, marker twinkle, day-select wave, staggered fade-in === */
.moon-day {
  animation: cell-rise .5s var(--ease) both;
}
@keyframes cell-rise {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.moon-day .moon-glyph {
  transition: transform .35s var(--ease), filter .35s var(--ease);
}
.moon-day:hover .moon-glyph {
  transform: scale(1.35);
  filter: drop-shadow(0 0 8px rgba(237,230,210,.55));
}
.moon-day.is-today .moon-glyph {
  animation: today-pulse 2.4s ease-in-out infinite;
}
@keyframes today-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,97,.55); }
  50%      { box-shadow: 0 0 0 7px rgba(201,169,97,0); }
}
.moon-day.is-full .moon-glyph {
  animation: full-moon-glow 3.4s ease-in-out infinite;
}
@keyframes full-moon-glow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(237,230,210,.5)); }
  50%      { filter: drop-shadow(0 0 14px rgba(237,230,210,.85)) drop-shadow(0 0 22px rgba(237,230,210,.35)); }
}
.moon-day__marker {
  animation: marker-twinkle 2.6s ease-in-out infinite;
  text-shadow: 0 0 4px var(--gold);
}
@keyframes marker-twinkle {
  0%, 100% { opacity: .7; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.25); }
}
.moon-day.just-selected::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-bright);
  pointer-events: none;
  animation: day-select-wave .6s ease-out forwards;
}
@keyframes day-select-wave {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.35); }
}

/* === Respect prefers-reduced-motion: kill all decorative animations === */
@media (prefers-reduced-motion: reduce) {
  .today-moon-cluster .moon-glyph,
  .today-moon-cluster__orbit-star,
  .today-moon-cluster__sparkles span,
  .phase-orb .moon-glyph--lg,
  .phase-orb__halo,
  .moon-day,
  .moon-day .moon-glyph,
  .moon-day.is-today .moon-glyph,
  .moon-day.is-full .moon-glyph,
  .moon-day__marker,
  .moon-today {
    animation: none !important;
    transition: none !important;
  }
}

.moon-glyph--md {
  width: 60px;
  height: 60px;
}

.entry-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: var(--gold);
  opacity: .65;
  pointer-events: none;
}
.entry-corner--tl { left: 10px; top: 10px; border-left: 1px solid; border-top: 1px solid; }
.entry-corner--tr { right: 10px; top: 10px; border-right: 1px solid; border-top: 1px solid; }
.entry-corner--bl { left: 10px; bottom: 10px; border-left: 1px solid; border-bottom: 1px solid; }
.entry-corner--br { right: 10px; bottom: 10px; border-right: 1px solid; border-bottom: 1px solid; }

.moon-panel__date {
  color: var(--gold);
  font-family: var(--script);
  font-style: italic;
  font-size: 1.05rem;
}


.moon-panel__latin {
  margin: 0 0 14px;
  color: var(--gold-dim);
  font-size: .88rem;
}

.moon-panel__ritual-heading {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
}

.moon-panel__ritual {
  white-space: pre-wrap;
  color: var(--mist);
  line-height: 1.85;
}

.moon-panel__ritual-empty {
  margin: 6px 0 0;
  color: var(--gold-dim);
  font-style: italic;
  font-size: .9rem;
  text-align: left;
}

.moon-panel__all {
  margin-top: 18px;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(201,169,97,.45);
  background: rgba(201,169,97,.08);
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
}
.moon-panel__all:hover {
  border-color: var(--gold-bright);
  background: rgba(201,169,97,.18);
  color: var(--moon);
}

/* === Full-moon emphasis on Today Bar === */
.moon-today--full {
  border-color: rgba(232,200,120,.7);
  background: linear-gradient(135deg, rgba(232,200,120,.22), rgba(184,118,58,.10));
  box-shadow: 0 0 40px rgba(232,200,120,.25);
}
.moon-today--full .moon-eyebrow {
  color: var(--gold-bright);
  font-style: normal;
  font-family: var(--display);
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.moon-today__next {
  margin: 8px 0 0;
  color: var(--gold-dim);
  font-size: .9rem;
}
.moon-today__cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--gold);
  background: rgba(201,169,97,.1);
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
}
.moon-today__cta:hover {
  background: rgba(201,169,97,.22);
  color: var(--moon);
}

/* === Day cell full-moon hint === */
.moon-day.is-full {
  background: rgba(232,200,120,.05);
}
.moon-day.is-full .moon-day__num {
  color: var(--gold-bright);
}

/* === Phase Panel variants === */
.moon-phase-panel--full {
  border-color: rgba(232,200,120,.55);
  background: linear-gradient(180deg, rgba(28,12,18,.72), rgba(15,5,8,.6));
  box-shadow: 0 0 30px rgba(201,169,97,.15);
}

.moon-panel__ritual-title {
  margin: 0 0 10px;
  color: var(--moon);
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
}

.zodiac-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-bright);
  font-size: .82rem;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.zodiac-badge__glyph {
  font-size: 1rem;
  line-height: 1;
}

.moon-panel__energy {
  margin: 0 0 22px;
  color: var(--mist);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
}

.moon-panel__next {
  padding-top: 18px;
  border-top: 1px solid rgba(201,169,97,.22);
}
.moon-panel__next-eyebrow {
  display: block;
  color: var(--gold);
  font-family: var(--display);
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.moon-panel__next-line {
  margin: 0 0 4px;
  color: var(--moon);
  font-size: 1.05rem;
}
.moon-panel__next-days {
  margin: 0 0 14px;
  color: var(--gold-dim);
  font-size: .9rem;
}
.moon-panel__next-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  text-decoration: none;
  font-family: var(--display);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  transition: color .2s, border-color .2s;
}
.moon-panel__next-link:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

/* === Upcoming Full Moons list === */
.moon-upcoming {
  margin-top: 32px;
  padding: 22px 24px 26px;
  border: 1px solid rgba(201,169,97,.22);
  background: linear-gradient(165deg, rgba(20,16,31,.6), rgba(31,13,34,.4));
  backdrop-filter: blur(12px);
}
.moon-upcoming__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.moon-upcoming__all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  background: rgba(201,169,97,.1);
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
}
.moon-upcoming__all-btn:hover {
  background: rgba(201,169,97,.22);
  color: var(--moon);
}
.moon-upcoming__title {
  margin: 0;
  color: var(--gold);
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
}
.moon-upcoming__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.moon-upcoming__item {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(201,169,97,.18);
  background: rgba(255,255,255,.02);
  color: var(--mist);
  font-family: inherit;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s ease;
  text-align: left;
}
.moon-upcoming__item:hover {
  border-color: var(--gold);
  background: rgba(201,169,97,.08);
  color: var(--moon);
}
.moon-upcoming__icon { display: inline-flex; }
.moon-upcoming__date {
  color: var(--moon);
  font-family: var(--display);
  font-size: 1rem;
}
.moon-upcoming__zodiac {
  color: var(--gold);
  font-size: .9rem;
}
.moon-upcoming__status {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.moon-upcoming__status--ready { color: var(--gold-bright); }
.moon-upcoming__status--empty { color: var(--gold-dim); font-style: italic; text-transform: none; letter-spacing: 0; }

@media (max-width: 640px) {
  .moon-upcoming__item {
    grid-template-columns: auto 1fr;
    gap: 10px;
  }
  .moon-upcoming__zodiac,
  .moon-upcoming__status {
    grid-column: 2;
    font-size: .8rem;
  }
}

/* ============================================
   WHEEL OF THE YEAR
   ============================================ */
.wheel-page {
  width: min(1180px, calc(100% - 48px));
  margin: 110px auto 90px;
}
.wheel-page .section-head {
  text-align: center;
  margin-bottom: 36px;
}
.wheel-page .section-sub {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--mist);
  line-height: 1.7;
}

.festival-icon {
  display: inline-flex;
  width: 100%;
  height: 100%;
  color: var(--gold-bright);
}
.festival-icon svg { width: 100%; height: 100%; }

.wheel-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 28px;
  margin-bottom: 34px;
  border: 1px solid rgba(201,169,97,.42);
  background: linear-gradient(135deg, rgba(201,169,97,.12), rgba(184,118,58,.06));
  overflow: hidden;
}
.wheel-banner[data-tone="today"] {
  border-color: rgba(232,200,120,.7);
  background: linear-gradient(135deg, rgba(232,200,120,.22), rgba(184,118,58,.10));
  box-shadow: 0 0 40px rgba(232,200,120,.25);
}
.wheel-banner__icon {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,169,97,.35);
  border-radius: 50%;
  background: rgba(8,4,10,.5);
}
.wheel-banner__copy { position: relative; z-index: 1; }
.wheel-banner__eyebrow {
  display: block;
  color: var(--gold);
  font-family: var(--display);
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.wheel-banner__copy h2 {
  margin: 6px 0 4px;
  color: var(--moon);
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 500;
}
.wheel-banner__copy p {
  margin: 0;
  color: var(--mist);
}
.wheel-banner__cta {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--gold);
  background: rgba(201,169,97,.1);
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
}
.wheel-banner__cta:hover { background: rgba(201,169,97,.22); color: var(--moon); }

/* The wheel — spinning ring, static icons around */
.wheel-visual {
  display: flex;
  justify-content: center;
  margin: 0 auto 56px;
  max-width: 640px;
}
.wheel-stage {
  position: relative;
  width: 600px;
  height: 600px;
  max-width: 100%;
}
.wheel-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: wheel-spin 240s linear infinite;
  will-change: transform;
}
@keyframes wheel-spin { to { transform: rotate(360deg); } }

/* Sigil + date/season — clean center, no portrait/logo */
.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 3;
}
.wheel-center-sigil {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: sigil-slow 180s linear infinite;
  opacity: .7;
}
@keyframes sigil-slow { to { transform: rotate(360deg); } }
.wheel-center-text {
  position: relative;
  z-index: 2;
  text-align: center;
}
.wheel-center-text .date {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--moon);
  line-height: 1;
  text-shadow: 0 0 12px rgba(6,4,9,.85), 0 0 22px rgba(6,4,9,.85);
}
.wheel-center-text .season {
  font-family: var(--script);
  font-size: 1.4rem;
  color: var(--gold-bright);
  line-height: 1;
  margin-top: 6px;
  text-shadow: 0 0 10px rgba(6,4,9,.85);
}

/* Festival points sit at fixed positions on the wheel (12 / 1:30 / 3 / 4:30 / 6 / 7:30 / 9 / 10:30). */
.festival-point {
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-family: inherit;
  color: inherit;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: translate(-50%, -50%);
}
.festival-point.pos-12     { top: 0%;   left: 50%; }
.festival-point.pos-1-30   { top: 15%;  left: 85%; }
.festival-point.pos-3      { top: 50%;  left: 100%; }
.festival-point.pos-4-30   { top: 85%;  left: 85%; }
.festival-point.pos-6      { top: 100%; left: 50%; }
.festival-point.pos-7-30   { top: 85%;  left: 15%; }
.festival-point.pos-9      { top: 50%;  left: 0%; }
.festival-point.pos-10-30  { top: 15%;  left: 15%; }

.festival-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--festival-color-rgb), .15), rgba(var(--festival-color-rgb), .04) 70%, transparent);
  border: 1px solid var(--festival-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all .35s var(--ease);
}
.festival-icon {
  width: 38px;
  height: 38px;
  color: var(--festival-color);
  transition: all .35s var(--ease);
}
.festival-name {
  font-family: var(--display);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--moon);
  white-space: nowrap;
  text-shadow: 0 0 8px var(--void), 0 0 14px var(--void);
}
.festival-date {
  font-family: var(--script);
  font-size: .82rem;
  color: var(--festival-color);
  letter-spacing: .04em;
  opacity: 0;
  transform: translateY(-4px);
  transition: all .35s var(--ease);
  white-space: nowrap;
  text-shadow: 0 0 6px var(--void), 0 0 12px var(--void);
}

/* HOVER */
.festival-point:hover { z-index: 5; }
.festival-circle { transition: background .3s ease, box-shadow .3s ease, transform .3s ease; }
.festival-point:hover .festival-circle {
  transform: scale(1.18);
  background: radial-gradient(circle, rgba(var(--festival-color-rgb), .35), rgba(var(--festival-color-rgb), .08) 70%, transparent);
  box-shadow: 0 0 28px rgba(var(--festival-color-rgb), .6);
}
.wheel-svg:hover { animation-play-state: paused; }
.festival-point:hover .festival-icon { animation: var(--festival-anim, none) 1.5s ease-in-out infinite; }
.festival-point:hover .festival-date {
  opacity: 1;
  transform: translateY(0);
}

/* NEXT FESTIVAL — pulse ring around its circle */
.festival-point.is-next .festival-circle {
  background: radial-gradient(circle, rgba(var(--festival-color-rgb), .35), rgba(var(--festival-color-rgb), .08) 70%, transparent);
  animation: festival-pulse 2.4s ease-in-out infinite;
}
.festival-point.is-next .festival-name {
  color: var(--festival-color);
  font-weight: 500;
}
.festival-point.is-next .festival-icon { animation: next-icon-breath 2.4s ease-in-out infinite; }
@keyframes festival-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--festival-color-rgb), .65); }
  50%      { box-shadow: 0 0 0 14px rgba(var(--festival-color-rgb), 0); }
}
@keyframes next-icon-breath {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50%      { transform: scale(1.1); filter: brightness(1.35); }
}

/* CLICK BURST */
.festival-point:active .festival-circle { transform: scale(.94); }
.festival-burst {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--festival-color);
  pointer-events: none;
  animation: festival-burst .42s ease-out forwards;
}
@keyframes festival-burst {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.8); opacity: 0; }
}

/* Per-festival hover icon anims */
.festival-point[data-festival="samhain"]    { --festival-anim: anim-samhain; }
.festival-point[data-festival="yule"]       { --festival-anim: anim-yule; }
.festival-point[data-festival="imbolc"]     { --festival-anim: anim-imbolc; }
.festival-point[data-festival="ostara"]     { --festival-anim: anim-ostara; }
.festival-point[data-festival="beltane"]    { --festival-anim: anim-beltane; }
.festival-point[data-festival="litha"]      { --festival-anim: anim-litha; }
.festival-point[data-festival="lughnasadh"] { --festival-anim: anim-lugh; }
.festival-point[data-festival="mabon"]      { --festival-anim: anim-mabon; }
@keyframes anim-samhain { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .7; transform: scale(.96); } }
@keyframes anim-yule    { 0%,100% { transform: scale(1); filter: brightness(1); } 50% { transform: scale(1.06); filter: brightness(1.4); } }
@keyframes anim-imbolc  { 0%,100% { transform: skewX(0) translateY(0); } 25% { transform: skewX(3deg) translateY(-1px); } 75% { transform: skewX(-3deg) translateY(-1px); } }
@keyframes anim-ostara  { 0%,100% { transform: rotate(0) scale(1); } 50% { transform: rotate(12deg) scale(1.05); } }
@keyframes anim-beltane { 0%,100% { transform: translateY(0) scale(1); filter: brightness(1); } 50% { transform: translateY(-3px) scale(1.06); filter: brightness(1.4); } }
@keyframes anim-litha   { to { transform: rotate(360deg); } }
@keyframes anim-lugh    { 0%,100% { transform: rotate(-4deg); } 50% { transform: rotate(4deg); } }
@keyframes anim-mabon   { 0% { transform: translateY(0) rotate(0); } 50% { transform: translateY(3px) rotate(6deg); } 100% { transform: translateY(0) rotate(-2deg); } }

@media (max-width: 720px) {
  .wheel-stage { width: 380px; height: 380px; }
  .festival-circle { width: 50px; height: 50px; }
  .festival-icon { width: 30px; height: 30px; }
  .festival-name { font-size: .62rem; letter-spacing: .15em; }
  .wheel-center { width: 130px; height: 130px; }
  .wheel-center-text .date { font-size: 1.4rem; }
  .wheel-center-text .season { font-size: 1.1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .wheel-svg, .wheel-center-sigil { animation: none !important; }
  .festival-point.is-next .festival-circle,
  .festival-point.is-next .festival-icon { animation: none !important; }
}

/* Festival card grid */
.wheel-grid-wrap { margin-bottom: 44px; }
.wheel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.festival-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 26px 18px 22px;
  border: 1px solid rgba(var(--festival-color-rgb, 201,169,97), .32);
  background: rgba(15, 5, 8, .58);
  backdrop-filter: blur(12px);
  color: var(--mist);
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  transition: all .3s var(--ease);
  min-height: 240px;
  overflow: hidden;
}
.festival-card::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(var(--festival-color-rgb), .12), transparent 70%);
  filter: blur(40px);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.festival-card:hover {
  border-color: var(--festival-color, var(--gold));
  transform: translateY(-4px);
  box-shadow: 0 14px 30px -18px rgba(var(--festival-color-rgb), .55);
}
.festival-card:hover::before { opacity: 1; }
.festival-card.is-selected {
  border-color: var(--festival-color, var(--gold-bright));
  box-shadow: 0 0 30px rgba(var(--festival-color-rgb), .35);
}
.festival-card--next {
  border: 1px solid rgba(var(--festival-color-rgb), .6);
  background: linear-gradient(180deg, rgba(var(--festival-color-rgb), .14), rgba(15,5,8,.7));
  box-shadow: 0 0 36px -10px rgba(var(--festival-color-rgb), .55);
  transform: scale(1.04);
}
.festival-card--next::before { opacity: 1; }
.festival-card--next:hover { transform: scale(1.06) translateY(-3px); }

.festival-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--festival-color, rgba(201,169,97,.4));
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--festival-color-rgb), .15), rgba(var(--festival-color-rgb), .03) 70%, transparent);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.festival-card__svg {
  width: 38px;
  height: 38px;
  color: var(--festival-color, var(--gold-bright));
  transition: all .3s ease;
}
.festival-card:hover .festival-card__svg { animation: var(--festival-anim, none) 1.4s ease-in-out infinite; }
.festival-card[data-festival="samhain"]    { --festival-anim: anim-samhain; }
.festival-card[data-festival="yule"]       { --festival-anim: anim-yule; }
.festival-card[data-festival="imbolc"]     { --festival-anim: anim-imbolc; }
.festival-card[data-festival="ostara"]     { --festival-anim: anim-ostara; }
.festival-card[data-festival="beltane"]    { --festival-anim: anim-beltane; }
.festival-card[data-festival="litha"]      { --festival-anim: anim-litha; }
.festival-card[data-festival="lughnasadh"] { --festival-anim: anim-lugh; }
.festival-card[data-festival="mabon"]      { --festival-anim: anim-mabon; }
.festival-card--next .festival-card__svg { animation: next-icon-breath 3s ease-in-out infinite; }
.festival-card__name {
  margin: 0;
  color: var(--moon);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.festival-card--next .festival-card__name {
  color: var(--festival-color);
  font-size: 1.35rem;
}
.festival-card__latin {
  color: var(--festival-color, var(--gold));
  font-family: var(--script);
  font-style: italic;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}
.festival-card__date {
  margin: 0;
  color: var(--gold-dim);
  font-size: .85rem;
}
.festival-card__energy {
  margin: 4px 0 6px;
  color: var(--mist);
  font-size: .82rem;
  line-height: 1.5;
  font-style: italic;
}
.festival-card__foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.festival-card__type {
  padding: 2px 10px;
  border-radius: 999px;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.festival-card__type--fire { border: 1px solid rgba(226, 90, 60, .55); color: #e87a5e; }
.festival-card__type--solar { border: 1px solid rgba(232,200,120,.55); color: var(--gold-bright); }
.festival-card__marker {
  font-size: .85rem;
  color: var(--gold);
}
.festival-card__countdown {
  margin-top: 6px;
  font-size: .72rem;
  color: var(--gold-dim);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.festival-card--next .festival-card__countdown {
  color: var(--gold-bright);
  font-size: .82rem;
}
.festival-card__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  border: 1px solid var(--gold);
  background: rgba(8,4,10,.95);
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  white-space: nowrap;
}
.festival-card__badge--today { color: #ffd06b; border-color: #ffd06b; }

/* Festival detail panel */
.festival-detail {
  position: relative;
  padding: 32px 36px 34px;
  border: 1px solid rgba(201,169,97,.4);
  background: linear-gradient(180deg, rgba(28,12,18,.78), rgba(15,5,8,.66));
  backdrop-filter: blur(14px);
  box-shadow: 0 0 30px rgba(201,169,97,.12);
}
.festival-detail[hidden] { display: none; }
.festival-detail__head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 20px;
}
.festival-detail__icon {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,169,97,.45);
  border-radius: 50%;
  background: rgba(8,4,10,.55);
}
.festival-detail__meta { min-width: 0; }
.festival-detail__meta h2 {
  margin: 0 0 4px;
  color: var(--moon);
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 500;
}
.festival-detail__latin {
  margin: 0 0 4px;
  color: var(--gold);
  font-family: var(--script);
  font-style: italic;
}
.festival-detail__date {
  margin: 0;
  color: var(--gold-dim);
  font-size: .9rem;
}
.festival-detail__facts {
  padding: 18px 0;
  border-top: 1px solid rgba(201,169,97,.22);
  border-bottom: 1px solid rgba(201,169,97,.22);
  margin-bottom: 22px;
}
.festival-detail__energy {
  margin: 0 0 16px;
  color: var(--mist);
  line-height: 1.7;
  font-style: italic;
}
.festival-detail__list {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 6px 16px;
  margin: 0;
}
.festival-detail__list dt {
  color: var(--gold);
  font-family: var(--display);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.festival-detail__list dd {
  margin: 0;
  color: var(--mist);
  font-size: .92rem;
}
.festival-detail__ritual-heading {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--display);
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.festival-detail__ritual-title {
  margin: 0 0 8px;
  color: var(--moon);
  font-family: var(--display);
  font-size: 1.15rem;
}
.festival-detail__ritual-text {
  white-space: pre-wrap;
  color: var(--mist);
  line-height: 1.85;
}
.festival-detail__ritual-empty {
  margin: 0;
  color: var(--gold-dim);
  font-style: italic;
}

@media (max-width: 980px) {
  .wheel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .wheel-page { width: min(100% - 28px, 720px); margin-top: 92px; }
  .wheel-banner { flex-direction: column; align-items: flex-start; padding: 20px; }
  .wheel-grid { grid-template-columns: 1fr; }
  .festival-card--next { transform: none; }
  .festival-card--next:hover { transform: translateY(-3px); }
  .festival-detail { padding: 24px 20px; }
  .festival-detail__head { flex-direction: column; align-items: flex-start; gap: 14px; }
}


@media (max-width: 768px) {
  .moon-calendar-page {
    width: min(100% - 28px, 720px);
    margin-top: 92px;
  }

  .moon-today {
    align-items: flex-start;
    padding: 18px;
  }

  .moon-phase-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 18px;
  }

  .moon-panel__side {
    border-right: none;
    border-bottom: 1px solid rgba(201,169,97,.18);
    padding-right: 0;
    padding-bottom: 18px;
  }

  .moon-calendar-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .moon-calendar-grid {
    gap: 5px;
  }

  .moon-day {
    min-height: 88px;
    padding: 8px 4px;
  }

  .moon-day__label {
    font-size: .62rem;
  }
}

.order-modal.is-open .order-modal__dialog {
  transform: scale(1);
}

.order-modal__form {
  padding: 1.5rem;
}

.order-modal__step {
  animation: orderStepIn .2s ease both;
}

@keyframes orderStepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.order-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .8rem;
}

.order-modal__head h2 {
  margin: 0;
  color: var(--gold-bright, #e8c878);
  font-family: var(--font-display, "Cinzel", serif);
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: .05em;
}

.order-modal__x {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(232, 200, 120, 0.32);
  background: rgba(232, 200, 120, 0.06);
  color: var(--gold-bright, #e8c878);
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.order-modal__note {
  margin: 0 0 1.2rem;
  color: var(--mist, rgba(237, 230, 210, 0.72));
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.45;
}

.order-modal label {
  display: block;
  margin-bottom: 1rem;
}

.order-modal label span {
  display: block;
  margin-bottom: .35rem;
  color: rgba(232, 200, 120, 0.76);
  font-family: var(--font-display, "Cinzel", serif);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.order-product-summary {
  margin: 0 0 1rem;
  padding: .65rem .75rem;
  border: 1px solid rgba(232, 200, 120, 0.24);
  background: rgba(237, 230, 210, 0.035);
  color: var(--gold-bright, #e8c878);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .82rem;
  letter-spacing: .08em;
}

.order-modal input,
.order-modal textarea {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-bottom: 1px solid rgba(232, 200, 120, 0.35);
  border-radius: 0;
  background: rgba(237, 230, 210, 0.04);
  color: var(--text, #ede6d2);
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: 1.1rem;
  padding: .75rem .7rem;
  outline: none;
  resize: vertical;
}

.order-modal input:focus,
.order-modal textarea:focus {
  border-bottom-color: var(--gold-bright, #e8c878);
  box-shadow: 0 7px 18px rgba(232, 200, 120, 0.08);
}

.order-modal input::placeholder,
.order-modal textarea::placeholder {
  color: rgba(237, 230, 210, 0.42);
}

.order-modal input::-webkit-calendar-picker-indicator {
  filter: invert(74%) sepia(28%) saturate(600%) hue-rotate(2deg);
  opacity: .9;
}

.order-bank-list {
  display: grid;
  gap: .8rem;
  margin-bottom: 1.1rem;
}

.order-bank-card {
  padding: .95rem;
  border: 1px solid rgba(232, 200, 120, 0.28);
  background: rgba(237, 230, 210, 0.035);
  border-radius: 4px;
}

.order-bank-card__head {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .85rem;
}

.order-bank-card__mark {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(232, 200, 120, 0.38);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-bright, #e8c878);
  font-family: var(--font-display, "Cinzel", serif);
  font-size: .7rem;
  letter-spacing: .08em;
}

.order-bank-card h3 {
  margin: 0;
  color: var(--gold-bright, #e8c878);
  font-family: var(--font-display, "Cinzel", serif);
  font-size: .95rem;
  letter-spacing: .08em;
}

.order-bank-card p {
  margin: .1rem 0 0;
  color: var(--mist, rgba(237, 230, 210, 0.72));
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: .95rem;
}

.order-iban-row {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(232, 200, 120, 0.14);
}

.order-iban-row code {
  flex: 1;
  color: var(--moon, #ede6d2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .9rem;
  overflow-wrap: anywhere;
}

.order-iban-row button {
  border: 1px solid rgba(232, 200, 120, 0.3);
  background: transparent;
  color: var(--gold-bright, #e8c878);
  border-radius: 3px;
  padding: .45rem .65rem;
  font-family: var(--font-display, "Cinzel", serif);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.order-iban-row button:hover {
  border-color: var(--gold-bright, #e8c878);
}

.receipt-callout {
  margin: 1.1rem 0 .5rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(232, 200, 120, 0.4);
  background: linear-gradient(180deg, rgba(232, 200, 120, 0.08), rgba(232, 200, 120, 0.02));
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  text-align: center;
}
.receipt-callout strong {
  font-family: var(--display, "Cinzel", serif);
  font-size: 1rem;
  letter-spacing: .04em;
  color: var(--gold-bright, #f5e6c4);
}
.receipt-callout span {
  font-family: var(--serif, "Cormorant Garamond", serif);
  font-size: .95rem;
  line-height: 1.45;
  color: rgba(237, 230, 210, 0.78);
}
.receipt-callout__options {
  list-style: none;
  margin: .25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-family: var(--serif, "Cormorant Garamond", serif);
  font-size: .92rem;
  color: rgba(237, 230, 210, 0.88);
}
.receipt-callout__options li {
  padding: .35rem .6rem;
  border: 1px solid rgba(232, 200, 120, 0.2);
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.18);
}
.receipt-callout__options em {
  font-style: normal;
  color: var(--gold, #c9a961);
  margin: 0 .25em;
}

.receipt-upload input[type="file"] {
  border: 1px dashed rgba(232, 200, 120, 0.35);
  padding: .8rem;
}

.receipt-preview {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: .2rem 0 1rem;
  padding: .7rem;
  border: 1px solid rgba(232, 200, 120, 0.18);
  background: rgba(237, 230, 210, 0.035);
  border-radius: 4px;
}

.receipt-preview img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 1px solid rgba(232, 200, 120, 0.48);
  border-radius: 4px;
  flex-shrink: 0;
}

.receipt-preview strong,
.receipt-preview span {
  display: block;
  font-family: var(--font-serif, "Cormorant Garamond", serif);
}

.receipt-preview strong {
  color: var(--moon, #ede6d2);
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.receipt-preview span {
  color: var(--mist, rgba(237, 230, 210, 0.72));
  font-size: .9rem;
}

.ocr-fallback {
  margin: .8rem 0 0;
  color: var(--mist, rgba(237, 230, 210, 0.72));
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  text-align: center;
}

.ocr-fallback a,
.order-instagram-link {
  color: var(--gold-bright, #e8c878);
}

.order-instagram-link {
  display: block;
  margin-top: 1rem;
  text-align: center;
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  text-decoration: none;
}

.order-instagram-link:hover {
  text-decoration: underline;
}

.order-modal__actions {
  display: flex;
  gap: .75rem;
  margin-top: 1.4rem;
}

.order-modal__cancel,
.order-modal__submit {
  min-height: 44px;
  border-radius: 3px;
  font-family: var(--font-display, "Cinzel", serif);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
}

.order-modal__cancel {
  flex: 0 0 auto;
  padding: .75rem 1rem;
  border: 1px solid rgba(232, 200, 120, 0.28);
  background: transparent;
  color: rgba(232, 200, 120, 0.78);
}

.order-modal__submit {
  flex: 1;
  padding: .75rem 1rem;
  border: 1px solid var(--gold-bright, #e8c878);
  background: linear-gradient(180deg, var(--gold, #c9a961) 0%, var(--gold-bright, #e8c878) 100%);
  color: #0a0a0f;
}

.order-modal__submit:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.order-modal__submit span {
  display: inline-block;
  transition: transform .25s ease;
}

.order-modal__submit:hover span {
  transform: translateX(3px);
}

.order-toast {
  position: absolute;
  left: 50%;
  bottom: .8rem;
  transform: translateX(-50%);
  z-index: 3;
  padding: .45rem .75rem;
  border: 1px solid rgba(232, 200, 120, 0.35);
  background: rgba(10, 10, 15, 0.92);
  color: var(--gold-bright, #e8c878);
  border-radius: 999px;
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  white-space: nowrap;
}

.order-toast.error {
  border-color: rgba(194, 64, 46, .55);
  color: #f0d8c4;
}

.order-modal__loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  place-items: center;
  align-content: center;
  gap: .9rem;
  background: rgba(5, 4, 8, 0.68);
  backdrop-filter: blur(3px);
}

.order-modal.is-loading .order-modal__loading {
  display: grid;
}

.order-modal__loading span {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(232, 200, 120, 0.22);
  border-top-color: var(--gold-bright, #e8c878);
  border-radius: 50%;
  animation: orderSpin .8s linear infinite;
}

.order-modal__loading p {
  margin: 0;
  color: var(--gold-bright, #e8c878);
  font-family: var(--font-display, "Cinzel", serif);
  font-size: .8rem;
  letter-spacing: .12em;
}

@keyframes orderSpin {
  to { transform: rotate(360deg); }
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.lightbox-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  cursor: zoom-out;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(232, 200, 120, 0.45);
  border-radius: 50%;
  background: rgba(10, 10, 15, 0.68);
  color: var(--gold-bright, #e8c878);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 1px solid rgba(232, 200, 120, 0.45);
  border-radius: 50%;
  background: rgba(10, 10, 15, 0.68);
  color: var(--gold-bright, #e8c878);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .25s ease, border-color .25s ease;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(28, 14, 32, 0.85);
  border-color: var(--gold-bright, #e8c878);
  outline: none;
}

.lightbox-nav[hidden] { display: none; }

.lightbox-nav--prev { left: 1.5rem; }
.lightbox-nav--next { right: 1.5rem; }

.lightbox-counter {
  position: fixed;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-bright, #e8c878);
  font-size: .9rem;
  letter-spacing: .12em;
  padding: .35rem .9rem;
  border: 1px solid rgba(232, 200, 120, 0.3);
  border-radius: 999px;
  background: rgba(10, 10, 15, 0.6);
}

.lightbox-counter[hidden] { display: none; }

@media (max-width: 640px) {
  .lightbox-nav { width: 44px; height: 44px; font-size: 1.5rem; }
  .lightbox-nav--prev { left: .6rem; }
  .lightbox-nav--next { right: .6rem; }
}

.site-footer-min {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(232, 200, 120, 0.1);
  color: rgba(232, 200, 120, 0.5);
  font-size: .85rem;
  position: relative;
  z-index: 5;
}

/* === Real photos in cards (overrides SVG icon when image uploaded) === */
.blog-card.has-cover { /* same layout, slightly different image area */ }
.blog-card .blog-cover {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
  display: block;
}
.product-img.has-photo {
  background: var(--void, #0a0610);
  padding: 0;
}
.product-img.has-photo .product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 2px;
  filter: brightness(.85) saturate(.78) contrast(1.06);
  transition: filter .6s var(--ease), transform .8s var(--ease);
}
.product-card:hover .product-img.has-photo .product-photo {
  filter: brightness(.95) saturate(.9) contrast(1.04);
  transform: scale(1.04);
}
.product-img.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 38%, rgba(15, 8, 20, .55) 100%),
    linear-gradient(180deg, rgba(15, 8, 20, .25) 0%, transparent 28%, transparent 60%, rgba(15, 8, 20, .8) 100%);
  pointer-events: none;
  z-index: 2;
}
.product-img.has-photo .smoke { display: none; }

/* === Service cards (home) — aesthetic 3-card === */
.service-card,
.service-card:link,
.service-card:visited,
.service-card:hover,
.service-card:active {
  text-decoration: none !important;
}
.service-card,
.service-card * {
  -webkit-text-decoration-color: transparent;
}
.service-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 2.4rem 1.8rem;
  background: linear-gradient(180deg, rgba(20, 16, 31, 0.6) 0%, rgba(10, 10, 15, 0.3) 100%);
  border: 1px solid rgba(232, 200, 120, 0.18);
  border-radius: 4px;
  color: inherit;
  transition: all .35s cubic-bezier(.16,.84,.44,1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(232,200,120,.08), transparent 65%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.service-card:hover {
  border-color: rgba(232, 200, 120, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(232, 200, 120, 0.15);
}
.service-card:hover::before { opacity: 1; }
.service-card .service-num {
  font-family: var(--display);
  color: var(--gold-bright);
  font-size: 14px;
  letter-spacing: .3em;
  margin-bottom: 1rem;
  opacity: .85;
}
.service-card .service-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.4rem;
  color: var(--gold);
  opacity: .9;
  transition: transform .5s, color .35s;
}
.service-card:hover .service-icon {
  color: var(--gold-bright);
  transform: scale(1.05);
}
.service-card .service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 0 1.4rem;
  letter-spacing: .08em;
}
.service-card .sub {
  font-family: var(--script, "Italianno", serif);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
  opacity: .8;
}
.service-card p {
  flex: 1;
  font-family: var(--serif, "Cormorant Garamond", serif);
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(237, 230, 210, 0.78);
  margin: 0 0 1.6rem;
}
.service-card .service-foot {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(232, 200, 120, 0.15);
  min-height: 28px;
}
.service-card .service-price {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .12em;
  color: var(--gold-bright);
}
.service-card .service-cta {
  margin-top: 1.2rem;
  padding: .85rem 1.2rem;
  border: 1px solid rgba(232, 200, 120, 0.45);
  border-radius: 3px;
  text-align: center;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  transition: all .3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .6rem;
}
.service-card:hover .service-cta {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--void, #0a0a0f);
  border-color: var(--gold-bright);
}
.service-card .service-arrow {
  font-family: var(--display);
  transition: transform .35s;
  display: inline-block;
}
.service-card:hover .service-arrow {
  transform: translateX(4px);
}

/* === Service detail page === */
.service-entry {
  max-width: 720px;
  padding-top: 2rem;
}
.service-hero {
  text-align: center;
  margin-bottom: 3.4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(232, 200, 120, 0.15);
}
.service-eyebrow {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: .8;
}
.service-title {
  font-family: var(--display);
  font-size: 2.6rem;
  color: var(--gold-bright);
  margin: 0 0 .7rem;
  letter-spacing: .04em;
  line-height: 1.34;
}
.service-tagline {
  font-family: var(--script, "Italianno", serif);
  color: var(--gold);
  font-size: 1.6rem;
  opacity: .85;
}
.service-hero-tags {
  list-style: none;
  margin: 1.4rem auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: center;
  max-width: 600px;
}
.service-hero-tags li {
  padding: .42rem .95rem;
  border: 1px solid rgba(232, 200, 120, 0.35);
  border-radius: 3px;
  font-family: var(--serif, "Cormorant Garamond", serif);
  font-size: .95rem;
  color: rgba(237, 230, 210, 0.85);
  letter-spacing: .02em;
  transition: border-color .25s, color .25s, background .25s;
}
.service-hero-tags li:hover {
  border-color: rgba(232, 200, 120, 0.6);
  color: var(--gold-bright);
  background: rgba(232, 200, 120, 0.05);
}
.service-body p {
  font-family: var(--serif, "Cormorant Garamond", serif);
  font-size: 1.18rem;
  line-height: 1.85;
  color: rgba(237, 230, 210, 0.92);
  margin: 0 0 1.3rem;
}
.service-body p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 3.6rem;
  color: var(--gold-bright);
  float: left;
  line-height: 1;
  margin: 4px 10px 0 0;
}
.service-benefits {
  margin: 1.9rem 0 1.8rem;
}
.service-benefits-intro {
  margin-bottom: .8rem !important;
}
.service-benefits ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.service-benefits li {
  font-family: var(--serif, "Cormorant Garamond", serif);
  font-size: 1.14rem;
  line-height: 1.65;
  color: rgba(237, 230, 210, 0.92);
  position: relative;
  padding-left: 1.4rem;
}
.service-benefits li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.service-section-title {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 3rem 0 1.4rem;
  text-align: center;
  position: relative;
}
.service-section-title::before,
.service-section-title::after {
  content: "✦";
  margin: 0 .8em;
  color: var(--gold);
  opacity: .55;
  font-size: .85em;
}

/* === Type cards (consultation types) === */
.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.5rem;
  margin: 0 auto;
  max-width: 980px;
}
.type-card {
  background: linear-gradient(180deg, rgba(40, 8, 18, 0.55) 0%, rgba(10, 6, 10, 0.55) 100%);
  border: 1px solid rgba(232, 200, 120, 0.28);
  border-radius: 4px;
  padding: 2.2rem 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: all .35s cubic-bezier(.16,.84,.44,1);
}
.type-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: radial-gradient(circle at 50% 0%, rgba(232,200,120,.06), transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.type-card:hover {
  border-color: rgba(232, 200, 120, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.type-card:hover::before { opacity: 1; }

.type-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .3rem;
}
.type-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(232, 200, 120, 0.35);
  background: rgba(232, 200, 120, 0.05);
  color: var(--gold);
}
.type-card-icon svg { width: 26px; height: 26px; }
.type-card-price {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--gold-bright);
  letter-spacing: .02em;
  font-weight: 600;
  line-height: 1;
}

.type-card-name {
  font-family: var(--display);
  font-size: 1.65rem;
  color: var(--moon, #f0e4d0);
  letter-spacing: .02em;
  line-height: 1.2;
  margin: .2rem 0 0;
}
.type-card-tagline {
  font-family: var(--script, "Italianno", serif);
  font-size: 1.35rem;
  color: var(--gold);
  letter-spacing: .02em;
  margin: 0;
  opacity: .85;
}

.type-card-meta {
  display: flex;
  gap: 1.6rem;
  font-family: var(--serif, "Cormorant Garamond", serif);
  font-size: 1rem;
  color: rgba(232, 200, 120, 0.75);
  margin: .3rem 0;
}
.type-card-meta span {
  position: relative;
  padding-left: 1rem;
}
.type-card-meta span::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.type-card-features {
  list-style: none;
  margin: .3rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.type-card-features li {
  padding: .4rem .85rem;
  border: 1px solid rgba(232, 200, 120, 0.3);
  border-radius: 3px;
  font-family: var(--serif, "Cormorant Garamond", serif);
  font-size: .93rem;
  color: rgba(237, 230, 210, 0.85);
  transition: border-color .25s, color .25s;
}
.type-card:hover .type-card-features li {
  border-color: rgba(232, 200, 120, 0.5);
}

.type-card-desc {
  font-family: var(--serif, "Cormorant Garamond", serif);
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(237, 230, 210, 0.78);
  margin: .4rem 0 0;
  flex: 1;
}

.type-card-book {
  margin-top: 1rem;
  padding: 1rem 1.4rem;
  background: transparent;
  border: 1px solid rgba(232, 200, 120, 0.45);
  border-radius: 3px;
  color: var(--gold-bright);
  font-family: var(--serif, "Cormorant Garamond", serif);
  font-size: 1.05rem;
  letter-spacing: .15em;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .8rem;
}
.type-card-instagram {
  align-self: center;
  margin-top: .75rem;
  color: rgba(232, 200, 120, 0.82);
  font-family: var(--serif, "Cormorant Garamond", serif);
  font-size: .98rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 200, 120, 0.28);
  transition: color .25s, border-color .25s;
}
.type-card-instagram:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}
.type-card-book .arrow { transition: transform .3s; }
.type-card:hover .type-card-book {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #1a0509;
  border-color: var(--gold-bright);
}
.type-card:hover .type-card-book .arrow { transform: translateX(4px); }

@media (max-width: 720px) {
  .types-grid { grid-template-columns: 1fr; }
  .type-card { padding: 1.6rem 1.2rem 1.3rem; }
  .type-card-price { font-size: 2rem; }
  .type-card-name { font-size: 1.4rem; }
}

/* === Bullet cards (diagnostic / cleansing) === */
.bullets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 0 auto;
  max-width: 760px;
}
.bullet-card {
  background: rgba(20, 16, 31, 0.45);
  border: 1px solid rgba(232, 200, 120, 0.18);
  border-radius: 4px;
  padding: 1.05rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all .3s;
}
.bullet-card:hover {
  border-color: rgba(232, 200, 120, 0.45);
  background: rgba(28, 24, 48, 0.55);
}
.bullet-card .bullet-sigil {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(232, 200, 120, 0.08);
  border: 1px solid rgba(232, 200, 120, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 1.05rem;
}
.bullet-card .bullet-text {
  font-family: var(--serif, "Cormorant Garamond", serif);
  font-size: 1.05rem;
  line-height: 1.4;
  color: rgba(237, 230, 210, 0.92);
}

@media (max-width: 720px) {
  .entry-cover {
    max-height: 260px;
  }

  .product-entry-page {
    width: 100%;
    max-width: 100%;
    margin-top: 2rem;
    padding: 0 1rem;
    overflow: hidden;
  }

  .product-entry {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .product-entry .entry-title {
    width: min(100%, 340px);
    max-width: 340px;
    font-size: 1.62rem;
    line-height: 1.18;
    white-space: normal;
    word-break: break-all;
  }

  .product-entry .product-gallery {
    width: min(100%, 340px);
    max-width: 340px;
    margin: 1.35rem 0 1rem;
  }

  .product-entry .product-gallery-stage {
    width: 100%;
    max-width: 100%;
    min-height: 260px;
    max-height: 360px;
    aspect-ratio: 1 / 1;
  }

  .product-entry .product-gallery-slide {
    padding: .8rem;
  }

  .product-entry .product-gallery-arrow {
    width: 42px;
    height: 50px;
  }

  .product-entry .product-gallery-arrow--prev {
    left: .55rem;
  }

  .product-entry .product-gallery-arrow--next {
    right: .55rem;
  }

  .product-entry .product-gallery-tab {
    width: 58px;
    height: 58px;
  }

  .order-modal {
    padding: 1rem;
  }

  .order-modal__actions {
    flex-direction: column-reverse;
  }

  .order-modal__cancel,
  .order-modal__submit {
    width: 100%;
  }

  .entry-cta-row {
    flex-direction: column;
  }

  .types-grid, .bullets-grid { grid-template-columns: 1fr; }
  .type-card-price { font-size: 1.2rem; }
}

.service-cta-wrap {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(232, 200, 120, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.service-cta-wrap .entry-cta {
  width: 100%;
  max-width: 380px;
  text-align: center;
}

@media (max-width: 720px) {
  .service-title {
    font-size: 2rem;
    line-height: 1.32;
  }
  .service-body p:first-of-type::first-letter { font-size: 2.8rem; }
}

/* === About portrait photo (replaces SVG glyph when image present) === */
.about-portrait.has-photo,
.about-teaser .visual.has-photo {
  overflow: hidden;
  position: relative;
}
.about-portrait .portrait-photo,
.about-teaser .visual .portrait-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  filter: brightness(0.95) contrast(1.05);
}
.about-portrait.has-photo::before,
.about-teaser .visual.has-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(10,10,15,.55), transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.about-portrait .corner,
.about-teaser .visual .corner {
  z-index: 2;
}

/* === About text extras (subhead, list, pull quote) === */
.about-text .about-subhead {
  font-family: var(--display);
  font-size: .95rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 2rem 0 1rem;
}
.about-text .about-subhead::before,
.about-text .about-subhead::after {
  content: "✦";
  margin: 0 .6em;
  color: var(--gold);
  opacity: .55;
  font-size: .85em;
}
.about-text .about-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.about-text .about-list li {
  position: relative;
  padding-left: 1.4rem;
  font-family: var(--serif, "Cormorant Garamond", serif);
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(237, 230, 210, 0.88);
}
.about-text .about-list li::before {
  content: "▪";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--gold-bright);
}
.about-text .about-pull {
  border-left: 2px solid var(--gold-bright);
  padding: .55rem 0 .55rem 1.1rem;
  margin: 1.4rem 0;
  font-style: italic;
  color: rgba(232, 200, 120, 0.95);

/* ============================================
   CALENDAR HAS-RITUAL CELL EMPHASIS
   ============================================ */
.moon-day.has-ritual {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(232,200,120,.16), rgba(201,169,97,.06));
}
.moon-day.has-ritual .moon-day__num {
  color: var(--gold-bright);
  font-weight: 500;
}
.moon-day.has-ritual .moon-day__marker {
  font-size: 1rem;
  text-shadow: 0 0 8px var(--gold-bright);
}

/* ============================================
   MOON RITUALS PAGE  (/moon-rituals.html)
   ============================================ */
.moon-rituals-page {
  width: min(820px, calc(100% - 48px));
  margin: 110px auto 90px;
}
.moon-rituals__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: .12em;
  text-decoration: none;
  margin-bottom: 28px;
  transition: color .2s;
}
.moon-rituals__back:hover { color: var(--gold-bright); }
.moon-rituals-page .section-head {
  text-align: center;
  margin-bottom: 44px;
}
.moon-rituals-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--gold-dim);
  font-style: italic;
}
.moon-rituals__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.moon-rituals__item {
  position: relative;
  padding: 28px 32px 30px;
  border: 1px solid rgba(201,169,97,.3);
  background: linear-gradient(180deg, rgba(20,8,14,.7), rgba(15,5,8,.6));
  backdrop-filter: blur(10px);
}
.moon-rituals__item-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.moon-rituals__item-head h2 {
  margin: 0;
  color: var(--moon);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
}
.moon-rituals__item-date {
  margin: 0 0 18px;
  color: var(--gold-dim);
  font-style: italic;
  font-size: .92rem;
}
.moon-rituals__item-content {
  color: var(--mist);
  line-height: 1.85;
}
@media (max-width: 640px) {
  .moon-rituals-page { margin-top: 92px; }
  .moon-rituals__item { padding: 22px 18px 24px; }
  .moon-rituals__item-head h2 { font-size: 1.2rem; }
}
