
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');

:root{
  --bg:#020706;
  --bg2:#061714;
  --emerald:#0f1f1a;
  --emerald2:#0b2b22;
  --mint:#22c55e;
  --mint2:#67f0a0;
  --gold:#d4af37;
  --gold2:#e6c77a;
  --cream:#f6f0dc;
  --muted:#b9c8bd;
  --line:rgba(212,175,55,.38);
  --glass:rgba(4,23,18,.72);
  --shadow:0 30px 90px rgba(0,0,0,.55);
  --max:1440px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 50% -10%, rgba(34,197,94,.14), transparent 36%),
    radial-gradient(circle at 82% 18%, rgba(212,175,55,.07), transparent 38%),
    linear-gradient(180deg,#020605,#06100e 35%,#020706 100%);
  color:var(--cream);
  font-family:Manrope,system-ui,-apple-system,Segoe UI,sans-serif;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.25;
  z-index:-2;
  background-image:
    linear-gradient(rgba(230,199,122,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230,199,122,.035) 1px, transparent 1px),
    radial-gradient(circle at 20% 30%, rgba(34,197,94,.08), transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(212,175,55,.06), transparent 28%);
  background-size:64px 64px,64px 64px,100% 100%,100% 100%;
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  opacity:.38;
  background:
    url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d4af37' stroke-opacity='.16' stroke-width='.7'%3E%3Ccircle cx='80' cy='80' r='48'/%3E%3Ccircle cx='56' cy='80' r='48'/%3E%3Ccircle cx='104' cy='80' r='48'/%3E%3Ccircle cx='80' cy='56' r='48'/%3E%3Ccircle cx='80' cy='104' r='48'/%3E%3C/g%3E%3C/svg%3E") repeat;
  background-size:180px 180px;
  mix-blend-mode:screen;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,textarea{font:inherit}

#starfield{
  position:fixed;
  inset:0;
  z-index:-1;
  opacity:.62;
  pointer-events:none;
}

.preloader{
  position:fixed;
  inset:0;
  z-index:9999;
  display:grid;
  place-items:center;
  background:#020605;
  transition:opacity .7s ease, visibility .7s ease;
}
.preloader.hide{opacity:0;visibility:hidden}
.portal-loader{
  width:200px;
  height:200px;
  border:1px solid rgba(212,175,55,.52);
  border-radius:50%;
  display:grid;
  place-items:center;
  position:relative;
  background:
    radial-gradient(circle, rgba(34,197,94,.20), transparent 54%),
    radial-gradient(circle at 50% 50%, rgba(212,175,55,.10), transparent 70%);
  box-shadow:
    0 0 80px rgba(34,197,94,.26),
    inset 0 0 46px rgba(212,175,55,.08);
}
.portal-loader::before,.portal-loader::after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}
.portal-loader::before{
  inset:13px;
  border:1px solid rgba(34,197,94,.58);
  border-left-color:transparent;
  border-right-color:transparent;
  box-shadow:0 0 24px rgba(34,197,94,.35);
  animation:spin 6s linear infinite;
}
.portal-loader::after{
  inset:34px;
  border:1px solid rgba(230,199,122,.56);
  border-top-color:transparent;
  border-bottom-color:transparent;
  animation:spin 9s linear infinite reverse;
}
.portal-loader img{
  width:112px;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 0 18px rgba(34,197,94,.46));
  animation:loaderLogo 2.8s ease-in-out infinite;
}

@keyframes spin{to{transform:rotate(360deg)}}
@keyframes pulseGlow{0%,100%{filter:drop-shadow(0 0 8px rgba(212,175,55,.65))}50%{filter:drop-shadow(0 0 22px rgba(212,175,55,.95))}}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-14px)}}
@keyframes loaderLogo{0%,100%{transform:scale(1);opacity:.92}50%{transform:scale(1.06);opacity:1}}50%{transform:scale(1.08);filter:drop-shadow(0 0 28px rgba(230,199,122,.95))}}
@keyframes shimmer{0%{transform:translateX(-120%)}100%{transform:translateX(120%)}}
@keyframes scrollPulse{0%,100%{transform:translateY(0) scale(1);opacity:.82}50%{transform:translateY(5px) scale(1.08);opacity:1}}
@keyframes scrollLine{0%,100%{height:12px;opacity:.35}50%{height:24px;opacity:.95}}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  min-height:80px;
  display:flex;
  align-items:center;
  border-bottom:1px solid rgba(212,175,55,.16);
  background:rgba(2,7,6,.86);
  backdrop-filter:blur(18px);
  box-shadow:0 10px 35px rgba(0,0,0,.18);
}
.nav-wrap{
  width:min(var(--max),calc(100% - 48px));
  margin:auto;
  display:grid;
  grid-template-columns:auto 1fr auto auto;
  align-items:center;
  gap:30px;
  padding:16px 0;
}
.brand{display:flex;align-items:center;gap:14px}
.brand img{width:116px;height:auto;filter:drop-shadow(0 0 12px rgba(34,197,94,.24));object-fit:contain}
.main-nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:21px;
}
.main-nav a{
  font-family:Cinzel,serif;
  font-size:13px;
  font-weight:700;
  letter-spacing:.15em;
  color:var(--gold2);
  opacity:.92;
  position:relative;
  transition:.28s ease;
}
.main-nav a:not(:last-child)::after{
  content:"◆";
  color:rgba(212,175,55,.36);
  font-size:7px;
  position:absolute;
  right:-15px;
  top:50%;
  transform:translateY(-50%);
}
.main-nav a:hover,.main-nav a.active{color:var(--mint2);text-shadow:0 0 18px rgba(34,197,94,.58)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:48px;
  padding:0 22px;
  border:1px solid var(--line);
  color:var(--gold2);
  border-radius:12px;
  letter-spacing:.17em;
  text-transform:uppercase;
  font-family:Cinzel,serif;
  font-weight:700;
  font-size:12px;
  background:rgba(2,7,6,.35);
  position:relative;
  overflow:hidden;
  transition:transform .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.12),transparent);
  transform:translateX(-120%);
}
.btn:hover::before{animation:shimmer .9s ease}
.btn:hover{
  transform:translateY(-2px);
  color:#fff4bf;
  border-color:rgba(230,199,122,.85);
  box-shadow:0 0 28px rgba(212,175,55,.18);
}
.btn.primary{
  color:#fff2b2;
  background:linear-gradient(135deg,rgba(20,119,63,.95),rgba(10,72,52,.94));
  border-color:rgba(230,199,122,.76);
  box-shadow:0 0 28px rgba(34,197,94,.26);
}
.btn .ankh{font-size:24px;line-height:1;color:var(--gold2)}
.menu-toggle{
  border:0;
  background:transparent;
  color:var(--gold2);
  display:none;
  width:44px;
  height:44px;
  cursor:pointer;
  position:relative;
}
.menu-toggle span{
  display:block;
  width:28px;
  height:2px;
  margin:6px auto;
  background:var(--gold2);
  box-shadow:0 0 14px rgba(212,175,55,.4);
  transition:.25s ease;
}

/* HERO */
.hero{
  position:relative;
  min-height:calc(100vh - 78px);
  overflow:hidden;
  display:flex;
  align-items:center;
  border-bottom:1px solid rgba(212,175,55,.28);
}
.hero-art{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero-art img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:saturate(1.04) contrast(1.02);
}
.hero-art::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(2,7,6,.95) 0%,rgba(2,7,6,.78) 28%,rgba(2,7,6,.28) 58%,rgba(2,7,6,.42) 100%),
    linear-gradient(180deg,rgba(2,7,6,.08),rgba(2,7,6,.42) 80%,rgba(2,7,6,.9));
}
.side-icons{
  position:absolute;
  top:23%;
  display:flex;
  flex-direction:column;
  gap:18px;
  z-index:1;
  opacity:.72;
  pointer-events:none;
}
.side-icons.left{left:max(18px,calc((100vw - var(--max))/2 - 88px))}
.side-icons.right{right:max(18px,calc((100vw - var(--max))/2 - 88px))}
.side-icons img{
  width:42px;height:42px;object-fit:contain;
  filter:drop-shadow(0 0 13px rgba(230,199,122,.62));
  animation:pulseGlow 4.5s ease-in-out infinite;
}
.side-icons img:nth-child(2){animation-delay:.5s}
.side-icons img:nth-child(3){animation-delay:1s}
.side-icons img:nth-child(4){animation-delay:1.5s}

.hero-content{
  position:relative;
  z-index:3;
  width:min(var(--max),calc(100% - 48px));
  margin:auto;
  padding:110px 0 92px;
  display:grid;
  grid-template-columns:minmax(320px,680px) 1fr;
  align-items:center;
  min-height:calc(100vh - 78px);
}
.kicker{
  font-family:Cinzel,serif;
  text-transform:uppercase;
  letter-spacing:.28em;
  color:var(--gold2);
  font-weight:700;
  font-size:12px;
  margin-bottom:22px;
}
.hero h1,.page-hero h1{
  font-family:Cormorant Garamond,Cinzel,serif;
  font-weight:500;
  line-height:.95;
  letter-spacing:.035em;
  margin:0;
  font-size:clamp(50px,7vw,112px);
  color:var(--cream);
  text-shadow:0 0 34px rgba(34,197,94,.19);
}
.hero h1 span{display:block;color:#bff4c9}
.ornament{
  width:260px;
  max-width:90%;
  height:20px;
  margin:25px 0 22px;
  display:flex;
  align-items:center;
  gap:9px;
  color:var(--gold2);
}
.ornament::before,.ornament::after{
  content:"";
  height:1px;
  flex:1;
  background:linear-gradient(90deg,transparent,var(--gold2),transparent);
  opacity:.85;
}
.hero p{
  max-width:640px;
  color:var(--cream);
  font-size:18px;
  line-height:1.72;
  margin:0 0 28px;
}
.hero-actions{display:flex;align-items:center;gap:24px;flex-wrap:wrap}
.link-arrow{
  color:var(--gold2);
  font-family:Cinzel,serif;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
  font-weight:700;
  transition:.26s ease;
}
.link-arrow:hover{color:var(--mint2);text-shadow:0 0 18px rgba(34,197,94,.5)}
.scroll-mark{
  position:absolute;
  left:50%;
  bottom:26px;
  z-index:3;
  transform:translateX(-50%);
  text-align:center;
  color:var(--gold2);
  font-family:Cinzel,serif;
  letter-spacing:.38em;
  font-size:10px;
  opacity:.8;
}
.scroll-mark .mouse{
  width:52px;
  height:52px;
  border:0;
  border-radius:0;
  margin:0 auto 10px;
  position:relative;
  box-shadow:none;
}
.scroll-mark .mouse::before{
  content:"☥";
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  color:var(--gold2);
  font-size:36px;
  line-height:1;
  filter:drop-shadow(0 0 12px rgba(230,199,122,.72));
  animation:scrollPulse 2.2s ease-in-out infinite;
}
.scroll-mark .mouse::after{
  content:"";
  position:absolute;
  left:50%;
  top:50px;
  width:1px;
  height:22px;
  background:linear-gradient(180deg,var(--gold2),transparent);
  transform:translateX(-50%);
  opacity:.72;
  animation:scrollLine 1.7s ease-in-out infinite;
}

/* SHARED */
.section{
  position:relative;
  padding:82px 0;
}
.container{
  width:min(var(--max),calc(100% - 48px));
  margin:auto;
}
.banded{
  border-top:1px solid rgba(212,175,55,.28);
  border-bottom:1px solid rgba(212,175,55,.28);
  background:linear-gradient(90deg,rgba(6,32,25,.96),rgba(3,20,16,.88));
  box-shadow:inset 0 0 80px rgba(34,197,94,.06);
}
.intro-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  align-items:stretch;
  gap:0;
}
.intro-profile{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:260px minmax(0,640px);
  align-items:center;
  justify-content:center;
  gap:42px;
  padding:0 0 42px;
  margin-bottom:8px;
  border-bottom:1px solid rgba(212,175,55,.24);
}
.portrait-orb{
  position:relative;
}
.portrait-orb img{
  width:230px;height:230px;
  object-fit:cover;
  border-radius:50%;
  filter:drop-shadow(0 0 28px rgba(212,175,55,.28));
}
.profile-copy h2,.section-title h2,.cta-copy h2{
  font-family:Cormorant Garamond,serif;
  font-size:clamp(34px,3.4vw,58px);
  line-height:1;
  font-weight:500;
  margin:0 0 15px;
}
.profile-copy p{font-size:15px;line-height:1.72;color:var(--muted);margin:0 0 16px}
.service-mini{
  min-height:240px;
  padding:30px 30px 26px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  border-left:1px solid rgba(212,175,55,.28);
}
.service-mini img{
  width:92px;
  height:92px;
  object-fit:contain;
  margin-bottom:14px;
  filter:drop-shadow(0 0 13px rgba(212,175,55,.33));
}
.service-mini h3{
  margin:0 0 13px;
  color:var(--gold2);
  font-family:Cinzel,serif;
  font-size:13px;
  letter-spacing:.16em;
}
.service-mini p{margin:0;color:var(--muted);font-size:14px;line-height:1.55}
.intro-grid .service-mini:first-of-type{border-left:0}

.section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  margin-bottom:34px;
}
.section-title .kicker{margin-bottom:12px}
.section-title h2{
  letter-spacing:.08em;
  text-transform:uppercase;
  font-family:Cinzel,serif;
  font-size:clamp(28px,3vw,48px);
}
.head-icon{display:none}
.cards-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.card{
  background:linear-gradient(180deg,rgba(4,28,21,.9),rgba(2,14,11,.95));
  border:1px solid rgba(212,175,55,.55);
  box-shadow:0 22px 60px rgba(0,0,0,.32);
  overflow:hidden;
  border-radius:6px;
  transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.card:hover{
  transform:translateY(-8px);
  border-color:rgba(230,199,122,.9);
  box-shadow:0 32px 90px rgba(0,0,0,.45),0 0 35px rgba(212,175,55,.12);
}
.card-img{overflow:hidden;aspect-ratio:1.86/1;background:#050806}
.card-img img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease}
.card:hover .card-img img{transform:scale(1.06)}
.card-body{padding:26px 28px 28px}
.card h3{
  font-family:Cormorant Garamond,serif;
  font-size:28px;
  line-height:1.1;
  color:var(--gold2);
  margin:0 0 16px;
}
.card p{font-size:17px;line-height:1.68;color:var(--cream);margin:0 0 22px}
.center-link{text-align:center;margin-top:34px}

.blog-cta-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:stretch;
}
.blog-panel{
  border:1px solid rgba(212,175,55,.45);
  border-radius:8px;
  padding:42px;
  background:linear-gradient(135deg,rgba(4,28,22,.92),rgba(2,11,9,.86));
}
.blog-item{
  display:grid;
  grid-template-columns:210px 1fr;
  gap:28px;
  padding:18px 0;
  border-bottom:1px solid rgba(212,175,55,.16);
}
.blog-item:last-of-type{border-bottom:0}
.blog-item img{height:118px;width:100%;object-fit:cover;border:1px solid rgba(212,175,55,.58);border-radius:6px}
.blog-item h3{font-family:Cormorant Garamond,serif;margin:0 0 4px;color:var(--gold2);font-size:27px;line-height:1.1}
.blog-item time{display:block;color:#87b987;margin-bottom:7px;font-size:13px}
.blog-item p{margin:0 0 9px;color:var(--muted);line-height:1.5}
.cta-card{
  min-height:100%;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(212,175,55,.45);
  border-radius:8px;
  background:#020706;
  display:grid;
  grid-template-columns:.95fr 1.1fr;
}
.cta-card img{height:100%;width:100%;object-fit:cover;filter:saturate(1.05)}
.cta-card::after{
  content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(2,7,6,.95) 0%,rgba(2,7,6,.65) 44%,rgba(2,7,6,.08) 100%);
}
.cta-copy{
  position:relative;
  z-index:2;
  padding:48px;
  align-self:center;
}
.cta-copy p{font-size:17px;line-height:1.65;color:var(--cream);max-width:360px}

/* PAGES */
.page-hero{
  position:relative;
  min-height:56vh;
  display:grid;
  place-items:center;
  text-align:center;
  overflow:hidden;
  border-bottom:1px solid rgba(212,175,55,.25);
}
.page-hero::before{
  content:"";position:absolute;inset:0;background:
    linear-gradient(180deg,rgba(2,7,6,.58),rgba(2,7,6,.92)),
    url('../img/banner-header.webp') center/cover no-repeat;
  filter:saturate(.9);
}
.page-hero.about::before{background-image:linear-gradient(180deg,rgba(2,7,6,.48),rgba(2,7,6,.9)),url('../img/banner-header.webp')}
.page-hero.teach::before{background-image:linear-gradient(180deg,rgba(2,7,6,.50),rgba(2,7,6,.92)),url('../img/banner-mesime.webp')}
.page-hero.blogh::before{background-image:linear-gradient(180deg,rgba(2,7,6,.50),rgba(2,7,6,.93)),url('../img/banner-blog.webp')}
.page-hero.contacth::before{background-image:linear-gradient(180deg,rgba(2,7,6,.50),rgba(2,7,6,.93)),url('../img/banner-kontakt.webp')}
.page-hero .inner{position:relative;z-index:2;width:min(920px,calc(100% - 48px));padding:120px 0 70px}
.page-hero p{max-width:720px;margin:24px auto 0;color:var(--muted);font-size:18px;line-height:1.7}

.text-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:54px;
  align-items:center;
}
.text-grid.reverse{grid-template-columns:1.2fr .8fr}
.text-block h2{
  font-family:Cormorant Garamond,serif;
  font-size:clamp(36px,4vw,62px);
  font-weight:500;
  line-height:1.02;
  margin:0 0 24px;
}
.text-block p{color:var(--muted);font-size:17px;line-height:1.85;margin:0 0 18px}
.media-frame{
  border:1px solid rgba(212,175,55,.52);
  border-radius:8px;
  overflow:hidden;
  box-shadow:var(--shadow),0 0 28px rgba(212,175,55,.08);
  background:#030a08;
}
.media-frame img{width:100%;height:100%;object-fit:cover}
.icon-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:26px;
}
.icon-pill{
  display:flex;
  gap:14px;
  align-items:center;
  padding:15px 16px;
  border:1px solid rgba(212,175,55,.26);
  background:rgba(4,28,22,.58);
}
.icon-pill img{width:40px;height:40px;object-fit:contain}
.icon-pill span{font-family:Cinzel,serif;letter-spacing:.1em;color:var(--gold2);font-size:12px;text-transform:uppercase}

.teaching-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.article-card{
  padding:0;
}
.article-card .card-img{aspect-ratio:1.68/1}
.article-card small{display:block;color:#85b989;margin-bottom:10px}

.single-layout{
  display:grid;
  grid-template-columns:minmax(0,70%) minmax(280px,30%);
  gap:44px;
  align-items:start;
}
.post-content{
  border:1px solid rgba(212,175,55,.35);
  padding:54px;
  border-radius:8px;
  background:linear-gradient(180deg,rgba(4,26,21,.8),rgba(2,12,10,.88));
}
.post-content h2{font-family:Cormorant Garamond,serif;font-size:38px;color:var(--gold2);margin:32px 0 16px}
.post-content p{color:var(--muted);font-size:19px;line-height:1.92}
.sidebar-card{
  padding:28px;
  border:1px solid rgba(212,175,55,.35);
  border-radius:8px;
  background:rgba(4,26,21,.75);
  position:sticky;
  top:110px;
}
.sidebar-card img{width:100px;margin:0 auto 18px}
.sidebar-card h3{font-family:Cormorant Garamond,serif;font-size:31px;margin:0 0 12px;color:var(--gold2)}

.contact-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:34px;
}
.contact-card,.form-card{
  border:1px solid rgba(212,175,55,.35);
  border-radius:8px;
  background:rgba(4,26,21,.75);
  padding:34px;
}
.contact-line{
  display:flex;gap:16px;align-items:flex-start;padding:18px 0;border-bottom:1px solid rgba(212,175,55,.16)
}
.contact-line:last-child{border-bottom:0}
.contact-line img{width:38px;height:38px;object-fit:contain}
.contact-line h3{margin:0 0 6px;color:var(--gold2);font-family:Cinzel,serif;font-size:14px;letter-spacing:.14em}
.contact-line p{margin:0;color:var(--muted);line-height:1.55}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.field{margin-bottom:16px}
.field.full{grid-column:1/-1}
label{display:block;font-family:Cinzel,serif;color:var(--gold2);font-size:12px;letter-spacing:.13em;margin-bottom:8px}
input,textarea,select{
  width:100%;
  background:rgba(2,7,6,.6);
  border:1px solid rgba(212,175,55,.35);
  color:var(--cream);
  padding:14px 15px;
  border-radius:6px;
  outline:none;
}
input:focus,textarea:focus,select:focus{border-color:var(--gold2);box-shadow:0 0 0 3px rgba(212,175,55,.09)}
textarea{min-height:150px;resize:vertical}

.form-card .wpcf7{margin:0}
.form-card .wpcf7-form p{margin:0}
.form-card .wpcf7-form .btn.primary,
.form-card .wpcf7-submit{
  width:auto;
  cursor:pointer;
  border:0;
  margin-top:6px;
}
.form-card .wpcf7-spinner{display:block;margin:14px 0 0}
.form-card .wpcf7-not-valid-tip{color:#f3b7a6;font-size:13px;margin-top:7px}
.form-card .wpcf7-response-output{
  margin:18px 0 0!important;
  padding:14px 16px!important;
  border:1px solid rgba(212,175,55,.35)!important;
  color:var(--cream);
  border-radius:6px;
  background:rgba(2,7,6,.45);
}
.form-helper-notice{
  color:var(--muted);
  border:1px solid rgba(212,175,55,.3);
  background:rgba(2,7,6,.35);
  border-radius:6px;
  padding:16px;
  margin-bottom:20px;
  line-height:1.6;
}
.spiritualisti-static-form{opacity:.72}


/* FOOTER */
.site-footer{
  position:relative;
  border-top:1px solid rgba(212,175,55,.34);
  background:linear-gradient(180deg,rgba(3,15,12,.94),#020605);
  overflow:hidden;
}
.footer-main{
  width:min(var(--max),calc(100% - 48px));
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr 1fr 1.25fr 1.35fr;
  gap:34px;
  padding:72px 0 52px;
  align-items:start;
}
.footer-logo img{width:168px;filter:drop-shadow(0 0 18px rgba(34,197,94,.25));object-fit:contain}
.footer-col{border-left:1px solid rgba(212,175,55,.28);padding-left:34px;min-height:150px}
.footer-col h3{font-family:Cinzel,serif;color:var(--gold2);letter-spacing:.15em;font-size:14px;margin:0 0 20px}
.footer-links{display:grid;grid-template-columns:1fr 1fr;gap:13px 32px}
.footer-links a,.footer-col p{color:var(--muted);font-size:15px;line-height:1.6}
.footer-links a:hover{color:var(--mint2)}
.screen-reader-text{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}
.socials{display:flex;gap:10px;margin-bottom:20px;flex-wrap:wrap}
.socials a{
  width:42px;height:42px;
  display:grid;place-items:center;
  border:1px solid rgba(212,175,55,.45);
  border-radius:50%;
  color:var(--gold2);
  background:rgba(212,175,55,.04);
  transition:.25s ease;
}
.socials a:hover{
  color:var(--cream);
  border-color:var(--gold2);
  background:rgba(212,175,55,.14);
  transform:translateY(-2px);
}
.socials svg{width:19px;height:19px;display:block;fill:currentColor}
.footer-subscribe{margin-top:15px}
.footer-subscribe .wpcf7{margin:0}
.footer-subscribe .wpcf7-form p{margin:0}
.footer-subscribe-row,.newsletter{display:flex;margin-top:15px;align-items:stretch}
.footer-subscribe-row .wpcf7-form-control-wrap{display:block;flex:1}
.footer-subscribe-row input,.newsletter input{height:52px;border-radius:0;border-right:0}
.footer-subscribe-btn,.newsletter button{
  width:54px;min-width:54px;
  border:1px solid rgba(212,175,55,.45);
  background:transparent;
  color:var(--gold2);
  font-size:26px;
  cursor:pointer;
  transition:.25s ease;
}
.footer-subscribe-btn:hover,.newsletter button:hover{background:rgba(212,175,55,.12);color:var(--cream)}
.footer-subscribe .wpcf7-spinner{display:block;margin:10px 0 0}
.footer-subscribe .wpcf7-not-valid-tip{color:#f3b7a6;font-size:12px;margin-top:7px}
.footer-subscribe .wpcf7-response-output{
  margin:12px 0 0!important;
  padding:10px 12px!important;
  border:1px solid rgba(212,175,55,.35)!important;
  color:var(--cream);
  border-radius:6px;
  background:rgba(2,7,6,.45);
  font-size:13px;
  line-height:1.45;
}
.footer-subscribe small{display:block;margin-top:10px;color:rgba(246,240,220,.55);line-height:1.45}
.reminder{
  position:relative;
  min-height:210px;
}
.reminder p{
  color:var(--gold2);
  font-style:italic;
  text-align:center;
}
.reminder img.goddess{
  position:absolute;
  right:0;
  bottom:0;
  width:220px;
  opacity:.13;
  filter:drop-shadow(0 0 16px rgba(212,175,55,.10));
  pointer-events:none;
}
.reminder img.eye{
  width:70px;margin:22px auto 0;opacity:.85
}
.footer-bottom{
  border-top:1px solid rgba(212,175,55,.28);
  width:min(var(--max),calc(100% - 48px));
  margin:auto;
  padding:24px 0 30px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:32px;
  color:rgba(246,240,220,.66);
  flex-wrap:wrap;
}
.footer-bottom a:hover{color:var(--gold2)}

.reveal{opacity:0;transform:translateY(28px)}
.floating{animation:float 6s ease-in-out infinite}

@media (max-width:1600px){
  .side-icons{display:none}
}
@media (max-width:1100px){
  .nav-wrap{grid-template-columns:auto 1fr auto;gap:18px}
  .menu-toggle{display:block;justify-self:end;margin-left:auto}
  .main-nav{
    position:fixed;
    top:80px;
    right:0;
    left:0;
    height:calc(100dvh - 80px);
    flex-direction:column;
    align-items:stretch;
    justify-content:center;
    gap:14px;
    padding:32px 22px;
    border:0;
    border-top:1px solid rgba(212,175,55,.24);
    background:
      radial-gradient(circle at 50% 0%, rgba(34,197,94,.18), transparent 42%),
      rgba(2,7,6,.995);
    backdrop-filter:blur(18px);
    transform:translateY(-10px);
    opacity:0;
    visibility:hidden;
    transition:.28s ease;
  }
  .main-nav.open{transform:translateY(0);opacity:1;visibility:visible}
  .main-nav a{
    min-height:58px;
    display:flex;
    align-items:center;
    gap:16px;
    padding:0 18px;
    border:1px solid rgba(212,175,55,.22);
    background:rgba(4,28,22,.52);
    border-radius:10px;
    font-size:13px;
  }
  .main-nav a::before{
    width:44px;height:44px;
    display:grid;place-items:center;
    border:1px solid rgba(212,175,55,.35);
    border-radius:50%;
    color:var(--gold2);
    font-size:22px;
    box-shadow:0 0 12px rgba(212,175,55,.10);
  }
  .main-nav a:nth-child(1)::before{content:"☥"}
  .main-nav a:nth-child(2)::before{content:"◉"}
  .main-nav a:nth-child(3)::before{content:"𓂀"}
  .main-nav a:nth-child(4)::before{content:"✦"}
  .main-nav a:nth-child(5)::before{content:"✉"}
  .main-nav a:not(:last-child)::after{display:none}
  .header-cta{display:none}
  .brand img{width:126px}
  .hero-content{grid-template-columns:1fr;align-items:end}
  .hero h1{font-size:clamp(48px,10vw,86px)}
  .intro-grid{grid-template-columns:1fr 1fr}
  .intro-profile{grid-template-columns:220px 1fr;grid-column:1/-1;border-bottom:1px solid rgba(212,175,55,.22);padding:0 0 32px}
  .service-mini:nth-child(2n){border-left:0}
  .cards-3,.teaching-grid{grid-template-columns:1fr 1fr}
  .blog-cta-grid,.text-grid,.text-grid.reverse,.contact-grid,.single-layout{grid-template-columns:1fr}
  .footer-main{grid-template-columns:1fr 1fr}
  .footer-col{border-left:0;padding-left:0;border-top:1px solid rgba(212,175,55,.16);padding-top:28px}
}
@media (max-width:720px){
  .nav-wrap,.container,.hero-content,.footer-main,.footer-bottom{width:min(100% - 28px,var(--max))}
  .site-header{min-height:70px}
  .nav-wrap{padding:12px 0;width:min(100% - 24px,var(--max));gap:18px}
  .main-nav{top:70px;height:calc(100dvh - 70px)}
  .brand img{width:94px}
  .menu-toggle{width:46px;height:46px}
  .hero{min-height:82vh}
  .hero-art img{object-position:center center}
  .hero-content{min-height:82vh;padding:90px 0 70px}
  .hero-art::after{background:linear-gradient(180deg,rgba(2,7,6,.42),rgba(2,7,6,.92)),linear-gradient(90deg,rgba(2,7,6,.76),rgba(2,7,6,.18))}
  .hero p{font-size:15px}
  .hero-actions{gap:14px}
  .btn{width:100%;min-height:52px}
  .link-arrow{font-size:11px}
  .side-icons{display:none}
  .scroll-mark{display:none}
  .section{padding:58px 0}
  .intro-profile{grid-template-columns:1fr;text-align:center;padding-right:0}
  .portrait-orb img{margin:auto;width:220px;height:220px}
  .intro-grid,.cards-3,.teaching-grid,.footer-main,.form-grid{grid-template-columns:1fr}
  .service-mini{border-left:0;border-top:1px solid rgba(212,175,55,.18);min-height:auto}
  .blog-panel,.post-content{padding:25px}
  .blog-item{grid-template-columns:1fr;gap:14px}
  .cta-card{grid-template-columns:1fr;min-height:560px}
  .cta-card img{position:absolute;inset:0;height:100%}
  .cta-copy{padding:34px}
  .page-hero .inner{padding:100px 0 56px}
  .footer-bottom{font-size:13px;gap:16px;text-align:center}
}

.single-layout .btn{width:100%;margin-top:14px}
@media (min-width:1101px){
  .single-layout{max-width:1180px;margin:auto}
}


/* Blog archive polished layout */
.blog-archive{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:30px;
  align-items:stretch;
}
.blog-feature{
  min-height:560px;
  position:relative;
  border:1px solid rgba(212,175,55,.48);
  border-radius:10px;
  overflow:hidden;
  background:#030a08;
  box-shadow:0 30px 90px rgba(0,0,0,.38);
}
.blog-feature img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .75s ease;
}
.blog-feature:hover img{transform:scale(1.055)}
.blog-feature::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(2,7,6,.08),rgba(2,7,6,.82) 70%,rgba(2,7,6,.96)),
    radial-gradient(circle at 50% 42%,rgba(34,197,94,.12),transparent 42%);
}
.blog-feature-content{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:42px;
}
.blog-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--gold2);
  font-family:Cinzel,serif;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:11px;
  margin-bottom:15px;
}
.blog-feature h2{
  margin:0 0 16px;
  font-family:Cormorant Garamond,serif;
  font-size:clamp(38px,4vw,62px);
  line-height:1;
  font-weight:500;
}
.blog-feature p{max-width:560px;color:var(--cream);line-height:1.75;font-size:18px}
.blog-list-polished{
  display:grid;
  gap:18px;
}
.blog-list-card{
  display:grid;
  grid-template-columns:170px 1fr;
  gap:20px;
  border:1px solid rgba(212,175,55,.32);
  border-radius:10px;
  padding:16px;
  background:linear-gradient(135deg,rgba(5,32,24,.82),rgba(2,12,10,.92));
  transition:transform .3s ease,border-color .3s ease,box-shadow .3s ease;
}
.blog-list-card:hover{
  transform:translateY(-4px);
  border-color:rgba(230,199,122,.72);
  box-shadow:0 24px 70px rgba(0,0,0,.32);
}
.blog-list-card img{
  width:100%;
  height:135px;
  object-fit:cover;
  border-radius:7px;
  border:1px solid rgba(212,175,55,.38);
}
.blog-list-card h3{
  margin:0 0 8px;
  font-family:Cormorant Garamond,serif;
  font-size:28px;
  line-height:1.08;
  color:var(--gold2);
}
.blog-list-card time{display:block;color:#8fc69c;font-size:13px;margin-bottom:8px}
.blog-list-card p{margin:0 0 10px;color:var(--muted);line-height:1.55}

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

@media(max-width:1100px){
  .blog-archive{grid-template-columns:1fr}
  .blog-feature{min-height:460px}
  .blog-bottom-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:720px){
  .blog-feature{min-height:520px}
  .blog-feature-content{padding:28px}
  .blog-list-card{grid-template-columns:1fr}
  .blog-list-card img{height:190px}
  .blog-bottom-grid{grid-template-columns:1fr}
}

@media(max-width:1100px){
  .main-nav.open a{
    box-shadow:0 12px 38px rgba(0,0,0,.22);
  }
  .main-nav.open a:hover{
    background:rgba(8,46,34,.75);
  }
}


/* Floating WhatsApp CTA */
.floating-whatsapp{
  position:fixed;
  right:50px;
  bottom:50px;
  z-index:1200;
  width:62px;
  height:62px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#0f3b2d,#0b241c);
  border:1px solid rgba(230,199,122,.72);
  box-shadow:0 18px 50px rgba(0,0,0,.42),0 0 28px rgba(34,197,94,.22);
  color:var(--gold2);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.floating-whatsapp:hover{
  transform:translateY(-5px) scale(1.04);
  border-color:rgba(230,199,122,.95);
  box-shadow:0 22px 70px rgba(0,0,0,.5),0 0 36px rgba(212,175,55,.22);
}
.floating-whatsapp svg{
  width:31px;
  height:31px;
  fill:currentColor;
  filter:drop-shadow(0 0 10px rgba(230,199,122,.36));
}
@media(max-width:720px){
  .floating-whatsapp{
    right:20px;
    bottom:22px;
    width:56px;
    height:56px;
  }
  .floating-whatsapp svg{width:28px;height:28px}
}


@media (max-width: 720px) {
  .main-nav {
    top: 85px;
    height: calc(100dvh - 70px);
  }
}

.reminder{overflow:hidden}


/* WordPress dynamic content polish */
.post-content .wp-block-image,
.post-content figure{margin:28px 0}
.post-content img{border-radius:8px;border:1px solid rgba(212,175,55,.25)}
.post-content ul,.post-content ol{color:var(--muted);font-size:19px;line-height:1.9;padding-left:26px}
.post-content li{margin:8px 0}
.post-content a{text-decoration:underline;text-decoration-color:rgba(212,175,55,.55);text-underline-offset:4px;color:var(--gold2)}
.wp-pagination{display:flex;gap:12px;justify-content:center;align-items:center;margin:42px 0 0;flex-wrap:wrap}
.wp-pagination .page-numbers{border:1px solid rgba(212,175,55,.36);border-radius:999px;padding:10px 15px;color:var(--muted);background:rgba(4,26,21,.72)}
.wp-pagination .page-numbers.current,.wp-pagination .page-numbers:hover{color:var(--gold2);border-color:rgba(230,199,122,.74)}
.empty-state{padding:38px;border:1px solid rgba(212,175,55,.32);border-radius:10px;background:rgba(4,26,21,.72);text-align:center;color:var(--muted)}
.card-img img{width:100%;height:100%;object-fit:cover}
.blog-feature .fallback-img,.blog-list-card .fallback-img{background:linear-gradient(135deg,rgba(34,197,94,.14),rgba(212,175,55,.1));}
.admin-bar .site-header{top:32px}
@media(max-width:782px){.admin-bar .site-header{top:46px}}

/* CF7 FORM DESIGN RESTORE - keeps Contact Form 7 visually identical to the original HTML forms */
.form-card .wpcf7,
.form-card .wpcf7-form,
.footer-subscribe .wpcf7,
.footer-subscribe .wpcf7-form{
  margin:0;
  padding:0;
}
.form-card .wpcf7-form p,
.footer-subscribe .wpcf7-form p{
  margin:0;
  padding:0;
}
.form-card .wpcf7-form .form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.form-card .wpcf7-form .field{
  margin-bottom:16px;
  min-width:0;
}
.form-card .wpcf7-form .field.full{
  grid-column:1/-1;
}
.form-card .wpcf7-form label{
  display:block;
  font-family:Cinzel,serif;
  color:var(--gold2);
  font-size:12px;
  letter-spacing:.13em;
  margin-bottom:8px;
  text-transform:none;
}
.form-card .wpcf7-form-control-wrap{
  display:block;
  width:100%;
}
.form-card .wpcf7 input:not([type="submit"]),
.form-card .wpcf7 textarea,
.form-card .wpcf7 select{
  width:100%;
  min-height:52px;
  background:rgba(2,7,6,.6);
  border:1px solid rgba(212,175,55,.35);
  color:var(--cream);
  padding:14px 15px;
  border-radius:6px;
  outline:none;
  font:inherit;
  line-height:1.35;
  box-shadow:none;
}
.form-card .wpcf7 textarea{
  min-height:150px;
  resize:vertical;
}
.form-card .wpcf7 input:not([type="submit"]):focus,
.form-card .wpcf7 textarea:focus,
.form-card .wpcf7 select:focus{
  border-color:var(--gold2);
  box-shadow:0 0 0 3px rgba(212,175,55,.09);
}
.form-card input.wpcf7-submit.btn.primary{
  width:auto;
  min-height:48px;
  padding:0 22px;
  border:1px solid rgba(230,199,122,.76);
  border-radius:12px;
  color:#fff2b2;
  background:linear-gradient(135deg,rgba(20,119,63,.95),rgba(10,72,52,.94));
  box-shadow:0 0 28px rgba(34,197,94,.26);
  letter-spacing:.17em;
  text-transform:uppercase;
  font-family:Cinzel,serif;
  font-weight:700;
  font-size:12px;
  cursor:pointer;
  transition:transform .3s ease,color .3s ease,border-color .3s ease,box-shadow .3s ease;
}
.form-card input.wpcf7-submit.btn.primary:hover{
  transform:translateY(-2px);
  color:#fff4bf;
  border-color:rgba(230,199,122,.85);
  box-shadow:0 0 28px rgba(212,175,55,.18);
}
.form-card .wpcf7-spinner{
  margin:12px 0 0 12px;
}
.form-card .wpcf7-not-valid-tip{
  color:#f3b7a6;
  font-size:13px;
  margin-top:7px;
}
.form-card .wpcf7-response-output{
  margin:18px 0 0!important;
  padding:14px 16px!important;
  border:1px solid rgba(212,175,55,.35)!important;
  color:var(--cream);
  border-radius:6px;
  background:rgba(2,7,6,.45);
}
.footer-subscribe .newsletter.footer-subscribe-row{
  display:flex;
  margin-top:15px;
  align-items:stretch;
  width:100%;
}
.footer-subscribe .newsletter.footer-subscribe-row .wpcf7-form-control-wrap{
  display:block;
  flex:1 1 auto;
  min-width:0;
}
.footer-subscribe .newsletter.footer-subscribe-row input[type="email"]{
  height:52px;
  width:100%;
  background:rgba(2,7,6,.6);
  border:1px solid rgba(212,175,55,.35);
  border-right:0;
  color:var(--cream);
  padding:14px 15px;
  border-radius:0;
  outline:none;
  font:inherit;
  box-shadow:none;
}
.footer-subscribe .newsletter.footer-subscribe-row input[type="email"]:focus{
  border-color:var(--gold2);
  box-shadow:0 0 0 3px rgba(212,175,55,.09);
}
.footer-subscribe .footer-subscribe-btn{
  width:54px;
  min-width:54px;
  height:52px;
  border:1px solid rgba(212,175,55,.45);
  background:transparent;
  color:var(--gold2);
  font-size:26px;
  line-height:1;
  cursor:pointer;
  border-radius:0;
  transition:.25s ease;
}
.footer-subscribe .footer-subscribe-btn:hover{
  background:rgba(212,175,55,.12);
  color:var(--cream);
}
.footer-subscribe input[type="hidden"]{
  display:none!important;
}
.footer-subscribe .wpcf7-spinner{
  display:block;
  margin:10px 0 0;
}
.footer-subscribe .wpcf7-not-valid-tip{
  color:#f3b7a6;
  font-size:12px;
  margin-top:7px;
}
.footer-subscribe .wpcf7-response-output{
  margin:12px 0 0!important;
  padding:10px 12px!important;
  border:1px solid rgba(212,175,55,.35)!important;
  color:var(--cream);
  border-radius:6px;
  background:rgba(2,7,6,.45);
  font-size:13px;
  line-height:1.45;
}
@media (max-width: 860px){
  .form-card .wpcf7-form .form-grid{grid-template-columns:1fr}
}


/* Footer CF7 newsletter exact design restore */
.site-footer .footer-subscribe{
  margin-top:15px;
  width:100%;
}
.site-footer .footer-subscribe .wpcf7,
.site-footer .footer-subscribe .wpcf7 form,
.site-footer .footer-subscribe .wpcf7-form{
  margin:0!important;
  padding:0!important;
  width:100%;
}
.site-footer .footer-subscribe .wpcf7 p,
.site-footer .footer-subscribe .wpcf7-form p{
  margin:0!important;
  padding:0!important;
}
.site-footer .footer-subscribe .newsletter,
.site-footer .footer-subscribe .footer-subscribe-row,
.site-footer .footer-subscribe .cf7-newsletter-row{
  display:flex!important;
  flex-direction:row!important;
  align-items:stretch!important;
  justify-content:flex-start!important;
  gap:0!important;
  width:100%!important;
  max-width:100%!important;
  margin:15px 0 0!important;
  padding:0!important;
  position:relative;
}
.site-footer .footer-subscribe .cf7-newsletter-row .wpcf7-form-control-wrap{
  display:block!important;
  flex:1 1 auto!important;
  min-width:0!important;
  width:auto!important;
  margin:0!important;
  padding:0!important;
}
.site-footer .footer-subscribe .cf7-newsletter-row input[type="email"],
.site-footer .footer-subscribe form.newsletter input[type="email"]{
  display:block!important;
  width:100%!important;
  height:52px!important;
  min-height:52px!important;
  margin:0!important;
  padding:14px 15px!important;
  background:rgba(2,7,6,.6)!important;
  border:1px solid rgba(212,175,55,.35)!important;
  border-right:0!important;
  border-radius:0!important;
  color:var(--cream)!important;
  font:inherit!important;
  line-height:1.35!important;
  outline:none!important;
  box-shadow:none!important;
  -webkit-appearance:none;
  appearance:none;
}
.site-footer .footer-subscribe .cf7-newsletter-row input[type="email"]::placeholder,
.site-footer .footer-subscribe form.newsletter input[type="email"]::placeholder{
  color:rgba(246,240,220,.58)!important;
  opacity:1!important;
}
.site-footer .footer-subscribe .cf7-newsletter-row input[type="email"]:focus,
.site-footer .footer-subscribe form.newsletter input[type="email"]:focus{
  border-color:var(--gold2)!important;
  box-shadow:0 0 0 3px rgba(212,175,55,.09)!important;
}
.site-footer .footer-subscribe .cf7-newsletter-row input[type="submit"].footer-subscribe-btn,
.site-footer .footer-subscribe .cf7-newsletter-row .footer-subscribe-btn,
.site-footer .footer-subscribe form.newsletter button{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:54px!important;
  min-width:54px!important;
  max-width:54px!important;
  height:52px!important;
  min-height:52px!important;
  margin:0!important;
  padding:0!important;
  border:1px solid rgba(212,175,55,.45)!important;
  border-radius:0!important;
  background:transparent!important;
  color:var(--gold2)!important;
  font-family:Arial, sans-serif!important;
  font-size:26px!important;
  font-weight:400!important;
  line-height:1!important;
  letter-spacing:0!important;
  text-transform:none!important;
  text-align:center!important;
  cursor:pointer!important;
  box-shadow:none!important;
  -webkit-appearance:none;
  appearance:none;
  transition:.25s ease;
}
.site-footer .footer-subscribe .cf7-newsletter-row input[type="submit"].footer-subscribe-btn:hover,
.site-footer .footer-subscribe .cf7-newsletter-row .footer-subscribe-btn:hover,
.site-footer .footer-subscribe form.newsletter button:hover{
  background:rgba(212,175,55,.12)!important;
  color:var(--cream)!important;
}
.site-footer .footer-subscribe .cf7-newsletter-row .wpcf7-spinner{
  position:absolute!important;
  right:0!important;
  top:calc(100% + 8px)!important;
  margin:0!important;
}
.site-footer .footer-subscribe .wpcf7-not-valid-tip{
  display:block!important;
  margin-top:7px!important;
  color:#f3b7a6!important;
  font-size:12px!important;
  line-height:1.35!important;
}
.site-footer .footer-subscribe .wpcf7-response-output{
  clear:both!important;
  margin:12px 0 0!important;
  padding:10px 12px!important;
  border:1px solid rgba(212,175,55,.35)!important;
  border-radius:6px!important;
  background:rgba(2,7,6,.45)!important;
  color:var(--cream)!important;
  font-size:13px!important;
  line-height:1.45!important;
}


/* CF7 FOOTER NEWSLETTER - single unified field/button + hover icon motion */
.site-footer .footer-subscribe .cf7-newsletter-row,
.site-footer .footer-subscribe form.newsletter.spiritualisti-static-form{
  display:flex!important;
  flex-direction:row!important;
  align-items:stretch!important;
  gap:0!important;
  width:100%!important;
  max-width:100%!important;
  height:54px!important;
  min-height:54px!important;
  margin:15px 0 0!important;
  padding:0!important;
  position:relative!important;
  overflow:visible!important;
  background:rgba(2,7,6,.6)!important;
  border:1px solid rgba(212,175,55,.38)!important;
  border-radius:0!important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.025)!important;
}
.site-footer .footer-subscribe .cf7-newsletter-row > p{
  display:flex!important;
  flex-direction:row!important;
  align-items:stretch!important;
  gap:0!important;
  width:100%!important;
  height:100%!important;
  margin:0!important;
  padding:0!important;
}
.site-footer .footer-subscribe .cf7-newsletter-row br{
  display:none!important;
}
.site-footer .footer-subscribe .cf7-newsletter-row .wpcf7-form-control-wrap{
  display:block!important;
  flex:1 1 auto!important;
  min-width:0!important;
  width:auto!important;
  height:100%!important;
  margin:0!important;
  padding:0!important;
  position:relative!important;
}
.site-footer .footer-subscribe .cf7-newsletter-row input[type="email"],
.site-footer .footer-subscribe form.newsletter.spiritualisti-static-form input[type="email"]{
  display:block!important;
  width:100%!important;
  height:100%!important;
  min-height:0!important;
  margin:0!important;
  padding:0 15px!important;
  background:transparent!important;
  border:0!important;
  border-radius:0!important;
  color:var(--cream)!important;
  font:inherit!important;
  line-height:54px!important;
  outline:none!important;
  box-shadow:none!important;
  -webkit-appearance:none!important;
  appearance:none!important;
}
.site-footer .footer-subscribe .cf7-newsletter-row input[type="email"]::placeholder,
.site-footer .footer-subscribe form.newsletter.spiritualisti-static-form input[type="email"]::placeholder{
  color:rgba(246,240,220,.6)!important;
  opacity:1!important;
}
.site-footer .footer-subscribe .cf7-newsletter-row:focus-within,
.site-footer .footer-subscribe form.newsletter.spiritualisti-static-form:focus-within{
  border-color:var(--gold2)!important;
  box-shadow:0 0 0 3px rgba(212,175,55,.09), inset 0 0 0 1px rgba(255,255,255,.025)!important;
}
.site-footer .footer-subscribe .cf7-newsletter-row input[type="submit"].footer-subscribe-btn,
.site-footer .footer-subscribe .cf7-newsletter-row .footer-subscribe-btn,
.site-footer .footer-subscribe form.newsletter.spiritualisti-static-form button{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:58px!important;
  min-width:58px!important;
  max-width:58px!important;
  height:100%!important;
  min-height:0!important;
  margin:0!important;
  padding:0!important;
  background:transparent!important;
  border:0!important;
  border-left:1px solid rgba(212,175,55,.22)!important;
  border-radius:0!important;
  color:var(--gold2)!important;
  font-family:Arial, sans-serif!important;
  font-size:26px!important;
  font-weight:400!important;
  line-height:1!important;
  letter-spacing:0!important;
  text-transform:none!important;
  text-align:center!important;
  cursor:pointer!important;
  box-shadow:none!important;
  -webkit-appearance:none!important;
  appearance:none!important;
  transition:transform .28s ease, color .28s ease, background .28s ease, border-color .28s ease!important;
}
.site-footer .footer-subscribe .cf7-newsletter-row input[type="submit"].footer-subscribe-btn:hover,
.site-footer .footer-subscribe .cf7-newsletter-row .footer-subscribe-btn:hover,
.site-footer .footer-subscribe form.newsletter.spiritualisti-static-form button:hover{
  transform:translateX(3px) scale(1.04)!important;
  background:rgba(212,175,55,.1)!important;
  color:var(--cream)!important;
  border-left-color:rgba(230,199,122,.45)!important;
}
.site-footer .footer-subscribe .cf7-newsletter-row .wpcf7-spinner{
  position:absolute!important;
  right:0!important;
  top:calc(100% + 8px)!important;
  margin:0!important;
}
.site-footer .footer-subscribe .cf7-newsletter-row .wpcf7-not-valid-tip{
  position:absolute!important;
  left:0!important;
  top:calc(100% + 7px)!important;
  margin:0!important;
  white-space:nowrap!important;
}

/* Subtle icon movement on hover for all CTA/button icons */
.btn .ankh,
.btn svg,
.socials a svg,
.floating-whatsapp svg,
.newsletter button,
.footer-subscribe-btn{
  transition:transform .28s ease, filter .28s ease!important;
  transform-origin:center!important;
}
.btn:hover .ankh,
.btn:hover svg{
  transform:translateX(4px) rotate(7deg) scale(1.08)!important;
  filter:drop-shadow(0 0 8px rgba(230,199,122,.42));
}
.socials a:hover svg{
  transform:translateY(-1px) scale(1.1) rotate(-4deg)!important;
}
.floating-whatsapp:hover svg{
  transform:scale(1.1) rotate(-7deg)!important;
}
.newsletter button:hover,
.footer-subscribe-btn:hover{
  transform:translateX(3px) scale(1.04)!important;
}

/* Paid lessons / digital product sales pages */
.paid-lesson-hero .lesson-hero-meta{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}
.paid-lesson-hero .lesson-hero-meta span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 14px;
  border:1px solid rgba(212,175,55,.35);
  background:rgba(2,7,6,.44);
  color:var(--gold2);
  font-family:Cinzel,serif;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.lesson-sales-layout{
  grid-template-columns:minmax(0,66%) minmax(310px,34%);
}
.lesson-sales-content .lesson-media{
  margin-bottom:34px;
}
.lesson-sales-intro{
  padding-bottom:18px;
  border-bottom:1px solid rgba(212,175,55,.18);
  margin-bottom:26px;
}
.lesson-sales-intro small,
.lesson-buy-card small{
  display:block;
  color:#85b989;
  font-family:Cinzel,serif;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:12px;
  margin-bottom:10px;
}
.lesson-sales-intro h2{
  margin-top:0;
}
.lesson-feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin:26px 0 32px;
}
.lesson-feature-card{
  border:1px solid rgba(212,175,55,.23);
  background:rgba(2,7,6,.34);
  padding:20px 18px;
  border-radius:8px;
}
.lesson-feature-card span{
  display:inline-flex;
  margin-bottom:12px;
  color:var(--gold2);
  font-family:Cinzel,serif;
  font-size:12px;
  letter-spacing:.18em;
}
.lesson-feature-card h3{
  margin:0 0 8px;
  font-family:Cormorant Garamond,serif;
  color:var(--gold2);
  font-size:24px;
}
.lesson-feature-card p{
  margin:0;
  font-size:15px;
  line-height:1.65;
}
.lesson-content-body{
  margin-top:8px;
}
.lesson-buy-card{
  background:linear-gradient(180deg,rgba(5,32,25,.93),rgba(2,12,10,.94));
  box-shadow:0 30px 80px rgba(0,0,0,.25), inset 0 0 0 1px rgba(255,255,255,.03);
}
.lesson-buy-card h3{
  font-size:44px;
  line-height:1;
  margin-bottom:16px;
}
.lesson-buy-card p{
  color:var(--muted);
  line-height:1.7;
}
.lesson-includes{
  list-style:none;
  padding:0;
  margin:22px 0 18px;
  display:grid;
  gap:10px;
}
.lesson-includes li{
  position:relative;
  padding-left:25px;
  color:var(--cream);
  line-height:1.55;
}
.lesson-includes li::before{
  content:"☥";
  position:absolute;
  left:0;
  top:0;
  color:var(--gold2);
}
.lesson-buy-btn{
  margin-top:10px!important;
}
.lesson-access-note,
.lesson-payment-note{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid rgba(212,175,55,.16);
  color:rgba(246,240,220,.72);
  font-size:13px;
  line-height:1.55;
}
.lesson-payment-note{
  color:rgba(133,185,137,.9);
}
.lesson-card-img{
  position:relative;
  overflow:hidden;
}
.lesson-price-badge{
  position:absolute;
  right:14px;
  bottom:14px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 13px;
  border:1px solid rgba(230,199,122,.65);
  background:rgba(2,7,6,.78);
  color:#fff2b2;
  font-family:Cinzel,serif;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  backdrop-filter:blur(6px);
}
.lesson-card-actions{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  margin-top:14px;
}
.lesson-card-buy{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:0 14px;
  border:1px solid rgba(212,175,55,.38);
  border-radius:999px;
  color:var(--gold2);
  background:rgba(2,7,6,.35);
  font-family:Cinzel,serif;
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  transition:.25s ease;
}
.lesson-card-buy:hover{
  transform:translateY(-2px);
  color:#fff4bf;
  border-color:rgba(230,199,122,.85);
  box-shadow:0 0 18px rgba(212,175,55,.18);
}
@media (max-width:1600px){
  .side-icons{display:none}
}
@media (max-width:1100px){
  .lesson-sales-layout{grid-template-columns:1fr;}
  .lesson-feature-grid{grid-template-columns:1fr;}
  .lesson-buy-card{position:relative;top:auto;}
}
@media (max-width:720px){
  .lesson-card-actions{align-items:flex-start;flex-direction:column;}
  .lesson-card-buy{width:100%;}
  .paid-lesson-hero .lesson-hero-meta{justify-content:flex-start;}
}

/* WooCommerce product fallback page. Lesson products redirect to /mesime/, but this keeps any public product page on-brand. */
.spiritualisti-product-page .price,
.spiritualisti-product-page .woocommerce-Price-amount{
  color:var(--gold2);
  font-family:Cinzel,serif;
}
.spiritualisti-product-page .lesson-content-body .woocommerce,
.spiritualisti-product-page .lesson-content-body form.cart{
  display:none!important;
}
.spiritualisti-product-page .lesson-buy-card .lesson-includes li{
  word-break:break-word;
}
